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"; function App() { return ( {/* Landing Page at root ("/") */} } /> {/* Login Page at "/login" */} } /> } /> ); } export default App;