diff --git a/app/(pages)/layout.tsx b/app/(pages)/layout.tsx new file mode 100644 index 0000000..1250e66 --- /dev/null +++ b/app/(pages)/layout.tsx @@ -0,0 +1,16 @@ +import Navbar from "../components/Navbar"; +import Footer from "../components/Footer"; + +export default function PagesLayout({ + children, +}: { + children: React.ReactNode; +}) { + return ( + <> + + {children} +