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-28 15:29:04 +01:00

33 lines
724 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";
import { UserProvider } from "@auth0/nextjs-auth0/client";
export default function App({ Component, pageProps }: AppProps) {
return (
<>
<UserProvider>
<SEO />
<div
style={{
display: "flex",
flexDirection: "column",
justifyContent: "space-between",
minHeight: "100vh",
}}
>
<div>
<Navigation />
<Component {...pageProps} />
</div>
<div>
<Footer />
</div>
</div>
</UserProvider>
</>
);
}