mars-v2-frontend/pages/_app.tsx
2022-09-02 13:06:05 +01:00

24 lines
560 B
TypeScript

import type { AppProps } from "next/app";
import Head from "next/head";
import "../styles/globals.css";
import Navigation from "components/Navigation";
function MyApp({ Component, pageProps }: AppProps) {
return (
<>
<Head>
<title>Mars V2</title>
{/* <meta name="description" content="Generated by create next app" /> */}
<link rel="icon" href="/favicon.ico" />
</Head>
<div className="background">
<Navigation />
<Component {...pageProps} />
</div>
</>
);
}
export default MyApp;