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}
+
+ + ); +}