import { Card } from "@/app/components/card"; import { NotFound } from "@/app/components/not-found"; import { LookupPlayer } from "@/app/components/player/lookup-player"; import { generateEmbed } from "@/common/embed"; import { getPlayer } from "mcutils-library"; import { Player } from "mcutils-library/dist/types/player/player"; import { Metadata } from "next"; import Image from "next/image"; type Params = { params: { id: string; }; }; export async function generateMetadata({ params: { id } }: Params): Promise { const player = await getData(id); if (player == null) { return generateEmbed({ title: "Unknown Player", description: "Invalid UUID / Username" }); } const { username, uniqueId, skin } = player; const headPartUrl = skin.parts.head; const description = ` Username: ${username} UUID: ${uniqueId}`; return generateEmbed({ title: `${username}`, description: description, image: headPartUrl, }); } async function getData(id: string): Promise { try { const cachedPlayer = await getPlayer(id); return cachedPlayer.player; } catch (error) { return null; // Player not found } } export default async function Page({ params }: Params): Promise { const player = await getData(params.id); return (

Lookup a Player

You can enter a players uuid or username to get information about the player.

{player == null && } {player != null && (
The player's skin

{player.username}

{player.uniqueId}

Skin Parts

{Object.entries(player.skin.parts).map(([key, value]) => { return ( // eslint-disable-next-line @next/next/no-img-element {`The ); })}
)}
); }