import { cn } from "@/lib/utils"; export function Section({ id, className, children, }: { id?: string; className?: string; children: React.ReactNode; }) { return (
{children}
); } export function SectionHeading({ eyebrow, title, subtitle, align = "center", }: { eyebrow?: string; title: string; subtitle?: string; align?: "center" | "start"; }) { return (
{eyebrow ? {eyebrow} : null}

{title}

{subtitle ? (

{subtitle}

) : null}
); }