Files
gridpilot.gg/apps/website/components/ui/AuthContainer.tsx
2026-01-14 10:51:05 +01:00

18 lines
440 B
TypeScript

/**
* AuthContainer - UI component for auth page layouts
*
* Pure presentation component for auth page container.
* Used by auth layout to provide consistent styling.
*/
interface AuthContainerProps {
children: React.ReactNode;
}
export function AuthContainer({ children }: AuthContainerProps) {
return (
<div className="min-h-screen bg-deep-graphite flex items-center justify-center p-4">
{children}
</div>
);
}