import { cn } from "@/lib/utils"; export default function SectionHeader({ eyebrow, title, body, tone = "light" }: { eyebrow: string; title: string; body?: string; tone?: "light" | "dark" }) { const isDark = tone === "dark"; return (

{eyebrow}

{title}

{body ?

{body}

: null}
); }