diff --git a/src/components/Arcade/FeaturedGame.astro b/src/components/Arcade/FeaturedGame.astro index cb65edd..9f73a7f 100644 --- a/src/components/Arcade/FeaturedGame.astro +++ b/src/components/Arcade/FeaturedGame.astro @@ -33,7 +33,7 @@ const game = gameList[id];

diff --git a/src/components/Arcade/GameView.astro b/src/components/Arcade/GameView.astro index 5605afa..f200067 100644 --- a/src/components/Arcade/GameView.astro +++ b/src/components/Arcade/GameView.astro @@ -2,6 +2,7 @@ import gameList from "@/data/games.json"; import "./FeaturedGame.css"; import FriendsBelow, { type AssetName } from "../Util/FriendsBelow.astro"; +import { marked } from "marked"; type Props = { id: number; @@ -10,11 +11,16 @@ type Props = { const { id } = Astro.props; const game = gameList[id]; const sticker = game.sticker as AssetName; +const controlNames = Object.keys(game.controls) as any[]; +const controls = game.controls as any; ---
+ class="flex-col:flex-row flex h-full w-full items-center lg:justify-start"> +
+

{game.developer}

+