Refactor FloorSelect, SequenceSlider, and ProjectSelect components to use ComplexName type; update buildingType in projects data and add new HQ project. Enhance SearchFilters and FloorsPage for better UI consistency and functionality.

This commit is contained in:
2026-01-21 17:21:38 +05:00
parent 6b81b2995b
commit e5b0dc99a6
262 changed files with 685 additions and 488 deletions
+10
View File
@@ -5,6 +5,7 @@ export const projects: Project[] = [
title: "Rove Home Marasi Drive",
slug: "marasi-drive",
img: "/images/search/rove_home_marasi_drive.png",
buildingType: "residential",
types: [
{
name: "Studio Flex",
@@ -598,6 +599,7 @@ export const projects: Project[] = [
title: "Rove Home Dubai Marina",
slug: "dubai-marina",
img: "/images/search/rove_home_dubai_marina.png",
buildingType: "residential",
types: [
{
name: "Studio² Type A",
@@ -1986,4 +1988,12 @@ export const projects: Project[] = [
},
],
},
{
title: "Rove Home HQ",
slug: "hq",
img: "/images/search/rove_home_hq.png",
buildingType: "commercial",
types: [],
amentiesFloors: [],
}
];