interface ContainerProps { children: React.ReactNode; className?: string; as?: "div" | "section" | "article"; } export function Container({ children, className = "", as: Component = "div", }: ContainerProps) { return ( {children} ); }