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