el.xwx.moe/pages/_app.tsx

18 lines
506 B
TypeScript
Raw Normal View History

2023-01-29 12:12:36 -06:00
import "@/styles/globals.css";
import type { AppProps } from "next/app";
2023-01-22 15:39:35 -06:00
import Head from "next/head";
2023-01-29 12:12:36 -06:00
export default function App({ Component, pageProps }: AppProps) {
2023-01-22 15:39:35 -06:00
return (
<>
<Head>
<title>Create Next App</title>
<meta name="description" content="Generated by create next app" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="/favicon.ico" />
</Head>
2023-01-29 12:12:36 -06:00
<Component {...pageProps} />
2023-01-22 15:39:35 -06:00
</>
);
}