import { ScrollReveal, StaggerChildren } from "@/animations/Reveal"; import styles from "./WingsInfrastructure.module.css"; const CARDS = [ { title: "Airport Cargo Hubs", desc: "Near-airport clearance hubs instead of standalone warehouses — closer to the tarmac, faster to the aircraft.", icon: ( ), }, { title: "Cross-Docking", desc: "Screening, grouping, and consolidation happen in one motion, minimizing dwell time between arrival and departure.", icon: ( ), }, { title: "Asset-Light Network", desc: "Leased terminal space that flexes with demand, keeping the network nimble as new routes come online.", icon: ( ), }, { title: "Scalable Operations", desc: "Modular ground infrastructure built to expand city by city without slowing down day-to-day operations.", icon: ( ), }, ]; export default function WingsInfrastructure() { return (
/ Infrastructure /

A network built to move, not to sit idle

{CARDS.map((c) => (

{c.title}

{c.desc}

))}
); }