diff --git a/src/App.jsx b/src/App.jsx index 364238f..bb95594 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,13 +1,14 @@ import {createBrowserRouter, RouterProvider} from "react-router-dom"; import Root from "@/common/layouts/Root"; import routes from "@/common/routes"; +import footerRoutes from "@/common/routes/footer.jsx"; import NotFound from "@/pages/NotFound"; const router = createBrowserRouter([ { path: "/", element: , - children: routes, + children: [...routes, ...footerRoutes], errorElement: } ]);