From 88cd92a15902768a9eede3f4ea9b824e97ba840a Mon Sep 17 00:00:00 2001 From: atharvaombase Date: Wed, 26 Feb 2025 18:03:05 +0530 Subject: [PATCH] Fix:Added route for Custom NotFoundPage --- Frontend/src/App.jsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Frontend/src/App.jsx b/Frontend/src/App.jsx index ccccba1..beaa1ba 100644 --- a/Frontend/src/App.jsx +++ b/Frontend/src/App.jsx @@ -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 ( - {/* Landing Page at root ("/") */} } /> - - {/* Login Page at "/login" */} } /> } /> } /> + } /> );