import Link from "next/link"; import type { CommonContent, HomeContent } from "@/content/types"; import type { Locale } from "@/lib/i18n"; type HeroSectionProps = { locale: Locale; home: HomeContent; common: CommonContent; }; export default function HeroSection({ locale, home, common }: HeroSectionProps) { return (

{home.kicker}

{home.title}

{home.description}

{home.primaryCta} {common.nav.about}
{home.highlights.map((item) => (
{item.value} {item.label}
))}
); }