46 lines
938 B
TypeScript
46 lines
938 B
TypeScript
import { LivingSpaceInfo } from "../livingSpace/pageInfo";
|
||
import { PartsPageInfo } from "../parts/pageInfo";
|
||
|
||
const BuildCategories = [
|
||
{
|
||
name: "BuildingPartPage",
|
||
title: {
|
||
tr: "Daireler",
|
||
en: "Flats",
|
||
},
|
||
icon: "DoorOpen",
|
||
url: "/building/parts",
|
||
pageInfo: PartsPageInfo,
|
||
allEndpoints: [],
|
||
subCategories: [],
|
||
},
|
||
{
|
||
name: "BuildingAreaPage",
|
||
title: {
|
||
tr: "Kullanılabilir Alanlar",
|
||
en: "Building Areas",
|
||
},
|
||
icon: "TreePine",
|
||
component: null,
|
||
url: "/building/areas",
|
||
pageInfo: null,
|
||
allEndpoints: [],
|
||
subCategories: [],
|
||
},
|
||
{
|
||
name: "LivingSpacePage",
|
||
title: {
|
||
tr: "Yaşayan Kişiler",
|
||
en: "Living People",
|
||
},
|
||
icon: "UsersRound",
|
||
url: "/building/living-space",
|
||
component: "LivingSpacePage",
|
||
pageInfo: LivingSpaceInfo,
|
||
allEndpoints: [],
|
||
subCategories: [],
|
||
},
|
||
];
|
||
|
||
export { BuildCategories };
|