/** * @file app/(auth)/layout.tsx * @description Layout component wrapping authentication views with a centered container structure and fixed bottom footer. */ export default function AuthLayout({ children, }: { children: React.ReactNode; }) { return (
{children}
); }