feat(pages): add profile page

fix(ui): fix minor ui bugs on some pages
This commit is contained in:
shafin-r
2026-01-19 14:06:05 +06:00
parent d208a9336f
commit d5a39add17
11 changed files with 154 additions and 116 deletions

View File

@ -53,11 +53,11 @@ function App() {
},
{
path: "/",
element: <Navigate to="/student" replace />,
element: <Navigate to="/student/home" replace />,
},
{
path: "*",
element: <Navigate to="/student" replace />,
element: <Navigate to="/student/home" replace />,
},
]);