website refactor
This commit is contained in:
18
apps/website/components/ui/AuthContainer.tsx
Normal file
18
apps/website/components/ui/AuthContainer.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
/**
|
||||
* 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user