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