import { SEO } from "../lib/seo";
import Container from "../components/Container";
import ImageSlot from "../components/ImageSlot";
import Reveal from "../components/Reveal";
import SectionTitle from "../components/SectionTitle";
import Button from "../components/Button";
import {
FactoryIcon,
LeafIcon,
ShieldIcon,
TruckIcon,
} from "../components/Icons";
import { agriProjects, services, valueChain, waLink } from "../data/site";
function ServiceCard({ title, desc, IconCmp, ...rest }) {
return (
{desc}
);
}
const serviceIconMap = { FactoryIcon, TruckIcon, ShieldIcon, LeafIcon };
const valueChainIconMap = { FactoryIcon, TruckIcon, LeafIcon };
function ServicesSection({ items }) {
return (
{items.map((it, idx) => {
const Icon = serviceIconMap[it.icon] || TruckIcon;
return (
);
})}
);
}
function StepCard({ name, desc, IconCmp, showArrow }) {
return (
{name}
{desc}
{showArrow && (
)}
);
}
function ValueChainSection({ steps }) {
return (
{steps.map((st, idx) => {
const Icon = valueChainIconMap[st.icon] || TruckIcon;
return (
);
})}
);
}
function ProjectCard({ name, meta, tag, img, ...rest }) {
return (
{tag}
);
}
function ProjectsSection({ items }) {
return (
{items.map((p, idx) => (
))}
);
}
export default function Agribusiness() {
const filtered = services.filter((s) => s.title !== "Struktur JV/SPV");
return (
{/* ── Hero ──────────────────────────────────────────────────── */}
Agribisnis Perikanan
Hatchery, grow-out, pengolahan, cold chain, dan traceability.
{/* ── Hero Image ────────────────────────────────────────────── */}
{/* ── CTA ───────────────────────────────────────────────────── */}
Butuh detail teknis & penawaran proyek?
Kami siap menyusun rencana kerja dan baseline schedule.
);
}