interface SectionHeadingProps { badge?: string; title: string; subtitle?: string; } export function SectionHeading({ badge, title, subtitle }: SectionHeadingProps) { return (
{badge && ( {badge} )}

{title}

{subtitle && (

{subtitle}

)}
); }