diff --git a/client/src/app/layout.tsx b/client/src/app/layout.tsx index 983ef02..527d357 100644 --- a/client/src/app/layout.tsx +++ b/client/src/app/layout.tsx @@ -2,6 +2,7 @@ import "@/styles/globals.css"; import Navbar from "@/components/Navbar"; import Footer from "@/components/Footer"; +import AuthModal from "@/components/AuthModal"; export const metadata = { title: "chessu", @@ -14,11 +15,12 @@ export default function RootLayout({ children }: { children: React.ReactNode }) -
- {children} -
+
{children}