diff --git a/package-lock.json b/package-lock.json
index 134d859..8d97070 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -17,6 +17,7 @@
"jwt-decode": "^3.1.2",
"react": "^18.2.0",
"react-bootstrap": "^2.7.4",
+ "react-bootstrap-icons": "^1.10.3",
"react-dom": "^18.2.0",
"react-router-dom": "^6.11.2",
"react-scripts": "5.0.1",
@@ -14440,6 +14441,17 @@
}
}
},
+ "node_modules/react-bootstrap-icons": {
+ "version": "1.10.3",
+ "resolved": "https://registry.npmjs.org/react-bootstrap-icons/-/react-bootstrap-icons-1.10.3.tgz",
+ "integrity": "sha512-j4hSby6gT9/enhl3ybB1tfr1slZNAYXDVntcRrmVjxB3//2WwqrzpESVqKhyayYVaWpEtnwf9wgUQ03cuziwrw==",
+ "dependencies": {
+ "prop-types": "^15.7.2"
+ },
+ "peerDependencies": {
+ "react": ">=16.8.6"
+ }
+ },
"node_modules/react-dev-utils": {
"version": "12.0.1",
"resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-12.0.1.tgz",
diff --git a/package.json b/package.json
index f47938a..76df45b 100644
--- a/package.json
+++ b/package.json
@@ -12,6 +12,7 @@
"jwt-decode": "^3.1.2",
"react": "^18.2.0",
"react-bootstrap": "^2.7.4",
+ "react-bootstrap-icons": "^1.10.3",
"react-dom": "^18.2.0",
"react-router-dom": "^6.11.2",
"react-scripts": "5.0.1",
diff --git a/src/App copy.js b/src/App copy.js
new file mode 100644
index 0000000..b584cef
--- /dev/null
+++ b/src/App copy.js
@@ -0,0 +1,65 @@
+import logo from "./logo.svg";
+import "./App.css";
+import { BrowserRouter as Router, Route, Routes } from "react-router-dom";
+import Image from "react-bootstrap/Image";
+import IddrsImg from "./Static/Imgs/IDDRS.png";
+import Container from "react-bootstrap/esm/Container";
+import AppContext from "./AppContext";
+import PrivateRoute from "./Utiles/PrivateRoute";
+import Navbar_ from "./Components/Navbar/Navbar_";
+import { AuthProvider } from "./Context/AuthContext.js.old";
+import { URLProvider } from "./Context/URLContext";
+
+import Home from "./Pages/Home";
+import Levels from "./Pages/Levels";
+import Content from "./Pages/Content";
+import NewParagraph from "./Pages/NewParagraph";
+import Standards from "./Pages/Standards";
+import Details from "./Pages/Details";
+import Login from "./Pages/Login";
+
+function App() {
+ return (
+
- To view the content of each standard by choosing the desired - level and standard. Users can click on each piece of content to - view it or modify it. -
-- To add new paragraphs to the database to make them available for - searching. -
-- To show all levels. Users can enter new levels or modify - existing ones. -
-- To show all the standards ordered by levels. Users can modify or - add standards. -
-- In the home page, there is a pre-process button to make all the - modified and new entries searchable. The button only appears if - there are new paragraphs added. -
- - {newContentTracker.length > 0 && ( -