From e81e664c9367f590f3ef4b9e5b5dfb949d9f6356 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Thu, 15 Jan 2026 13:02:59 +0000 Subject: [PATCH] Update app/(auth)/layout.tsx --- app/(auth)/layout.tsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 app/(auth)/layout.tsx diff --git a/app/(auth)/layout.tsx b/app/(auth)/layout.tsx new file mode 100644 index 0000000..6b177d4 --- /dev/null +++ b/app/(auth)/layout.tsx @@ -0,0 +1,14 @@ +import { AuthLayout } from "@/layouts/auth-layout"; +export default function AuthXLayout({ + children, +}: { + children: React.ReactNode; +}) { + return ( + <> + +
{children}
+
+ + ); +}