diff --git a/src/app/(auth)/layout.tsx b/src/app/(auth)/layout.tsx new file mode 100644 index 0000000..ceb1a6b --- /dev/null +++ b/src/app/(auth)/layout.tsx @@ -0,0 +1,26 @@ +import { Button } from "@/components/ui/button"; +import Image from "next/image"; + +interface AuthLayoutProps { + children: React.ReactNode; +} + +const AuthLayout = ({ children }: AuthLayoutProps) => { + return ( +
+
+ +
+ {children} +
+
+
+ ); +}; + +export default AuthLayout;