diff --git a/src/components/CrapsGame.tsx b/src/components/CrapsGame.tsx index e717f71..6d6b79c 100644 --- a/src/components/CrapsGame.tsx +++ b/src/components/CrapsGame.tsx @@ -561,7 +561,7 @@ const CrapsGame: React.FC = ({ {showSocialShare &&
- +
} ; }; diff --git a/src/components/GamesGallery.tsx b/src/components/GamesGallery.tsx index d602fa0..771cd47 100644 --- a/src/components/GamesGallery.tsx +++ b/src/components/GamesGallery.tsx @@ -25,7 +25,7 @@ interface Game { const games: Game[] = [ { id: 'craps-game', - title: 'Craps: First Throw', + 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'], component: CrapsGame diff --git a/src/pages/Index.tsx b/src/pages/Index.tsx index b4cd3f8..2083ef7 100644 --- a/src/pages/Index.tsx +++ b/src/pages/Index.tsx @@ -97,6 +97,13 @@ const allInteractives = [{ tags: ['graph-theory', 'logic', 'coloring'], path: '/puzzles/sikinia-parliament', theme: 'Puzzles' +}, { + 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' }]; // Featured interactives (3 fixed ones)