This commit is contained in:
2025-05-20 13:44:58 +05:00
parent 7f86711491
commit ca23bc30c5
7 changed files with 117 additions and 8 deletions
+5
View File
@@ -14,6 +14,7 @@ import SearchPage from "./pages/SearchPage.tsx";
import LayoutWithoutFooter from "./layout/LayoutWithoutFooter.tsx";
import { queryClient } from "./lib/queryClient.ts";
import AboutComplexPage from "./pages/AboutComplexPage.tsx";
import UnitTypeItemPage from "./pages/UnitTypeItemPage.tsx";
const route = createBrowserRouter([
{
@@ -23,6 +24,10 @@ const route = createBrowserRouter([
path: "/unit-types",
element: <UnitTypesPage />,
},
{
path: "/unit-types/:unitType",
element: <UnitTypeItemPage />,
},
{
path: "/about",
element: <AboutPage />,