@@ -4,16 +4,16 @@ import {BrowserRouter, Routes, Route} from "react-router-dom"
44import Home from "./components/Home"
55import Login from "./components/Login"
66import Dashboard from "./components/Dashboard"
7- import UploadNotes from "./components/UploadNotes" ;
87import Navbar from "./components/Navbar" ;
98import Landingpage from "./components/Landingpage" ;
109import About from "./components/About" ;
1110import Team from "./components/Team" ;
1211import Studyplanner from "./components/Studyplanner" ;
1312import Features from "./components/Features" ;
14- import Upload from "./components/Upload" ;
15- import Uploadpyq from "./components/Uploadpyq" ;
1613import Uploadsyllabus from "./components/Uploadsyllabus" ;
14+ import Uploadnote from "./components/Uploadnote" ;
15+
16+
1717function App ( ) {
1818 return (
1919 < div className = "container" >
@@ -22,7 +22,7 @@ function App() {
2222 < Route path = "/" element = { < Landingpage /> } />
2323 < Route path = "/home" element = { < Home /> } />
2424 < Route path = "/dashboard" element = { < Dashboard /> } />
25- < Route path = "/uploadnotes" element = { < UploadNotes /> } />
25+
2626 < Route path = "/Navbar" element = { < Navbar /> } />
2727
2828 < Route path = "/landing" element = { < Landingpage /> } />
@@ -31,9 +31,10 @@ function App() {
3131 < Route path = "/studyplanner" element = { < Studyplanner /> } />
3232 < Route path = "/features" element = { < Features /> } />
3333 < Route path = "/login" element = { < Login /> } />
34- < Route path = "/upload" element = { < Upload /> } />
35- < Route path = "/uploadpyq" element = { < Uploadpyq /> } />
34+
35+
3636 < Route path = "/uploadsyllabus" element = { < Uploadsyllabus /> } />
37+ < Route path = "/uploadnote" element = { < Uploadnote /> } />
3738 </ Routes >
3839 </ BrowserRouter >
3940 </ div >
0 commit comments