2025-02-13 10:47:54 -07:00
parent a7df0b4d30
commit e157ae4414
5 changed files with 16 additions and 2 deletions

View File

@@ -8,6 +8,7 @@ import PageNotFound from "../pages/PageNotFound";
import Graph from "../pages/Graph";
import Login from "../pages/Login";
import Logout from "../pages/Logout";
import HowToUse from "../pages/HowToUse";
const AllRoutes = () => {
return (
@@ -26,6 +27,7 @@ const AllRoutes = () => {
{/* Common routes */}
<Route path="/" element={<Landing />} />
<Route path="/how-to" element={<HowToUse />} />
{/* 404 */}
<Route path="/page-not-found" element={<PageNotFound />} />