This commit is contained in:
Polaris 2024-08-29 17:40:14 -04:00
parent 5aa70f5f45
commit 4e20a9ac3b
3 changed files with 3 additions and 20 deletions

View File

@ -30,17 +30,11 @@ export const ChunithmHotPlays: FC<ChunithmProfileHotPlays> = ({
}) => {
return (
<div className="grid grid-cols-1 gap-4 sm:grid-cols-2 md:grid-cols-4 lg:grid-cols-6 xl:grid-cols-8">
{" "}
{chuniProfileHotPlays.hotRating.map((playerHotRatingList, index) => {
return (
<div key={index} className="flex flex-col items-center p-2">
<div className="font-bold"></div>
<ImageCell
jacketPath={playerHotRatingList.jacketPath!}
title={playerHotRatingList.title!}
/>
<ImageCell jacketPath={playerHotRatingList.jacketPath!} />
<div>
<ul className="mt-2 text-center">
<li>

View File

@ -35,10 +35,7 @@ export const ChunithmTopPlays: FC<chunithmTopPlays> = ({
return (
<div key={index} className="flex flex-col items-center p-2">
<div className="font-bold"></div>
<ImageCell
jacketPath={chuniProfileTopPlays.jacketPath!}
title={chuniProfileTopPlays.title!}
/>
<ImageCell jacketPath={chuniProfileTopPlays.jacketPath!} />
<ul className="mt-2 text-center">
<li>
<strong>Title: </strong> {chuniProfileTopPlays.title}

View File

@ -31,18 +31,10 @@ export const ChunithmNextPlays: FC<ChunithmProfileHotPlays> = ({
<div className="grid grid-cols-1 gap-4 sm:grid-cols-2 md:grid-cols-4 lg:grid-cols-6 xl:grid-cols-8">
{" "}
{chuniProfileNextPlays.nextPlays.map((playerNextRatingList, index) => {
const jacketPath = playerNextRatingList.jacketPath?.replace(
".dds",
".png",
);
return (
<div key={index} className="flex flex-col items-center p-2">
<div className="font-bold"></div>
<ImageCell
jacketPath={playerNextRatingList.jacketPath!}
title={playerNextRatingList.title!}
/>
<ImageCell jacketPath={playerNextRatingList.jacketPath!} />
<div>
<ul className="mt-2 text-center">
<li>