"use client"; import React, { useState } from "react"; import IndustryWorldMap from "./IndustryWorldMap"; type Tab = "ch" | "so"; interface Section { id: number; title: string; image: string; alt: string; desc: string; ch: string[]; so: string[]; } const SECTIONS: Section[] = [ { id: 1, title: "FMCG", image: "/images/tab-pic-1-solution.webp", alt: "FMCG logistics", desc: "FMCG logistics demands speed, precision, and continuous fulfillment across high-volume delivery networks. Businesses must balance tight delivery timelines, inventory movement, and operational efficiency without compromising product availability.", ch: [ "Unpredictable demand spikes create delivery pressure and reduce operational efficiency during peak periods.", "Fresh product expiry constraints require faster, precisely timed deliveries to maintain product quality.", "Multi-stop route complexity increases travel time, operational costs, and delivery coordination challenges.", "Inventory stockout risks increase when delivery delays disrupt fast-moving product distribution.", ], so: [ "AI demand forecasting adapts delivery plans instantly to real-time order demand.", "Expiry-aware routing prioritises perishable goods for on-time freshness.", "Smart multi-stop optimisation groups orders to cut cost and travel time.", "Real-time inventory sync prevents stockouts and improves fulfilment accuracy.", ], }, { id: 2, title: "Pharma", image: "/images/tab-pic-2-solution.webp", alt: "Pharma logistics", desc: "Pharma logistics requires precision, compliance, and real-time monitoring so every shipment arrives safely and on time — from temperature-sensitive medicines to urgent emergency deliveries.", ch: [ "Cold chain integrity demands precise temperature control throughout transit.", "Regulatory compliance must be tracked and documented on every delivery.", "Critical delivery time windows require highly accurate scheduling.", "Emergency shipments need instant dispatch and zero-delay execution.", ], so: [ "Cold chain monitoring with automatic re-routing keeps shipments in-spec.", "Compliance engine with audit trails ensures full chain-of-custody visibility.", "Precision scheduling locks in critical delivery windows reliably.", "Priority dispatch queue fast-tracks urgent, life-critical shipments.", ], }, { id: 3, title: "Enterprise & B2B", image: "/images/tab-pic-3-solution.webp", alt: "Enterprise and B2B logistics", desc: "Enterprise and B2B logistics require coordination and reliability to manage high-value shipments at scale — with appointment scheduling, white-glove standards, and strict SLA commitments.", ch: [ "Appointment scheduling requires precise timing across many locations.", "White-glove delivery standards demand premium handling and accuracy.", "Multi-location routing complexity grows with large-scale operations.", "Strict SLA commitments pressure teams to stay timely and error-free.", ], so: [ "Intelligent appointment engine streamlines and automates delivery slots.", "White-glove workflow module enforces premium handling end to end.", "Enterprise route planner coordinates efficient multi-location delivery.", "SLA monitoring dashboard tracks commitments and flags risk in real time.", ], }, ]; function Card({ sec }: { sec: Section }) { const [tab, setTab] = useState("ch"); const bullets = tab === "ch" ? sec.ch : sec.so; return (
{/* Image panel */}
{/* eslint-disable-next-line @next/next/no-img-element */} {sec.alt}
{/* Content panel */}

{sec.title}

{sec.desc}

    {bullets.map((b, i) => (
  • {b}
  • ))}
); } export default function IndustryStack() { return ( <>