From 31c019ff31814c0ff7f9e2709951d86fa9daed65 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Fri, 5 Sep 2025 06:24:24 +0000 Subject: [PATCH] Add craps game to index listing --- src/components/InteractiveIndex.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/components/InteractiveIndex.tsx b/src/components/InteractiveIndex.tsx index c9d15c6..4ecc3da 100644 --- a/src/components/InteractiveIndex.tsx +++ b/src/components/InteractiveIndex.tsx @@ -234,6 +234,15 @@ const allInteractives: Interactive[] = [ path: '/puzzles/stacking-blocks', theme: 'Puzzles', dateAdded: '2025-01-22' + }, + { + id: 'craps-game', + title: 'Craps: An Exploration', + description: 'Experience the classic casino dice game! Roll two dice and learn about probability as you discover the rules of the opening throw.', + tags: ['probability', 'dice', 'casino', 'mathematics', 'statistics', 'gambling'], + path: '/themes/games/craps-game', + theme: 'Games', + dateAdded: '2025-01-05' } ];