This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Liam fc7cf73977
All checks were successful
Deploy SSR / deploy (push) Successful in 1m27s
fix build text
2024-09-14 00:21:06 +01:00

30 lines
945 B
TypeScript

"use client";
import ScoreSaberLeaderboard from "@/common/service/types/scoresaber/scoresaber-leaderboard";
import ScoreSaberScore from "@/common/service/types/scoresaber/scoresaber-score";
import LeaderboardPlayer from "./leaderboard-player";
import LeaderboardScoreStats from "./leaderboard-score-stats";
import ScoreRankInfo from "@/components/score/score-rank-info";
type Props = {
/**
* The score to display.
*/
score: ScoreSaberScore;
/**
* The leaderboard to display.
*/
leaderboard: ScoreSaberLeaderboard;
};
export default function LeaderboardScore({ score, leaderboard }: Props) {
return (
<div className="grid items-center w-full pb-2 pt-2 gap-2 lg:gap-0 first:pt-0 last:pb-0 grid-cols-[20px 1fr_1fr] lg:grid-cols-[130px_4fr_300px]">
<ScoreRankInfo score={score} />
<LeaderboardPlayer score={score} />
<LeaderboardScoreStats score={score} leaderboard={leaderboard} />
</div>
);
}