// Update the SectionHeading component to use h2 for main headings import { cn } from "@/lib/utils" interface SectionHeadingProps { title: string description?: string className?: string } export function SectionHeading({ title, description, className }: SectionHeadingProps) { return (
{description}
}{description}
}{description}
}