From 43f4a8f9ce17f0d26cd7902b2acf669c362d65f6 Mon Sep 17 00:00:00 2001 From: atharvaombase Date: Wed, 26 Feb 2025 12:00:49 +0530 Subject: [PATCH] Feat:Added routes --- Frontend/src/App.jsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Frontend/src/App.jsx b/Frontend/src/App.jsx index 6d7ef96..ccccba1 100644 --- a/Frontend/src/App.jsx +++ b/Frontend/src/App.jsx @@ -1,8 +1,9 @@ import "./App.css"; -import DrivethruLandingPage from "./pages/DrivethruLandingPage"; import { BrowserRouter as Router, Routes, Route } from "react-router-dom"; import Login from "./pages/Authentication/Login"; import SignUp from "./pages/Authentication/SignUp"; +import DrivethruLandingPage from "./pages/UserPages/DrivethruLandingPage"; +import Dashboard from "./pages/UserPages/Dashboard"; function App() { return ( @@ -14,6 +15,7 @@ function App() { {/* Login Page at "/login" */} } /> } /> + } /> );