diff --git a/src/app/(pages)/mojang/page.tsx b/src/app/(pages)/mojang/page.tsx index c0b4059..d185797 100644 --- a/src/app/(pages)/mojang/page.tsx +++ b/src/app/(pages)/mojang/page.tsx @@ -45,7 +45,8 @@ async function getData(): Promise { export async function generateMetadata(): Promise { const { endpoints } = await getData(); - const description = Object.entries(endpoints) + let description = "The current status of Mojang Services\n\n"; + description += Object.entries(endpoints) .map(([url, status]) => { return `**${url}**: ${formatStatus(status)}`; })