export default function Section({ title, children }: { title: string, children: React.ReactNode }) { return (

{title}

{children}
) }