diff --git a/app/(withNav)/layout.tsx b/app/(withNav)/layout.tsx new file mode 100644 index 0000000..8e2053b --- /dev/null +++ b/app/(withNav)/layout.tsx @@ -0,0 +1,16 @@ +import Footer from "@/components/footer" +import Navbar from "@/components/navbar" + +export default function Layout({ + children, +}: Readonly<{ + children: React.ReactNode +}>) { + return ( + <> + + {children} +