2022-09-01 23:38:01 +00:00
|
|
|
// 1. import `NextUIProvider` component
|
|
|
|
import { NextUIProvider } from '@nextui-org/react';
|
2022-02-14 19:40:28 +00:00
|
|
|
import Head from 'next/head'
|
|
|
|
|
2022-02-15 19:21:09 +00:00
|
|
|
import Config from '../config.json';
|
|
|
|
|
2022-10-10 18:53:39 +00:00
|
|
|
import '../styles/globals.css';
|
|
|
|
|
2022-02-14 17:43:52 +00:00
|
|
|
function MyApp({ Component, pageProps }) {
|
2022-09-01 23:38:01 +00:00
|
|
|
return (
|
|
|
|
// 2. Use at the root of your app
|
|
|
|
<NextUIProvider>
|
2022-02-14 19:40:28 +00:00
|
|
|
<Head>
|
2022-10-08 14:30:03 +00:00
|
|
|
<title>{Config.title}</title>
|
2022-02-15 19:21:09 +00:00
|
|
|
<meta name="twitter:title" content= {Config.name} />
|
|
|
|
<meta property="og:site_name" content= {Config.name} key="title" />
|
|
|
|
<meta property="og:url" content= {Config.url} key="title" />
|
|
|
|
<meta property="og:description" content= {Config.description} key="description" />
|
2022-10-03 07:37:36 +00:00
|
|
|
<meta name="theme-color" content= {Config.color} />
|
2022-10-03 08:13:27 +00:00
|
|
|
<meta name="description" content= {Config.description}></meta>
|
2022-10-08 14:57:55 +00:00
|
|
|
<meta property="og:keywords" content="BeatSaber,Overlay,OBS,Twitch,YouTube,BeatSaber Overlay,Github," />
|
|
|
|
|
|
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
|
|
<meta property="og:image" content="https://cdn.fascinated.cc/YrATaLjUOP.png?raw=true" />
|
|
|
|
|
2022-10-03 07:37:36 +00:00
|
|
|
<noscript>
|
|
|
|
<img src="https://analytics.fascinated.cc/ingress/4bc413fa-a126-4860-9a6a-22d10d5cf2fb/pixel.gif" />
|
|
|
|
</noscript>
|
|
|
|
<script defer src="https://analytics.fascinated.cc/ingress/4bc413fa-a126-4860-9a6a-22d10d5cf2fb/script.js"></script>
|
2022-02-14 19:40:28 +00:00
|
|
|
</Head>
|
2022-09-01 23:38:01 +00:00
|
|
|
<Component {...pageProps} />
|
|
|
|
</NextUIProvider>
|
|
|
|
);
|
2022-02-14 17:43:52 +00:00
|
|
|
}
|
|
|
|
|
2022-09-01 23:38:01 +00:00
|
|
|
export default MyApp;
|