export type SectionProps = { description?: React.ReactNode; title?: React.ReactNode; children?: React.ReactNode; }; const Section = ( { description, title, children }: SectionProps ) => (
{ description }