Add Stacking Blocks interactive

Add "Stacking Blocks" interactive to the Puzzles page. This new interactive is based on the description provided in the attached screenshots.
This commit is contained in:
gpt-engineer-app[bot] 2025-08-22 06:42:56 +00:00
parent 1adc590312
commit d352192c9e
5 changed files with 322 additions and 0 deletions

View file

@ -53,6 +53,7 @@ import RulesOfInferencePlaygroundPage from './pages/RulesOfInferencePlaygroundPa
import PebblePlacementGamePage from './pages/PebblePlacementGamePage';
import BulgarianSolitairePage from './pages/BulgarianSolitairePage';
import SubtractionGamePage from './pages/SubtractionGamePage';
import StackingBlocksPage from './pages/StackingBlocksPage';
const queryClient = new QueryClient();
@ -109,6 +110,7 @@ const App = () => (
<Route path="/puzzles/pebble-placement" element={<PebblePlacementGamePage />} />
<Route path="/puzzles/bulgarian-solitaire" element={<BulgarianSolitairePage />} />
<Route path="/subtraction-game" element={<SubtractionGamePage />} />
<Route path="/puzzles/stacking-blocks" element={<StackingBlocksPage />} />
<Route path="/puzzles/sikinia-parliament" element={<SikiniaParliamentPuzzlePage />} />
<Route path="/puzzles/plate-swap" element={<PlateSwapPuzzlePage />} />
<Route path="/puzzles/chessboard-repaint" element={<ChessboardRepaintPuzzlePage />} />