This commit is contained in:
2024-11-24 22:57:21 +01:00
parent bbf13cf203
commit 72933a46d1
48 changed files with 752 additions and 450 deletions

View File

@ -21,9 +21,13 @@
import {t} from "astro-i18n";
import {statsRepo} from "@repo/stats.ts";
export let gamemode: string;
export let topFive: boolean = false;
interface Props {
gamemode: string;
topFive?: boolean;
}
let { gamemode, topFive = false }: Props = $props();
let request = getRequest();