This commit is contained in:
2022-12-10 23:58:09 +01:00
parent 29da22d579
commit acda284da1
25 changed files with 799 additions and 111 deletions

View File

@@ -1,6 +1,16 @@
import '../styles/globals.css'
import type { AppProps } from 'next/app'
import "../styles/globals.scss";
import type { AppProps } from "next/app";
import Navigation from "../components/Navigation/Navigation";
import Footer from "../components/Footer/Footer";
import SEO from "../components/SEO";
export default function App({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
return (
<>
<SEO />
<Navigation />
<Component {...pageProps} />
<Footer />
</>
);
}