From 45f984027e17189fa9174b656f00ae158bda6b30 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Mon, 11 Aug 2025 12:27:14 +0000 Subject: [PATCH] Remove one featured interactive Remove one featured interactive from the homepage to maintain a list of three. --- src/pages/Index.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pages/Index.tsx b/src/pages/Index.tsx index 9f38577..b943f53 100644 --- a/src/pages/Index.tsx +++ b/src/pages/Index.tsx @@ -92,12 +92,12 @@ const allInteractives = [{ theme: 'Puzzles' }]; -// Featured interactives (4 fixed ones - removed guessing-game) -const featuredInteractives = allInteractives.filter(interactive => ['northcotts-game', 'ternary-search-trick', 'sikinia-parliament', 'binary-search-trick'].includes(interactive.id)); +// Featured interactives (3 fixed ones) +const featuredInteractives = allInteractives.filter(interactive => ['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', 'binary-search-trick'].includes(interactive.id)); + const availableInteractives = allInteractives.filter(interactive => !['northcotts-game', 'ternary-search-trick', 'sikinia-parliament'].includes(interactive.id)); const shuffled = [...availableInteractives].sort(() => 0.5 - Math.random()); return shuffled.slice(0, count); };