import React from 'react'; export interface SectionProps { title: string; description?: string; children: React.ReactNode; className?: string; } export const Section: React.FC = ({ title, description, children, className = '' }) => { return (

{title}

{description &&

{description}

}
{children}
); };