Files
gridpilot.gg/apps/website/components/auth/AuthShell.tsx
2026-01-18 22:55:55 +01:00

23 lines
423 B
TypeScript

'use client';
import { AuthLayout } from '@/ui/AuthLayout';
import React from 'react';
interface AuthShellProps {
children: React.ReactNode;
}
/**
* AuthShell
*
* The outermost container for all authentication pages.
* Provides the "calm intensity" background and centered layout.
*/
export function AuthShell({ children }: AuthShellProps) {
return (
<AuthLayout>
{children}
</AuthLayout>
);
}