type SectionHeaderProps = { eyebrow: string; title: string; description?: string; }; export default function SectionHeader({ eyebrow, title, description, }: SectionHeaderProps) { return (

{eyebrow}

{title}

{description ? (

{description}

) : null}
); }