Add better SEO
This commit is contained in:
parent
8e607cda18
commit
792c92c526
@ -1,5 +1,5 @@
|
||||
import { createTheme, NextUIProvider } from "@nextui-org/react";
|
||||
import { NextSeo } from "next-seo";
|
||||
import { DefaultSeo } from "next-seo";
|
||||
import { ThemeProvider as NextThemesProvider } from "next-themes";
|
||||
import "../styles/globals.css";
|
||||
|
||||
@ -19,17 +19,9 @@ const darkTheme = createTheme({
|
||||
|
||||
function MyApp({ Component, pageProps }) {
|
||||
return (
|
||||
<NextThemesProvider
|
||||
storageKey="theme"
|
||||
attribute="class"
|
||||
value={{
|
||||
dark: darkTheme,
|
||||
light: lightTheme,
|
||||
}}
|
||||
>
|
||||
<NextUIProvider>
|
||||
<NextSeo
|
||||
title={process.env.NEXT_PUBLIC_SITE_NAME}
|
||||
<>
|
||||
<DefaultSeo
|
||||
titleTemplate={`${process.env.NEXT_PUBLIC_SITE_NAME} | %s`}
|
||||
description={process.env.NEXT_PUBLIC_SITE_DESCRIPTION}
|
||||
openGraph={{
|
||||
url: process.env.NEXT_PUBLIC_SITE_URL,
|
||||
@ -48,9 +40,19 @@ function MyApp({ Component, pageProps }) {
|
||||
site: "@BeatSaber Overlay",
|
||||
}}
|
||||
/>
|
||||
<NextThemesProvider
|
||||
storageKey="theme"
|
||||
attribute="class"
|
||||
value={{
|
||||
dark: darkTheme,
|
||||
light: lightTheme,
|
||||
}}
|
||||
>
|
||||
<NextUIProvider>
|
||||
<Component {...pageProps} />
|
||||
</NextUIProvider>
|
||||
</NextThemesProvider>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -16,6 +16,7 @@ class MyDocument extends Document {
|
||||
<Html lang="en">
|
||||
<Head>
|
||||
{CssBaseline.flush()}
|
||||
|
||||
<link
|
||||
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap"
|
||||
rel="stylesheet"
|
||||
|
@ -18,6 +18,7 @@ import NavBar from "../src/components/Navbar";
|
||||
import { toast, ToastContainer } from "react-toastify";
|
||||
import "react-toastify/dist/ReactToastify.css";
|
||||
|
||||
import { NextSeo } from "next-seo";
|
||||
import Utils from "../src/utils/utils";
|
||||
import styles from "../styles/main.module.css";
|
||||
|
||||
@ -152,6 +153,8 @@ export default class Home extends Component {
|
||||
<div className={styles.main}>
|
||||
<NavBar avatarUrl={this.state.avatarUrl}></NavBar>
|
||||
|
||||
<NextSeo title="Builder"></NextSeo>
|
||||
|
||||
<Container
|
||||
css={{
|
||||
marginTop: "$8",
|
||||
|
@ -1,4 +1,5 @@
|
||||
import { Link, Spinner } from "@nextui-org/react";
|
||||
import { NextSeo } from "next-seo";
|
||||
import { Component } from "react";
|
||||
import PlayerStats from "../src/components/PlayerStats";
|
||||
import ScoreStats from "../src/components/ScoreStats";
|
||||
@ -437,6 +438,8 @@ export default class Overlay extends Component {
|
||||
}
|
||||
|
||||
return (
|
||||
<>
|
||||
<NextSeo title="Overlay"></NextSeo>
|
||||
<div className={styles.main}>
|
||||
{!isValidSteamId ? (
|
||||
<div className={styles.invalidPlayer}>
|
||||
@ -475,6 +478,7 @@ export default class Overlay extends Component {
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user