diff --git a/src/components/InteractiveIndex.tsx b/src/components/InteractiveIndex.tsx index 7886fbd..609b2ab 100644 --- a/src/components/InteractiveIndex.tsx +++ b/src/components/InteractiveIndex.tsx @@ -181,6 +181,15 @@ const allInteractives: Interactive[] = [ theme: 'Puzzles', 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', title: 'N-Queens Puzzle',