1
Fork 0
mirror of https://github.com/Steffo99/distributed-arcade-viewer.git synced 2024-11-22 16:04:23 +00:00
distributed-arcade-viewer/pages/_app.tsx

17 lines
364 B
TypeScript
Raw Normal View History

2023-10-03 23:50:32 +00:00
// @ts-nocheck
2023-01-10 15:24:43 +00:00
import type {AppProps} from "next/app"
import "../styles/globals.css"
import Head from "next/head"
export default function App({Component, pageProps}: AppProps) {
return <>
<Head>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="icon" href="/favicon.ico"/>
</Head>
2023-10-03 23:35:44 +00:00
<Component {...pageProps} />
2023-01-10 15:24:43 +00:00
</>
}