[frontend]: Add help page

This commit is contained in:
2025-04-03 03:07:14 +01:00
parent 207dbf493e
commit 46f5973ee5
3 changed files with 125 additions and 0 deletions

View File

@ -4,6 +4,7 @@ import Cookies from "js-cookie";
import Navbar from "./components/Navbar";
import Statistics from "./components/Statistics.jsx";
import Help from "./components/Help.jsx";
import Sidebar from "./components/Sidebar";
import MapComponent from "./components/MapComponent";
@ -492,6 +493,7 @@ function App() {
}
/>
<Route path="/statistics" element={<Statistics />} />
<Route path="/help" element={<Help />} />
</Routes>
</Router>
);