add all informations in footer

This commit is contained in:
2026-01-13 20:09:37 +01:00
parent fe687db91c
commit 24a9055eea
7 changed files with 225 additions and 1 deletions
+10
View File
@@ -11,6 +11,8 @@ import ValidationErrorPage from "./pages/waitValidationPage/ValidationErrorPage.
import VolunteerProfilePage from "./pages/VolunteerProfile/VolunteerProfilePage.jsx";
import PageNotFound from "./pages/PageNotFound/PageNotFound.jsx";
import eventDetail from "./pages/eventDetail/eventDetail.jsx";
import legalNotices from "./pages/LegalNotices/LegalNotices.jsx";
import RGPD from "./pages/RGPD/RGPD.jsx";
const router = createBrowserRouter([
{
@@ -65,6 +67,14 @@ const router = createBrowserRouter([
path: "/events/:id",
Component: eventDetail,
},
{
path: "/legalNotices",
Component: legalNotices,
},
{
path: "/RGPD",
Component: RGPD,
},
]
}
])