diff --git a/app/layout.tsx b/app/layout.tsx index 023baa0..6f793f3 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -3,6 +3,8 @@ import type { Metadata } from "next"; import { getServerSession } from "next-auth"; import { Inter } from "next/font/google"; import "./globals.css"; +import Navbar from "@/components/Navbar"; +import Footer from "@/components/Footer"; const inter = Inter({ subsets: ["latin"] }); @@ -21,7 +23,11 @@ export default async function RootLayout({ return ( - {children} + + + {children} +