Update app/(auth)/layout.tsx

This commit is contained in:
kleap-admin 2026-01-16 15:55:51 +00:00
parent 1df1274f80
commit 24d776f962
1 changed files with 14 additions and 0 deletions

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

@ -0,0 +1,14 @@
import { AuthLayout } from "@/layouts/auth-layout";
export default function AuthXLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<>
<AuthLayout>
<main className="flex h-full min-h-screen w-full">{children}</main>
</AuthLayout>
</>
);
}