Fix login layout

This commit is contained in:
2025-12-27 21:22:50 +01:00
parent 1ce26419c0
commit a524baeea0
5 changed files with 37 additions and 15 deletions

12
src/app/(auth)/layout.tsx Normal file
View File

@ -0,0 +1,12 @@
export default function NormalLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<div className="flex flex-col min-h-screen min-w-screen">
{children}
</div>
);
}