import {cn} from '@/lib/utils'; interface SectionHeadingProps { title: string; color?: string; subtitle?: string; align?: 'left' | 'center'; className?: string; } export function SectionHeading({title, color, subtitle, align = 'center', className}: SectionHeadingProps) { return (

{title}

{subtitle && (

{subtitle}

)}
); }