diff --git a/src/pages/Index.tsx b/src/pages/Index.tsx index b943f53..a19dd5b 100644 --- a/src/pages/Index.tsx +++ b/src/pages/Index.tsx @@ -92,12 +92,12 @@ const allInteractives = [{ theme: 'Puzzles' }]; -// Featured interactives (3 fixed ones) -const featuredInteractives = allInteractives.filter(interactive => ['northcotts-game', 'ternary-search-trick', 'sikinia-parliament'].includes(interactive.id)); +// Featured interactives (4 fixed ones) +const featuredInteractives = allInteractives.filter(interactive => ['guessing-game', 'northcotts-game', 'ternary-search-trick', 'sikinia-parliament'].includes(interactive.id)); // Function to get random interactives (excluding featured ones) const getRandomInteractives = (count: number) => { - const availableInteractives = allInteractives.filter(interactive => !['northcotts-game', 'ternary-search-trick', 'sikinia-parliament'].includes(interactive.id)); + const availableInteractives = allInteractives.filter(interactive => !['guessing-game', 'northcotts-game', 'ternary-search-trick', 'sikinia-parliament'].includes(interactive.id)); const shuffled = [...availableInteractives].sort(() => 0.5 - Math.random()); return shuffled.slice(0, count); };