23 lines
512 B
TypeScript
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;
|