This commit is contained in:
parent
319c4c13ea
commit
3293f3fde3
Binary file not shown.
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 4.2 KiB |
@ -1,5 +1,4 @@
|
||||
import AppProvider from "@/components/AppProvider";
|
||||
import { SSRSettings } from "@/ssrSettings";
|
||||
import { ssrSettings } from "@/ssrSettings";
|
||||
import { Metadata } from "next";
|
||||
import { Inter } from "next/font/google";
|
||||
import Image from "next/image";
|
||||
@ -10,13 +9,13 @@ const font = Inter({ subsets: ["latin-ext"], weight: "500" });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: {
|
||||
template: SSRSettings.siteName + " - %s",
|
||||
default: SSRSettings.siteName,
|
||||
template: ssrSettings.siteName + " - %s",
|
||||
default: ssrSettings.siteName,
|
||||
},
|
||||
openGraph: {
|
||||
title: SSRSettings.siteName,
|
||||
title: ssrSettings.siteName,
|
||||
description: "Aggregate your scores with other leaderboards together!",
|
||||
url: SSRSettings.siteUrl,
|
||||
url: ssrSettings.siteUrl,
|
||||
locale: "en_US",
|
||||
type: "website",
|
||||
},
|
||||
@ -41,7 +40,7 @@ export default function RootLayout({
|
||||
/>
|
||||
</div>
|
||||
|
||||
<AppProvider>{children}</AppProvider>
|
||||
{children}
|
||||
</body>
|
||||
</html>
|
||||
);
|
||||
|
@ -1,9 +0,0 @@
|
||||
"use client";
|
||||
|
||||
type AppProviderProps = {
|
||||
children: React.ReactNode;
|
||||
};
|
||||
|
||||
export default function AppProvider({ children }: AppProviderProps) {
|
||||
return <>{children}</>;
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
import { SSRSettings } from "@/ssrSettings";
|
||||
import { ssrSettings } from "@/ssrSettings";
|
||||
import { isProduction } from "@/utils/utils";
|
||||
|
||||
const buttons = [
|
||||
@ -22,7 +22,7 @@ export default function Footer() {
|
||||
className="transform-gpu transition-all hover:text-blue-500"
|
||||
href="https://git.fascinated.cc/Fascinated/scoresaber-reloaded-v2"
|
||||
>
|
||||
{SSRSettings.siteName}
|
||||
{ssrSettings.siteName}
|
||||
</a>
|
||||
|
||||
{buttons.map((button, index) => {
|
||||
|
@ -1,4 +1,4 @@
|
||||
export const SSRSettings = {
|
||||
export const ssrSettings = {
|
||||
siteName: "Scoresaber Reloaded",
|
||||
siteUrl: "https://ssr.fascinated.cc",
|
||||
proxy: "https://proxy.fascinated.cc",
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { ScoresaberPlayer } from "@/schemas/scoresaber/player";
|
||||
import { ScoresaberPlayerScore } from "@/schemas/scoresaber/playerScore";
|
||||
import { SSRSettings } from "@/ssrSettings";
|
||||
import { ssrSettings } from "@/ssrSettings";
|
||||
import { FetchQueue } from "../fetchWithQueue";
|
||||
import { formatString } from "../string";
|
||||
|
||||
@ -8,7 +8,7 @@ import { formatString } from "../string";
|
||||
const fetchQueue = new FetchQueue();
|
||||
|
||||
// Api endpoints
|
||||
const API_URL = SSRSettings.proxy + "/https://scoresaber.com/api";
|
||||
const API_URL = ssrSettings.proxy + "/https://scoresaber.com/api";
|
||||
const SEARCH_PLAYER_URL =
|
||||
API_URL + "/players?search={}&page=1&withMetadata=false";
|
||||
const PLAYER_SCORES =
|
||||
|
Loading…
Reference in New Issue
Block a user