Skip to content
Closed
166 changes: 76 additions & 90 deletions client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@faker-js/faker": "^7.3.0",
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-brands-svg-icons": "^6.2.0",
"@fortawesome/free-regular-svg-icons": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.1.18",
"@fortawesome/free-regular-svg-icons": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.8.5",
"@mui/styled-engine-sc": "^5.8.0",
Expand Down Expand Up @@ -79,7 +79,7 @@
"prettier": "2.7.1",
"prettier-eslint-cli": "^6.0.1",
"rollup-plugin-visualizer": "^5.8.3",
"tailwindcss": "^3.1.8",
"tailwindcss": "^3.2.2",
"terser": "^5.15.1",
"vite": "^3.1.8"
}
Expand Down
3 changes: 2 additions & 1 deletion client/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { lazy, Suspense } from "react";
import { BrowserRouter, Navigate, Route, Routes } from "react-router-dom";
import { ErrorBoundary } from "react-error-boundary";
import NavigationBar from "./components/navbar/NavigationBar";
import Footer from "./components/footer/Footer";

import { ErrorState, LoadingState } from "./components/states";

Expand All @@ -27,7 +28,7 @@ function App() {
</Routes>
</Suspense>
</ErrorBoundary>
{/* Add Footer */}
<Footer/ >
</BrowserRouter>
);
}
Expand Down
Loading