add realtime statistics!!!
Some checks failed
Deploy App / docker (ubuntu-latest) (push) Has been cancelled

This commit is contained in:
Lee
2024-04-18 01:21:38 +01:00
parent f5203f9742
commit defdcccdb6
14 changed files with 143 additions and 9 deletions

View File

@ -9,6 +9,7 @@ import { CachedPlayer, McUtilsAPIError, SkinPart, getPlayer } from "mcutils-libr
import { Metadata } from "next";
import Image from "next/image";
import Link from "next/link";
import { ReactElement } from "react";
type Params = {
params: {
@ -46,7 +47,7 @@ export async function generateMetadata({ params: { id } }: Params): Promise<Meta
}
}
export default async function Page({ params: { id } }: Params): Promise<JSX.Element> {
export default async function Page({ params: { id } }: Params): Promise<ReactElement> {
let error: string | undefined = undefined; // The error to display
let player: CachedPlayer | undefined = undefined; // The player to display