import type { HeroContent } from "../content/types"; interface HeroProps { hero: HeroContent; demoMode: boolean; } export function Hero({ hero, demoMode }: HeroProps) { return (

{hero.eyebrow}

{hero.title}

{hero.statement}

{hero.trustLine}

{hero.ctas.map((cta, index) => ( {cta.label} ))}
{hero.metrics.map((metric) => (
{metric.value} {metric.label}
))}
routing clarity {demoMode ? "public-safe demo surface" : "live-ready surface"}
); }