Embed updates
All checks were successful
Deploy Frontend / docker (17, 3.8.5) (push) Successful in 57s

This commit is contained in:
Braydon 2024-04-16 23:25:41 -04:00
parent d5187aff6c
commit 54c116b85c
2 changed files with 3 additions and 3 deletions

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

@ -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) {