From 2b22dc0d95847a959d14583a5bf6a527d51ace1c Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Sun, 10 Aug 2025 17:29:48 +0000 Subject: [PATCH] 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. --- src/components/InteractiveIndex.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) 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',