import { type ReactNode } from "react"; type SectionProps = { children: ReactNode; className?: string; }; export function Section({ children, className = "" }: SectionProps) { return (
{children}
); }