mars-v2-frontend/pages/_app.tsx

23 lines
512 B
TypeScript
Raw Normal View History

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 14:30:58 +00:00
import Layout from "components/Layout";
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" /> */}
2022-09-03 13:21:43 +00:00
<link rel="icon" href="/favicon.svg" />
2022-09-02 11:26:03 +00:00
</Head>
2022-09-02 14:30:58 +00:00
<Layout>
2022-09-02 12:06:05 +00:00
<Component {...pageProps} />
2022-09-02 14:30:58 +00:00
</Layout>
2022-09-02 11:26:03 +00:00
</>
);
2022-09-02 11:17:39 +00:00
}
2022-09-02 11:26:03 +00:00
export default MyApp;