feat(auth): add registration page

This commit is contained in:
shafin-r
2026-03-09 15:05:09 +06:00
parent 8dbadae58c
commit b5edb3554f
6 changed files with 523 additions and 3 deletions

View File

@ -22,6 +22,7 @@ import { HardTestModules } from "./pages/student/hard-test-modules/page";
import { Analytics } from "./pages/student/Analytics";
import { QuestMap } from "./pages/student/QuestMap";
import ErrorPage from "./pages/ErrorPage";
import { Register } from "./pages/auth/Register";
function App() {
const router = createBrowserRouter([
@ -29,6 +30,10 @@ function App() {
path: "/login",
element: <Login />,
},
{
path: "/register",
element: <Register />,
},
{
path: "/student",
element: <ProtectedRoute />,