type SectionHeadingProps = { eyebrow: string; title: string; description?: string; align?: "left" | "center"; }; export function SectionHeading({ eyebrow, title, description, align = "left", }: SectionHeadingProps) { const alignment = align === "center" ? "section-heading-stack mx-auto max-w-3xl text-center" : "section-heading-stack max-w-3xl"; return (

{eyebrow}

{title}

{description ? (

{description}

) : null}
); }