import React from 'react'; interface SectionHeaderProps { id?: string; title: string; subtitle?: string; className?: string; } const SectionHeader = ({ id, title, subtitle, className = '' }: SectionHeaderProps) => (
{subtitle}