interface SectionHeaderProps { index: string title: string subtitle?: string className?: string } export function SectionHeader({ index, title, subtitle, className = '' }: SectionHeaderProps) { return (
{index}

{title}

{subtitle && (

{subtitle}

)}
) }