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 = () => (
} />
} />
+ {/* Direct interactive routes */}
+ } />
+
{/* ADD ALL CUSTOM ROUTES ABOVE THE CATCH-ALL "*" ROUTE */}
} />
diff --git a/src/pages/BinaryNumberGamePage.tsx b/src/pages/BinaryNumberGamePage.tsx
new file mode 100644
index 0000000..a4e524e
--- /dev/null
+++ b/src/pages/BinaryNumberGamePage.tsx
@@ -0,0 +1,29 @@
+import BinaryNumberGame from '@/components/BinaryNumberGame';
+import Navigation from '@/components/Navigation';
+import { Link } from 'react-router-dom';
+
+const BinaryNumberGamePage = () => {
+ return (
+
+
+
+
+
+
+ ← Back to School Connect
+
+
Binary Number Representation
+
+
+
+
+
+
+
+ );
+};
+
+export default BinaryNumberGamePage;
\ No newline at end of file