This commit is contained in:
amNobodyyy
2025-01-28 13:02:28 +05:30
parent ef4355dfb8
commit 203666a0da
3 changed files with 3 additions and 3 deletions

View File

@@ -19,7 +19,7 @@ function App() {
<Routes>
<Route path="/" element={<AuthPage />}></Route>
<Route path="/course-form/:id" element={<PrivateRoute element={<CourseForm />} />} />
<Route path="/Welcom" element={<PrivateRoute element={<WelcomeWithFilter />} />} />
<Route path="/Welcome" element={<PrivateRoute element={<WelcomeWithFilter />} />} />
<Route path="/Home" element={<HomePage />}></Route>
<Route path="/ForgetPw" element={<ForgetPwPage />}></Route>
<Route path="/ResetPw/:token" element={<ResetPwPage />}></Route>

View File

@@ -7,7 +7,7 @@ const Navbar = () => {
return (
<header className="navbar">
<div className="navbar-container">
<NavLink to="/Welcom">
<NavLink to="/Welcome">
<FaUserCircle className="user-icon" />
Appointment To Examiner
</NavLink>