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/src/pages/_document.js

55 lines
1.5 KiB
JavaScript
Raw Normal View History

2022-10-26 16:13:30 +00:00
import env from "@beam-australia/react-env";
2022-10-26 21:33:36 +00:00
import { CssBaseline } from "@nextui-org/react";
2022-10-14 19:00:47 +00:00
import Document, { Head, Html, Main, NextScript } from "next/document";
import React from "react";
2022-10-26 18:57:43 +00:00
import { VARS } from "../consts/EnvVars";
2022-09-01 23:38:01 +00:00
class MyDocument extends Document {
2022-10-14 19:00:47 +00:00
static async getInitialProps(ctx) {
const initialProps = await Document.getInitialProps(ctx);
return {
...initialProps,
styles: React.Children.toArray([initialProps.styles]),
};
}
2022-09-01 23:38:01 +00:00
2022-10-14 19:00:47 +00:00
render() {
return (
<Html lang="en">
<Head>
2022-10-26 16:13:30 +00:00
<script defer src="/__ENV.js" />
2022-10-14 19:00:47 +00:00
{CssBaseline.flush()}
2022-10-26 10:52:58 +00:00
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Teko:wght@300&display=swap"
rel="stylesheet"
/>
<link rel="shortcut icon" href="/favicon.ico" />
2022-10-26 18:57:43 +00:00
<meta name="theme-color" content={"#" + env(VARS.SITE_COLOR)} />
<meta
property="og:keywords"
2023-01-15 16:13:18 +00:00
content="BeatSaber, Overlay, OBS, Twitch, YouTube, BeatSaber Overlay, Github, Beat Saber overlay, ScoreSaber, BeatLeader, VR gaming, Twitch stream enhancement, Customizable overlay, Real-time scores, Rankings, Leaderboard information, Stream enhancement, Professional overlay, Easy to use overlay builder."
/>
<script
2023-01-05 09:55:50 +00:00
defer
data-domain="bs-overlay.fascinated.cc"
src="https://analytics.fascinated.cc/js/script.js"
></script>
2022-10-14 19:00:47 +00:00
</Head>
<body>
<Main />
<NextScript />
</body>
</Html>
);
}
2022-09-01 23:38:01 +00:00
}
2022-10-14 19:00:47 +00:00
export default MyDocument;