fix seo
All checks were successful
deploy / deploy (push) Successful in 52s

This commit is contained in:
Lee 2023-10-24 13:45:34 +01:00
parent cd5866a992
commit abc556a1ec
2 changed files with 4 additions and 2 deletions

@ -10,14 +10,15 @@ import "./globals.css";
const font = Inter({ subsets: ["latin-ext"], weight: "500" });
export const metadata: Metadata = {
metadataBase: new URL(ssrSettings.siteUrl),
title: {
template: ssrSettings.siteName + " - %s",
default: ssrSettings.siteName,
},
metadataBase: new URL(ssrSettings.siteUrl),
description: ssrSettings.description,
openGraph: {
title: ssrSettings.siteName,
description: "Aggregate your scores with other leaderboards together!",
description: ssrSettings.description,
url: ssrSettings.siteUrl,
locale: "en_US",
type: "website",

@ -1,5 +1,6 @@
export const ssrSettings = {
siteName: "ScoreSaber Reloaded",
description: "Aggregate your scores with other leaderboards together!",
siteUrl: "https://ssr.fascinated.cc",
proxy: "https://proxy.fascinated.cc",
};