diff --git a/src/app/games/page.tsx b/src/app/games/page.tsx index 9933b6b..f910308 100644 --- a/src/app/games/page.tsx +++ b/src/app/games/page.tsx @@ -14,7 +14,7 @@ const Gamez = (): JSX.Element => {

See how Naomi has appeared in various games.

- {Games.map((game) => ( + {Games.sort((a, b) => a.name.localeCompare(b.name)).map((game) => ( ))}
diff --git a/src/components/game.tsx b/src/components/game.tsx index 81493e6..76151ec 100644 --- a/src/components/game.tsx +++ b/src/components/game.tsx @@ -22,7 +22,7 @@ export const Game = (props: GameProps): JSX.Element => { alt={name} width={250} height={250} - className="m-auto" + className="m-auto object-contain max-h-[250px] max-w-[250px]" /> diff --git a/src/config/Games.ts b/src/config/Games.ts index 0840455..609ab5e 100644 --- a/src/config/Games.ts +++ b/src/config/Games.ts @@ -21,5 +21,29 @@ export const Games: { { name: "Idling to Rule the Gods", img: "idling-god.png" + }, + { + name: "Nioh 2", + img: "nioh-2.jpg" + }, + { + name: "Deathly Stillness", + img: "deathly-stillness.jpg" + }, + { + name: "Once Human", + img: "once-human.jpg" + }, + { + name: "Fallout 4", + img: "fallout-4.jpg" + }, + { + name: "Guild Wars 2", + img: "gw2.png" + }, + { + name: "Neverwinter Nights", + img: "nwn.jpg" } ]