This commit is contained in:
2025-05-14 16:41:16 +05:00
40 changed files with 1089 additions and 605 deletions
+6 -9
View File
@@ -4,30 +4,27 @@ export const markers: IMarker[] = [
{
id: 1,
name: "downtown",
x: "56.7%",
y: "39.8%",
x: "54.2%",
y: "50.6%",
popupPosition: "left",
title: "Downtown",
unitsCount: 100,
disabled: true,
},
{
id: 2,
name: "marasi-drive",
x: "58.6%",
y: "42%",
x: "55.6%",
y: "52.5%",
popupPosition: "right",
title: "Marasi Drive",
unitsCount: 200,
},
{
id: 3,
name: "dubai-marina",
x: "22.5%",
y: "76%",
x: "35.35%",
y: "71.6%",
popupPosition: "right",
title: "Dubai Marina",
unitsCount: 300,
disabled: true,
},
];
File diff suppressed because one or more lines are too long
+6
View File
@@ -0,0 +1,6 @@
export const SORT_OPTIONS = {
"Sort by ascending price": "cost asc",
"Sort by descending price": "cost desc",
"Sort by ascending area": "sqft asc",
"Sort by descending area": "sqft desc",
};