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