This repository has been archived on 2026-03-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
web/pages/_app.tsx
2022-12-11 13:11:01 +01:00

17 lines
405 B
TypeScript

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 (
<>
<SEO />
<Navigation />
<Component {...pageProps} />
<Footer />
</>
);
}