import React from "react"; import Image from "next/image"; import { ScrollReveal } from "../../animations/Reveal"; type Stat = { value: string; label: string; }; type Stage = { img: string; label: string; title: string; subtitle?: string; desc: string; points: string[]; stats?: Stat[]; }; const STAGES: Stage[] = [ { img: "/images/first-mile-approach.webp", label: "Stage 01", title: "First Mile Warehouse", subtitle: "Consolidation & Prep", desc: "Incoming shipments are securely loaded, checked, and queued for transfer in our high-capacity fulfillment centers.", points: ["AI-scheduled pickups", "Dynamic load consolidation", "Yard & dock management"], stats: [ { value: "14,250", label: "Parcels Processed" }, { value: "99.98%", label: "Sorting Accuracy" } ] }, { img: "/images/mid-mile-approach.webp", label: "Stage 02", title: "Mid Mile Transit", subtitle: "Hub-to-Hub Transport", desc: "Freight is routed dynamically through our network of strategically located hubs using automated sortation and linehaul scheduling.", points: ["Optimised line-haul routing", "Cross-docking & sortation", "Live SLA monitoring"], stats: [ { value: "1,240+", label: "Daily Line-Hauls" }, { value: "98.5%", label: "SLA Adherence" } ] }, { img: "/images/last-mile-approach.webp", label: "Stage 03", title: "Last Mile Delivery", subtitle: "Hub to Doorstep", desc: "The final handoff. Our routing engine optimizes multi-stop itineraries to deliver parcels directly to customers' doorsteps in record time.", points: ["Multi-stop route optimisation", "Precise delivery windows", "Digital proof of delivery"], stats: [ { value: "450K+", label: "Happy Deliveries" }, { value: "2.8 Hours", label: "Average Turnaround" } ] }, ]; export default function WhyChooseDoormile() { return ( <>