Implemented guild page

This commit is contained in:
2025-09-26 13:44:42 +02:00
parent 785185d26a
commit 9978faf69d
3 changed files with 43 additions and 4 deletions

View File

@@ -18,7 +18,7 @@ import Sidebar from "./_components/Sidebar"
export async function generateMetadata({ params }: { params: Promise<{ ign: string }> }): Promise<Metadata> {
const { ign } = await params
const user = await getUuid(ign)
return { title: user !== null ? user.name : "Player not found" }
return { title: user !== null ? `${user.name}'s Stats` : "Player not found" }
}
export default function PlayerPage({ params }: PageProps<"/player/[ign]">) {