diff --git a/pages/_app.js b/pages/_app.js new file mode 100644 index 0000000..10e4682 --- /dev/null +++ b/pages/_app.js @@ -0,0 +1,31 @@ +import "../styles/globals.css"; + +import { Fragment } from "react"; + +import Navbar from "../components/Navbar"; +import Footer from "../components/Footer"; + +import config from "../config.json"; + +const Content = ({ children }) => ( +
+
{children}
+
+); + +const App = ({ Component, pageProps }) => ( + + + + + +