TypeScript 93.3%
JavaScript 4.4%
CSS 2.3%
1/**2 * Author: Simon-Pierre Boucher3 * Contact: contact@spboucher.ai4 * Project: Hilmacorp.ai — Web Platform5 * File: components/Container.tsx6 * Description: Layout primitive — centered, max-width content container7 */89import type { ReactNode } from "react";1011export default function Container({12 children,13 className = "",14}: {15 children: ReactNode;16 className?: string;17}) {18 return (19 <div className={`mx-auto w-full max-w-6xl px-5 sm:px-8 ${className}`}>20 {children}21 </div>22 );23}24