Fix Craps game page link

This commit is contained in:
gpt-engineer-app[bot] 2025-09-05 04:57:25 +00:00
parent 36d3b20bff
commit f71baee308

View file

@ -55,6 +55,7 @@ import BulgarianSolitairePage from './pages/BulgarianSolitairePage';
import SubtractionGamePage from './pages/SubtractionGamePage'; import SubtractionGamePage from './pages/SubtractionGamePage';
import StackingBlocksPage from './pages/StackingBlocksPage'; import StackingBlocksPage from './pages/StackingBlocksPage';
import ParityBitsGamePage from './pages/ParityBitsGamePage'; import ParityBitsGamePage from './pages/ParityBitsGamePage';
import CrapsGamePage from './pages/CrapsGamePage';
const queryClient = new QueryClient(); const queryClient = new QueryClient();
@ -85,6 +86,7 @@ const App = () => (
<Route path="/themes/data-structures" element={<DataStructures />} /> <Route path="/themes/data-structures" element={<DataStructures />} />
<Route path="/themes/games" element={<Games />} /> <Route path="/themes/games" element={<Games />} />
<Route path="/themes/games/subtraction-game" element={<SubtractionGamePage />} /> <Route path="/themes/games/subtraction-game" element={<SubtractionGamePage />} />
<Route path="/themes/games/craps-game" element={<CrapsGamePage />} />
<Route path="/themes/games/sim" element={<GameOfSimPage />} /> <Route path="/themes/games/sim" element={<GameOfSimPage />} />
<Route path="/themes/cards-math" element={<CardsMath />} /> <Route path="/themes/cards-math" element={<CardsMath />} />
<Route path="/themes/puzzles" element={<Puzzles />} /> <Route path="/themes/puzzles" element={<Puzzles />} />