From 666de99364aafdffc7fee4b7f27827d483dc5cbf Mon Sep 17 00:00:00 2001
From: "gpt-engineer-app[bot]"
<159125892+gpt-engineer-app[bot]@users.noreply.github.com>
Date: Sat, 19 Jul 2025 13:36:52 +0000
Subject: [PATCH] Add direct interactive routes
Implement direct routes for interactives (e.g., `/school-connect/binary-number-game`).
---
src/App.tsx | 4 ++++
src/pages/BinaryNumberGamePage.tsx | 29 +++++++++++++++++++++++++++++
2 files changed, 33 insertions(+)
create mode 100644 src/pages/BinaryNumberGamePage.tsx
diff --git a/src/App.tsx b/src/App.tsx
index ece18eb..11ab660 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -14,6 +14,7 @@ import AdvancedAlgorithms from "./pages/theme-pages/AdvancedAlgorithms";
import DataStructures from "./pages/theme-pages/DataStructures";
import Games from "./pages/theme-pages/Games";
import CardsMath from "./pages/theme-pages/CardsMath";
+import BinaryNumberGamePage from "./pages/BinaryNumberGamePage";
import NotFound from "./pages/NotFound";
const queryClient = new QueryClient();
@@ -39,6 +40,9 @@ const App = () => (