/** * Author: Simon-Pierre Boucher * Contact: contact@spboucher.ai * Project: Hilmacorp.ai — Web Platform * File: components/Container.tsx * Description: Layout primitive — centered, max-width content container */ import type { ReactNode } from "react"; export default function Container({ children, className = "", }: { children: ReactNode; className?: string; }) { return (
{children}
); }