// Matches the homepage MagicBento light-card hover (see src/components/MagicBento.css): // border-color -> --flux-primary-200, soft --flux-primary-400 glow, 0.3s transition, no lift. const cardHover = 'transition-all duration-300 hover:border-[var(--flux-primary-200)] ' + 'hover:shadow-[0_4px_20px_color-mix(in_srgb,var(--flux-primary-400)_15%,transparent),0_0_30px_color-mix(in_srgb,var(--flux-primary-400)_8%,transparent)]'; function Section({ title, children }: { title: string; children: React.ReactNode }) { return (

{title}

{children}
); } function Badge({ children, color }: { children: React.ReactNode; color: string }) { return ( {children} ); } export default function CardDemo() { return ( <>

Iceland Explorer

7-day self-drive tour through the Golden Circle, south coast glaciers, and Reykjavik.

Northern Lights Chase

4-night winter adventure with guided aurora hunting and geothermal bathing.

Departure Summary

Confirmed
Package Iceland Explorer
Date 15 Jun 2026
Guests 12 / 16
Revenue $48,600
{[ { title: 'Bookings', value: '1,284', change: '+12%' }, { title: 'Revenue', value: '$2.4M', change: '+8%' }, { title: 'Departures', value: '47', change: '+3' }, ].map((stat) => (

{stat.title}

{stat.value}

{stat.change}

))}
Card example

Midnight Sun Cruise

10-day coastal voyage along the Norwegian fjords under the midnight sun.

From $3,200 New

Archived Package

This package is no longer available for new bookings.

); }