@@ -4,16 +4,16 @@ import {BrowserRouter, Routes, Route} from "react-router-dom"
4
4
import Home from "./components/Home"
5
5
import Login from "./components/Login"
6
6
import Dashboard from "./components/Dashboard"
7
- import UploadNotes from "./components/UploadNotes" ;
8
7
import Navbar from "./components/Navbar" ;
9
8
import Landingpage from "./components/Landingpage" ;
10
9
import About from "./components/About" ;
11
10
import Team from "./components/Team" ;
12
11
import Studyplanner from "./components/Studyplanner" ;
13
12
import Features from "./components/Features" ;
14
- import Upload from "./components/Upload" ;
15
- import Uploadpyq from "./components/Uploadpyq" ;
16
13
import Uploadsyllabus from "./components/Uploadsyllabus" ;
14
+ import Uploadnote from "./components/Uploadnote" ;
15
+
16
+
17
17
function App ( ) {
18
18
return (
19
19
< div className = "container" >
@@ -22,7 +22,7 @@ function App() {
22
22
< Route path = "/" element = { < Landingpage /> } />
23
23
< Route path = "/home" element = { < Home /> } />
24
24
< Route path = "/dashboard" element = { < Dashboard /> } />
25
- < Route path = "/uploadnotes" element = { < UploadNotes /> } />
25
+
26
26
< Route path = "/Navbar" element = { < Navbar /> } />
27
27
28
28
< Route path = "/landing" element = { < Landingpage /> } />
@@ -31,9 +31,10 @@ function App() {
31
31
< Route path = "/studyplanner" element = { < Studyplanner /> } />
32
32
< Route path = "/features" element = { < Features /> } />
33
33
< Route path = "/login" element = { < Login /> } />
34
- < Route path = "/upload" element = { < Upload /> } />
35
- < Route path = "/uploadpyq" element = { < Uploadpyq /> } />
34
+
35
+
36
36
< Route path = "/uploadsyllabus" element = { < Uploadsyllabus /> } />
37
+ < Route path = "/uploadnote" element = { < Uploadnote /> } />
37
38
</ Routes >
38
39
</ BrowserRouter >
39
40
</ div >
0 commit comments