Skip to content

Commit 88cd32c

Browse files
authored
Merge pull request #4 from Sohum-Kapoor/main
Front End Addition
2 parents 3a888c5 + 906a1b4 commit 88cd32c

File tree

5 files changed

+773
-55
lines changed

5 files changed

+773
-55
lines changed

frontend/src/App.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import Login from './components/Login';
55
import Dashboard from './components/Dashboard';
66
import Navbar from './components/Navbar';
77
import PrivateRoute from './components/PrivateRoute';
8+
import LandingPage from './components/LandingPage'
89
import './App.css';
910

1011
function App() {
@@ -13,7 +14,7 @@ function App() {
1314
<AuthProvider>
1415
<div style={{ display: 'flex', flexDirection: 'column', minHeight: '100vh' }}>
1516
<Routes>
16-
<Route path="/" element={<Login />} />
17+
<Route path="/" element={<LandingPage />} />
1718
<Route
1819
path="/dashboard"
1920
element={

0 commit comments

Comments
 (0)