Fix: Index page listing

The guessing game was not appearing in the overall index listing. This commit ensures it is correctly added to the index.
This commit is contained in:
gpt-engineer-app[bot] 2025-08-10 17:29:48 +00:00
parent 8a297107f6
commit 2b22dc0d95

View file

@ -181,6 +181,15 @@ const allInteractives: Interactive[] = [
theme: 'Puzzles', theme: 'Puzzles',
dateAdded: '2024-12-22' dateAdded: '2024-12-22'
}, },
{
id: 'guessing-game',
title: 'Number Guessing Game',
description: 'Experience different search algorithms through interactive gameplay. Compare random, linear, and binary search strategies!',
tags: ['algorithms', 'search', 'educational', 'interactive', 'binary-search', 'computer-science'],
path: '/games/guessing',
theme: 'Data Structures and Algorithms',
dateAdded: '2024-12-23'
},
{ {
id: 'n-queens', id: 'n-queens',
title: 'N-Queens Puzzle', title: 'N-Queens Puzzle',