Skip to content

Commit 225b98c

Browse files
authored
Merge pull request hack2skill#3 from ANGELOANTU7/harshed
navbar
2 parents 5789088 + 3b3c1dc commit 225b98c

File tree

15 files changed

+331
-284
lines changed

15 files changed

+331
-284
lines changed

Local_Storage/pyqs_text/1.pdf

985 KB
Binary file not shown.

Local_Storage/pyqs_text/2.pdf

985 KB
Binary file not shown.

Local_Storage/pyqs_text/3.pdf

985 KB
Binary file not shown.

Local_Storage/pyqs_text/4.pdf

985 KB
Binary file not shown.

Local_Storage/pyqs_text/5.pdf

985 KB
Binary file not shown.

client/package-lock.json

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"lottie-react": "^2.4.0",
2121
"react": "^18.2.0",
2222
"react-dom": "^18.2.0",
23+
"react-file-upload": "^0.0.4",
2324
"react-router-dom": "^6.11.2",
2425
"reactstrap": "^9.1.10",
2526
"recharts": "^2.6.2"

client/src/App.jsx

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@ import {BrowserRouter, Routes, Route} from "react-router-dom"
44
import Home from "./components/Home"
55
import Login from "./components/Login"
66
import Dashboard from "./components/Dashboard"
7-
import UploadNotes from "./components/UploadNotes";
87
import Navbar from "./components/Navbar";
98
import Landingpage from "./components/Landingpage";
10-
import Anav from "./components/Anav";
119
import About from "./components/About";
1210
import Team from "./components/Team";
1311
import Studyplanner from "./components/Studyplanner";
1412
import Features from "./components/Features";
13+
import Uploadsyllabus from "./components/Uploadsyllabus";
14+
import Uploadnote from "./components/Uploadnote";
15+
1516

1617
function App() {
1718
return (
@@ -21,16 +22,19 @@ function App() {
2122
<Route path="/" element={<Landingpage/>} />
2223
<Route path="/home" element={<Home/>} />
2324
<Route path="/dashboard" element={<Dashboard/>} />
24-
<Route path="/uploadnotes" element={<UploadNotes/>} />
25+
2526
<Route path="/Navbar" element={<Navbar/>} />
26-
<Route path="/Anav" element={<Anav/>} />
27+
2728
<Route path="/landing" element={<Landingpage/>} />
2829
<Route path="/about" element={<About/>} />
2930
<Route path="/team" element={<Team/>} />
3031
<Route path="/studyplanner" element={<Studyplanner/>} />
3132
<Route path="/features" element={<Features/>} />
3233
<Route path="/login" element={<Login/>} />
33-
34+
35+
36+
<Route path="/uploadsyllabus" element={<Uploadsyllabus/>} />
37+
<Route path="/uploadnote" element={<Uploadnote/>} />
3438
</Routes>
3539
</BrowserRouter>
3640
</div>

client/src/components/Aibot.jsx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import React from 'react'
2+
3+
const Aibot = () => {
4+
return (
5+
<div>
6+
7+
</div>
8+
)
9+
}
10+
11+
export default Aibot

client/src/components/Anav.jsx

Lines changed: 0 additions & 174 deletions
This file was deleted.

0 commit comments

Comments
 (0)