import Link from "next/link";
import { ScrollReveal, StaggerChildren } from "@/animations/Reveal";
const PLANS = [
{
price: "On Quote",
priceNote: "per shipment",
name: "Starter Air",
features: [
{ active: true, text: "Standard air cargo booking" },
{ active: true, text: "Real-time milestone tracking" },
{ active: false, text: "Priority customs clearance" },
{ active: false, text: "Temperature-controlled handling" },
{ active: false, text: "Dedicated account manager" },
],
},
{
price: "On Quote",
priceNote: "per shipment",
name: "Express Air",
features: [
{ active: true, text: "Next-flight-out scheduling" },
{ active: true, text: "Real-time milestone tracking" },
{ active: true, text: "Priority customs clearance" },
{ active: false, text: "Temperature-controlled handling" },
{ active: false, text: "Dedicated account manager" },
],
},
{
price: "On Quote",
priceNote: "per shipment",
name: "Cold Chain",
features: [
{ active: true, text: "Next-flight-out scheduling" },
{ active: true, text: "Real-time milestone tracking" },
{ active: true, text: "Priority customs clearance" },
{ active: true, text: "Temperature-controlled handling" },
{ active: false, text: "Dedicated account manager" },
],
},
{
price: "Custom",
priceNote: "enterprise pricing",
name: "Charter & Enterprise",
featured: true,
features: [
{ active: true, text: "Full-aircraft charter allocation" },
{ active: true, text: "Real-time milestone tracking" },
{ active: true, text: "Priority customs clearance" },
{ active: true, text: "Temperature-controlled handling" },
{ active: true, text: "Dedicated account manager" },
],
},
];
export default function AirFreightBenefits() {
return (
<>
/ Pricing Plans /
Transparent pricing for every cargo need
{PLANS.map((plan) => (
{plan.price}
{plan.priceNote}
{plan.name}
{plan.features.map((feat) => (
-
{feat.active ? (
) : (
)}
{feat.text}
))}
Get started
))}
>
);
}