diff --git a/components/Layout.tsx b/components/Layout.tsx new file mode 100644 index 0000000..7963882 --- /dev/null +++ b/components/Layout.tsx @@ -0,0 +1,12 @@ +import Navbar from "./Navbar"; +import Footer from "./Footer"; + +const Layout = ({ children }) => ( + <> + + {children} +