mars-v2-frontend/pages/_app.tsx
2022-09-02 12:51:18 +01:00

22 lines
508 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>
<Navigation />
<Component {...pageProps} />
</>
);
}
export default MyApp;