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

38 lines
827 B
JavaScript
Raw Normal View History

2022-10-14 19:00:47 +00:00
import { CssBaseline } from "@nextui-org/react";
import Document, { Head, Html, Main, NextScript } from "next/document";
import React from "react";
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>
{CssBaseline.flush()}
<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"
/>
</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;