type SectionIntroProps = { eyebrow: string; title: string; description?: string; align?: "left" | "center"; }; export function SectionIntro({ eyebrow, title, description, align = "left", }: SectionIntroProps) { return (
{eyebrow}
{description}
) : null}