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

30 lines
611 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 />
<div
style={{
display: "flex",
flexDirection: "column",
justifyContent: "space-between",
minHeight: "100vh",
}}
>
<div>
<Navigation />
<Component {...pageProps} />
</div>
<div>
<Footer />
</div>
</div>
</>
);
}