import type { ReactNode } from 'react'; type SectionHeaderProps = { badge: ReactNode; title: string; description?: string; }; export function SectionHeader({ badge, title, description }: SectionHeaderProps) { return (
{badge}

{title}

{description ?

{description}

: null}
); }