interface SectionHeadingProps { children: React.ReactNode; className?: string; centered?: boolean; } export function SectionHeading({ children, className = "", centered = false }: SectionHeadingProps) { return (