Fix:Added route for Custom NotFoundPage

This commit is contained in:
2025-02-26 18:03:05 +05:30
parent 9c5a000555
commit 88cd92a159
+2 -3
View File
@@ -4,18 +4,17 @@ import Login from "./pages/Authentication/Login";
import SignUp from "./pages/Authentication/SignUp";
import DrivethruLandingPage from "./pages/UserPages/DrivethruLandingPage";
import Dashboard from "./pages/UserPages/Dashboard";
import NotFoundPage from "./pages/UserPages/NotFoundPage";
function App() {
return (
<Router>
<Routes>
{/* Landing Page at root ("/") */}
<Route path="/" element={<DrivethruLandingPage />} />
{/* Login Page at "/login" */}
<Route path="/login" element={<Login />} />
<Route path="/signup" element={<SignUp />} />
<Route path="/Dashboard" element={<Dashboard />} />
<Route path="*" element={<NotFoundPage />} />
</Routes>
</Router>
);