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