Update Sim game page

Add unique ID to Sim game and update link and QR code.
This commit is contained in:
gpt-engineer-app[bot] 2025-08-22 05:50:52 +00:00
parent e331c33aa7
commit 927c445677
2 changed files with 3 additions and 3 deletions

View file

@ -95,8 +95,8 @@ const App = () => (
<Route path="/balanced-ternary-game" element={<BalancedTernaryGamePage />} />
<Route path="/binary-search-trick" element={<BinarySearchTrickPage />} />
<Route path="/binary-search-trick/:mode" element={<BinarySearchTrickGreenScreen />} />
<Route path="/game-of-sim" element={<GameOfSimPage />} />
<Route path="/game-of-sim/:mode" element={<GameOfSimGreenScreen />} />
<Route path="/sim" element={<GameOfSimPage />} />
<Route path="/sim/:mode" element={<GameOfSimGreenScreen />} />
<Route path="/ternary-search-trick" element={<TernarySearchTrickPage />} />
<Route path="/ternary-search-trick/:mode" element={<TernarySearchTrickGreenScreen />} />
<Route path="/northcotts-game" element={<NorthcottsGamePage />} />

View file

@ -49,7 +49,7 @@ const games: Game[] = [
component: NimGame
},
{
id: 'game-of-sim',
id: 'sim',
title: 'Game of Sim',
description: 'A strategic two-player game where you take turns coloring edges between vertices, trying to avoid creating a triangle of your own color.',
tags: ['strategy', 'graph-theory', 'two-player', 'logic', 'game-theory'],