// Shipping + closing CTA section. const Shipping = () => { const { motion } = window.Motion; const { ArrowUpRight, SwissFlag } = window; const fadeUp = (delay = 0) => ({ initial: { filter: "blur(10px)", opacity: 0, y: 20 }, whileInView: { filter: "blur(0px)", opacity: 1, y: 0 }, viewport: { once: true, amount: 0.2 }, transition: { duration: 0.8, ease: "easeOut", delay }, }); const lanes = [ { region: "Europe", time: "2–3 days", note: "Dispatched from our Lausanne warehouse." }, { region: "North America", time: "3–5 days", note: "Express courier from EU. No customs surprises." }, { region: "Asia & Pacific", time: "4–7 days", note: "Tracked air freight on every roll, every order." }, { region: "Rest of World", time: "5–7 days", note: "If it has an address, we’ll get OVERCUT to it." }, ]; return (
// Worldwide shipping From Switzerland
to your bay.
Every colour ships from our facility in Switzerland within 24 hours of order. No bonded warehouse waits. No drop-ship middleman.
{lanes.map((l, i) => (
{l.region}
{l.time}

))}

{/* Closing CTA panel */}
Limited launch batch · Now shipping

Wrap your car in something that lasts.

Order a sample pack, browse the full 300+ palette, or get matched with an OVERCUT-certified installer in your city.

Order Sample Pack Find an Installer Browse the palette
); }; window.Shipping = Shipping;