This commit is contained in:
parent
508d961174
commit
cb9c297351
@ -1,4 +1,5 @@
|
||||
import PlayerPage from "@/components/player/PlayerPage";
|
||||
import { ssrSettings } from "@/ssrSettings";
|
||||
import { ScoreSaberAPI } from "@/utils/scoresaber/api";
|
||||
import { Metadata } from "next";
|
||||
|
||||
@ -16,14 +17,18 @@ export async function generateMetadata({
|
||||
};
|
||||
}
|
||||
|
||||
const description =
|
||||
`View ${player.name}'s scores, top plays, and more.
` +
|
||||
`Rank: #${player.rank} (#${player.countryRank} - ${player.country})
` +
|
||||
`PP: ${player.pp}
` +
|
||||
`Play Count: ${player.scoreStats.totalPlayCount}`;
|
||||
|
||||
return {
|
||||
title: `${player.name}`,
|
||||
description:
|
||||
`View ${player.name}'s scores, top plays, and more.
` +
|
||||
`Rank: #${player.rank} (#${player.countryRank} - ${player.country})
` +
|
||||
`PP: ${player.pp}
` +
|
||||
`Play Count: ${player.scoreStats.totalPlayCount}`,
|
||||
twitter: {
|
||||
description: description,
|
||||
openGraph: {
|
||||
title: `${ssrSettings.siteName} - ${player.name}`,
|
||||
description: description,
|
||||
images: [
|
||||
{
|
||||
url: player.profilePicture,
|
||||
|
Loading…
Reference in New Issue
Block a user