[init] initlialize next app & convert old react app

This commit is contained in:
Janis
2022-12-16 17:13:47 +01:00
parent 95d8b832e9
commit e439aad1db
42 changed files with 10568 additions and 5279 deletions

16
pages/_app.jsx Normal file
View File

@@ -0,0 +1,16 @@
import "../styles/variables.scss";
import "../styles/globals.scss";
import Nav from "../components/Nav";
import Footer from "../components/Footer";
export default function App({ Component, pageProps }) {
return (
<>
<Nav {...pageProps} />
<main>
<Component {...pageProps} />
</main>
<Footer {...pageProps} />
</>
);
}