mars-v2-frontend/pages/_app.tsx
gustavomauricio 42138c107f favicon added
2022-09-03 14:21:43 +01:00

23 lines
512 B
TypeScript

import type { AppProps } from "next/app";
import Head from "next/head";
import "../styles/globals.css";
import Layout from "components/Layout";
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.svg" />
</Head>
<Layout>
<Component {...pageProps} />
</Layout>
</>
);
}
export default MyApp;