Player and Server page embeds
All checks were successful
Deploy Frontend / docker (17, 3.8.5) (push) Successful in 1m11s

This commit is contained in:
Braydon 2024-04-18 00:38:38 -04:00
parent 46a0869b85
commit 8bcc5aa352
2 changed files with 8 additions and 2 deletions

@ -99,7 +99,10 @@ export const generateMetadata = async ({
}
}
}
return {};
return Embed({
title: "Player Lookup",
description: "Search for a player to view their profile.",
});
};
/**

@ -123,7 +123,10 @@ export const generateMetadata = async ({
}
}
}
return {};
return Embed({
title: "Server Lookup",
description: "Search for a server to view its data.",
});
};
export default ServerPage;