Update interactives listing and share link

This commit is contained in:
gpt-engineer-app[bot] 2025-09-05 06:18:30 +00:00
parent 975808f831
commit 461decff78
3 changed files with 9 additions and 2 deletions

View file

@ -561,7 +561,7 @@ const CrapsGame: React.FC<CrapsGameProps> = ({
</Card> </Card>
{showSocialShare && <div className="flex justify-center"> {showSocialShare && <div className="flex justify-center">
<SocialShare title="Craps: First Throw" description="Learn about probability through the classic casino game of craps!" url={`${window.location.origin}/craps-game`} /> <SocialShare title="Craps: An Exploration" description="Learn about probability through the classic casino game of craps!" url={`${window.location.origin}/themes/games/craps-game`} />
</div>} </div>}
</div>; </div>;
}; };

View file

@ -25,7 +25,7 @@ interface Game {
const games: Game[] = [ const games: Game[] = [
{ {
id: 'craps-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.', 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'], tags: ['probability', 'dice', 'casino', 'mathematics', 'statistics', 'gambling'],
component: CrapsGame component: CrapsGame

View file

@ -97,6 +97,13 @@ const allInteractives = [{
tags: ['graph-theory', 'logic', 'coloring'], tags: ['graph-theory', 'logic', 'coloring'],
path: '/puzzles/sikinia-parliament', path: '/puzzles/sikinia-parliament',
theme: 'Puzzles' 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) // Featured interactives (3 fixed ones)