add rank graph
Some checks failed
deploy / deploy (push) Failing after 14s

This commit is contained in:
Lee
2023-10-20 21:04:01 +01:00
parent 6c809696ea
commit 63199cace6
3 changed files with 128 additions and 1 deletions

View File

@ -5,6 +5,7 @@ import Card from "@/components/Card";
import Container from "@/components/Container";
import Label from "@/components/Label";
import Pagination from "@/components/Pagination";
import PlayerChart from "@/components/PlayerChart";
import ScoreStatLabel from "@/components/ScoreStatLabel";
import { Spinner } from "@/components/Spinner";
import { ScoresaberPlayer } from "@/schemas/scoresaber/player";
@ -135,7 +136,7 @@ export default function Player({ params }: { params: { id: string } }) {
<Avatar url={playerData.profilePicture} label="Avatar" />
</div>
</div>
<div className="mt-1 flex flex-col items-center gap-2 xs:items-start">
<div className="mt-1 flex w-full flex-col items-center gap-2 xs:items-start">
<p className="text-2xl">{playerData.name}</p>
<div className="flex gap-3 text-xl">
@ -184,6 +185,8 @@ export default function Player({ params }: { params: { id: string } }) {
value={formatNumber(playerData.scoreStats.replaysWatched)}
/>
</div>
<PlayerChart scoresaber={player.player} />
</div>
</div>
</Card>