// 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 (

{title}

{description &&

{description}

}
) } export function SubsectionHeading({ title, description, className }: SectionHeadingProps) { return (

{title}

{description &&

{description}

}
) } export function ComponentHeading({ title, description, className }: SectionHeadingProps) { return (

{title}

{description &&

{description}

}
) }