Skip to content

Commit 5e1ab1f

Browse files
committed
Comment out artImages variable
1 parent 46899df commit 5e1ab1f

1 file changed

Lines changed: 15 additions & 14 deletions

File tree

client/src/pages/games/[id].tsx

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -63,20 +63,21 @@ export default function IndividualGamePage() {
6363
// TODO ADD EVENT
6464
const event = "Game Jam November 2025";
6565
// TODO ADD ARTIMAGES
66-
const artImages = [
67-
{
68-
src: "https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Minecraft_Zombie.png/120px-Minecraft_Zombie.png",
69-
alt: "Minecraft Zombie",
70-
},
71-
{
72-
src: "https://upload.wikimedia.org/wikipedia/commons/thumb/d/d8/Minecraft_Enderman.png/120px-Minecraft_Enderman.png",
73-
alt: "Minecraft Enderman",
74-
},
75-
{
76-
src: "https://upload.wikimedia.org/wikipedia/en/thumb/1/17/Minecraft_explore_landscape.png/375px-Minecraft_explore_landscape.png",
77-
alt: "Minecraft Landscape",
78-
},
79-
];
66+
const artImages: { src: string; alt: string }[] = [];
67+
// const artImages = [
68+
// {
69+
// src: "https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Minecraft_Zombie.png/120px-Minecraft_Zombie.png",
70+
// alt: "Minecraft Zombie",
71+
// },
72+
// {
73+
// src: "https://upload.wikimedia.org/wikipedia/commons/thumb/d/d8/Minecraft_Enderman.png/120px-Minecraft_Enderman.png",
74+
// alt: "Minecraft Enderman",
75+
// },
76+
// {
77+
// src: "https://upload.wikimedia.org/wikipedia/en/thumb/1/17/Minecraft_explore_landscape.png/375px-Minecraft_explore_landscape.png",
78+
// alt: "Minecraft Landscape",
79+
// },
80+
// ];
8081

8182
return (
8283
<div className="min-h-screen bg-background font-sans text-foreground">

0 commit comments

Comments
 (0)