This repository has been archived on 2023-11-06. You can view files and clone it, but cannot push or open issues or pull requests.
beatsaber-overlay/pages/_app.js

28 lines
777 B
JavaScript
Raw Normal View History

2022-09-01 23:38:01 +00:00
// 1. import `NextUIProvider` component
import { NextUIProvider } from '@nextui-org/react';
import Head from 'next/head'
import Config from '../config.json';
2022-02-14 17:43:52 +00:00
import '../styles/globals.css'
2022-09-01 23:38:01 +00:00
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>
<Head>
<title>{Config.name}</title>
<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" />
<meta name="theme-color" content= {Config.color} />
</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;