2 Commits

Author SHA1 Message Date
54c116b85c Embed updates
All checks were successful
Deploy Frontend / docker (17, 3.8.5) (push) Successful in 57s
2024-04-16 23:25:41 -04:00
d5187aff6c robots 2024-04-16 23:24:02 -04:00
3 changed files with 5 additions and 3 deletions

View File

@ -27,7 +27,7 @@
]
},
"viewport": {
"themeColor": "minecraft-green-1"
"themeColor": "hsl(var(--minecraft-green-2))"
},
"navbarLinks": {
"Player": "/player",

View File

@ -0,0 +1,2 @@
User-Agent: *
Allow: /

View File

@ -79,8 +79,8 @@ export const generateMetadata = async ({
try {
const player: CachedPlayer = await getPlayer(query); // Get the player to embed
return Embed({
title: `${player.username}'s Player`,
description: `UUID: \`${player.uniqueId}\`\n\nClick to view data about this player.`,
title: `${player.username}'s Profile${player.legacy && " (Legacy)"}`,
description: `UUID: ${player.uniqueId}\n\nClick to view data about this player.`,
thumbnail: player.skin.parts.HEAD,
});
} catch (err) {