diff --git a/client/src/App.tsx b/client/src/App.tsx
index 32692ce..e756366 100644
--- a/client/src/App.tsx
+++ b/client/src/App.tsx
@@ -10,6 +10,7 @@ import Solution from './pages/Solution.tsx';
import Profile from './pages/Profile.tsx';
import Editor from './pages/Editor.tsx';
import AddChallenge from "./pages/AddChallenge.tsx";
+import Admin from "./pages/Admin.tsx"
const NAV_CONFIG = {
@@ -78,6 +79,10 @@ const router = createBrowserRouter([
path: "editor",
element:
},
+ {
+ path: "admin",
+ element:
+ },
],
},
]);