diff --git a/app/(sharing)/[token]/[id]/page.tsx b/app/(sharing)/[token]/[id]/page.tsx index 50f132c..cb330cc 100644 --- a/app/(sharing)/[token]/[id]/page.tsx +++ b/app/(sharing)/[token]/[id]/page.tsx @@ -32,35 +32,57 @@ export default async function Share({ // Filter songsData to match the playlogIds const matchedSongs = songsData.filter((song) => playlogIds.includes(song.id)); return ( -
- {matchedSongs.map((song) => ( -
-
-

{song.title}

-

Artist: {song.artist}

-

Genre: {song.genre}

-

diff: {song.chartlevel}

+
+
+

Salmon

+
-

Level: {song.level}

+
+

Broccoli

+
-

Full Combo: {song.isFullCombo ? "Yes" : "No"}

-

Score: {song.score}

+
+

Tamago

+
-
- - {getDifficultyText(song.chartId)} - -
-
-
- ))} +
+

Pork

+
+ +
+

Edamame

+
+ //
+ //
+ // {matchedSongs.map((song) => ( + //
+ //
+ //

{song.title}

+ //

Artist: {song.artist}

+ //

Genre: {song.genre}

+ //

diff: {song.chartlevel}

+ + //

Level: {song.level}

+ + //

Full Combo: {song.isFullCombo ? "Yes" : "No"}

+ //

Score: {song.score}

+ + //
+ // + // {getDifficultyText(song.chartId)} + // + //
+ //
+ //
+ // ))} + //
); }