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