Create ValidationErrorPage

This commit is contained in:
T'JAMPENS QUENTIN p2406187
2025-12-15 16:49:07 +01:00
parent ddd0180933
commit 3051a0b2ca
4 changed files with 61 additions and 0 deletions
+5
View File
@@ -7,6 +7,7 @@ import RegisterPage from "./pages/Register/RegisterPage.jsx";
import VolunteersPage from "./pages/Volunteers/VolunteersPage";
import ProfilePage from "./pages/Profile/ProfilePage";
import EventsPage from "./pages/Events/EventsPage.jsx";
import ValidationErrorPage from "./pages/waitValidationPage/ValidationErrorPage.jsx";
const router = createBrowserRouter([
{
@@ -17,6 +18,10 @@ const router = createBrowserRouter([
path: "/register",
Component: RegisterPage,
},
{
path: "/error/validation",
Component: ValidationErrorPage
},
{
path: "/",
Component: Layout,