import { Button } from "@/components/ui/button"; import Link from "next/link"; import { AppStatistics } from "@ssr/common/types/backend/app-statistics"; import Statistic from "@/components/home/statistic"; import { kyFetch } from "@ssr/common/utils/utils"; import { Config } from "@ssr/common/config"; export const dynamic = "force-dynamic"; // Always generate the page on load export default async function HomePage() { const statistics = await kyFetch(Config.apiUrl + "/statistics"); return (

ScoreSaber Reloaded

Welcome to the ScoreSaber Reloaded website.

ScoreSaber Reloaded is a website that allows you to track your ScoreSaber data over time.

{statistics && (

Site Statistics

)}
); }