2022-09-02 11:26:03 +00:00
|
|
|
import type { AppProps } from "next/app";
|
|
|
|
import Head from "next/head";
|
|
|
|
|
|
|
|
import "../styles/globals.css";
|
2022-09-02 11:51:00 +00:00
|
|
|
import Navigation from "components/Navigation";
|
2022-09-02 11:17:39 +00:00
|
|
|
|
|
|
|
function MyApp({ Component, pageProps }: AppProps) {
|
2022-09-02 11:26:03 +00:00
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<Head>
|
|
|
|
<title>Mars V2</title>
|
|
|
|
{/* <meta name="description" content="Generated by create next app" /> */}
|
|
|
|
<link rel="icon" href="/favicon.ico" />
|
|
|
|
</Head>
|
2022-09-02 11:51:00 +00:00
|
|
|
<Navigation />
|
2022-09-02 11:26:03 +00:00
|
|
|
<Component {...pageProps} />
|
|
|
|
</>
|
|
|
|
);
|
2022-09-02 11:17:39 +00:00
|
|
|
}
|
|
|
|
|
2022-09-02 11:26:03 +00:00
|
|
|
export default MyApp;
|