chore: couple more games (#20)

Reviewed-on: https://codeberg.org/nhcarrigan/portfolio/pulls/20
Co-authored-by: Naomi Carrigan <commits@nhcarrigan.com>
Co-committed-by: Naomi Carrigan <commits@nhcarrigan.com>
This commit is contained in:
2024-10-05 05:59:50 +00:00
committed by Naomi the Technomancer
parent b4bdbd797e
commit 135e22778e
3 changed files with 26 additions and 2 deletions

View File

@ -14,7 +14,7 @@ const Gamez = (): JSX.Element => {
<p className="mb-2">See how Naomi has appeared in various games.</p>
<Rule />
<div className="grid sm:grid-cols-2 lg:grid-cols-3 grid-cols-1 gap-y-5">
{Games.map((game) => (
{Games.sort((a, b) => a.name.localeCompare(b.name)).map((game) => (
<Game key={game.name} name={game.name} img={game.img} />
))}
</div>