diff options
Diffstat (limited to 'apps/web/app/(auth)/layout.tsx')
| -rw-r--r-- | apps/web/app/(auth)/layout.tsx | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/apps/web/app/(auth)/layout.tsx b/apps/web/app/(auth)/layout.tsx new file mode 100644 index 0000000..6707b36 --- /dev/null +++ b/apps/web/app/(auth)/layout.tsx @@ -0,0 +1,11 @@ +export default function AuthLayout({ + children, +}: { + children: React.ReactNode +}) { + return ( + <div className="flex min-h-screen items-center justify-center px-4"> + <div className="w-full max-w-sm space-y-6">{children}</div> + </div> + ) +} |