export default function Hero({ label, subtitle, children }: { label: string; subtitle?: string; children?: React.ReactNode }) { return (

{label}

{subtitle &&

{subtitle}

} {children}
); }