mars-v2-frontend/pages/_app.tsx
2022-09-02 15:30:58 +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.ico" />
</Head>
<Layout>
<Component {...pageProps} />
</Layout>
</>
);
}
export default MyApp;