removed "/" from path

This commit is contained in:
Batyr 2025-05-21 18:09:14 +05:00
parent 632fc648c8
commit 9a114b90ca
1 changed files with 9 additions and 9 deletions

View File

@ -23,15 +23,15 @@ const router = createBrowserRouter([
path: "/",
children: [
{ element: <Home />, path: "" },
{ element: <About />, path: "/about" },
{ element: <B2b />, path: "/B2B-B2G" },
{ element: <BecomeSponsor />, path: "/become-sponsor" },
{ element: <StendForm />, path: "/stend-form" },
{ element: <Contacts />, path: "/contacts" },
{ element: <News />, path: "/news" },
{ element: <NewsInner />, path: "/news/:id" },
{ element: <Participants />, path: "/participants" },
{ element: <Media />, path: "/media" },
{ element: <About />, path: "about" },
{ element: <B2b />, path: "B2B-B2G" },
{ element: <BecomeSponsor />, path: "become-sponsor" },
{ element: <StendForm />, path: "stend-form" },
{ element: <Contacts />, path: "contacts" },
{ element: <News />, path: "news" },
{ element: <NewsInner />, path: "news/:id" },
{ element: <Participants />, path: "participants" },
{ element: <Media />, path: "media" },
],
},
]);