import Link from "next/link"; import brand from "@/brand.config"; const STATS = [ { value: "200+", label: "countries" }, { value: "<30s", label: "to activate" }, { value: "24/7", label: "human support" }, ]; export function HeroSection() { return (

Global eSIM connectivity

Stay connected, everywhere.

{brand.tagline} Instant QR activation. No physical cards. No roaming surprises.

Browse plans How it works
{STATS.map((stat) => (
{stat.value}
{stat.label}
))}
{[ { src: "https://images.unsplash.com/photo-1502602898657-3e91760cbb34?w=640&q=70&auto=format&fit=crop", label: "Paris" }, { src: "https://images.unsplash.com/photo-1492571350019-22de08371fd3?w=640&q=70&auto=format&fit=crop", label: "Tokyo" }, { src: "https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=640&q=70&auto=format&fit=crop", label: "Dubai" }, { src: "https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?w=640&q=70&auto=format&fit=crop", label: "London" }, ].map((item) => (
{item.label}
{item.label}
))}
); }