import styles from "./Section.module.css"; export function Section({ title, children, className, }: { title?: string; children: React.ReactNode; className?: string; }) { return (
{title &&

{title}

}
{children}
); }