add config file
All checks were successful
deploy / deploy (push) Successful in 58s

This commit is contained in:
Lee
2023-10-22 08:36:08 +01:00
parent 297fd882da
commit 319c4c13ea
4 changed files with 14 additions and 6 deletions

View File

@ -1,4 +1,5 @@
import AppProvider from "@/components/AppProvider";
import { SSRSettings } from "@/ssrSettings";
import { Metadata } from "next";
import { Inter } from "next/font/google";
import Image from "next/image";
@ -9,13 +10,13 @@ const font = Inter({ subsets: ["latin-ext"], weight: "500" });
export const metadata: Metadata = {
title: {
template: "Scoresaber Reloaded - %s",
default: "Scoresaber Reloaded",
template: SSRSettings.siteName + " - %s",
default: SSRSettings.siteName,
},
openGraph: {
title: "Scoresaber Reloaded",
title: SSRSettings.siteName,
description: "Aggregate your scores with other leaderboards together!",
url: "https://ssr.fascinated.cc",
url: SSRSettings.siteUrl,
locale: "en_US",
type: "website",
},