import type { ReactNode } from 'react' interface SectionProps { title: string description?: string children: ReactNode } export function Section({ title, description, children }: SectionProps) { return (

{title}

{description && (

{description}

)}
{children}
) }