import type { ReactNode } from 'react'; interface SectionWrapperProps { id: string; title: string; subtitle?: string; children: ReactNode; dark?: boolean; className?: string; } export function SectionWrapper({ id, title, subtitle, children, dark = false, className = '', }: SectionWrapperProps) { return (
{dark && (
)}

{title}

{subtitle && (

{subtitle}

)}
{children}
); }