about complex page created

This commit is contained in:
2025-05-05 13:05:19 +05:00
parent cffb9dff36
commit 34e249b8f8
4 changed files with 117 additions and 85 deletions
+5
View File
@@ -13,6 +13,7 @@ import FavoritesPage from "./pages/FavouritesPage.tsx";
import SearchPage from "./pages/SearchPage.tsx";
import LayoutWithoutFooter from "./layout/LayoutWithoutFooter.tsx";
import { queryClient } from "./lib/queryClient.ts";
import AboutComplexPage from "./pages/AboutComplexPage.tsx";
const route = createBrowserRouter([
{
@@ -51,6 +52,10 @@ const route = createBrowserRouter([
path: "/complex/:complexName/floors",
element: <FloorsPage />,
},
{
path: "/complex/:complexName/about",
element: <AboutComplexPage />,
},
],
},
]);