import type { ElementType, ReactNode } from "react"; type SectionVariant = "default" | "sm" | "lg" | "hero" | "flush"; interface SectionProps { children: ReactNode; className?: string; as?: ElementType; variant?: SectionVariant; id?: string; } const variantClasses: Record = { default: "section", sm: "section section--sm", lg: "section section--lg", hero: "section section--hero", flush: "section section--flush", }; export function Section({ children, className = "", as: Tag = "section", variant = "default", id, }: SectionProps) { return ( {children} ); }