import { cn } from "@/lib/utils"; type SectionHeadingProps = { eyebrow: string; title: string; description: string; align?: "left" | "center"; className?: string; }; export function SectionHeading({ eyebrow, title, description, align = "left", className, }: SectionHeadingProps) { return (

{eyebrow}

{title}

{description}

); }