diff --git a/src/consts/initialMasterplanFilters.ts b/src/consts/initialMasterplanFilters.ts
index 2e73725..715df19 100644
--- a/src/consts/initialMasterplanFilters.ts
+++ b/src/consts/initialMasterplanFilters.ts
@@ -31,16 +31,30 @@ const initialSliders: IMultirangeSlider[] = [
},
];
-const initialCheckboxes: ICheckbox[] = [
+const initialAparmentTypeCheckboxes: ICheckbox[] = [
{ title: "Studio Flex", id: "1", disabled: true, selected: false },
{ title: "Studio", id: "2", selected: false },
{ title: "1 Bedroom", id: "3", selected: false },
{ title: "2 Bedroom", id: "4", selected: false },
];
+const initialViewCheckboxes: ICheckbox[] = [
+ { title: "Burj Khalifa", id: "1", disabled: true, selected: false },
+ { title: "Amenties", id: "2", selected: false },
+ { title: "Downtown", id: "3", selected: false },
+ { title: "Canal", id: "4", selected: false },
+ { title: "Business Bay", id: "5", selected: false },
+ { title: "Park", id: "6", selected: false },
+];
+
const initialSwitchers: ISwitcher[] = [
{ id: "1", title: "Not the first floor", isSwitched: false },
{ id: "2", title: "Not the top floor", isSwitched: false },
];
-export { initialCheckboxes, initialSliders, initialSwitchers };
+export {
+ initialAparmentTypeCheckboxes,
+ initialSliders,
+ initialSwitchers,
+ initialViewCheckboxes,
+};
diff --git a/src/index.css b/src/index.css
index 0eefd44..e1b1a06 100644
--- a/src/index.css
+++ b/src/index.css
@@ -82,6 +82,7 @@ html {
.mobile-subheadline-m {
}
+
.rubber-headline-indent {
text-indent: clamp(209px, -0.4197rem + 16.8396vw, 842px);
}
diff --git a/src/pages/SearchApartment.tsx b/src/pages/SearchApartment.tsx
index 32f04e9..cb722a5 100644
--- a/src/pages/SearchApartment.tsx
+++ b/src/pages/SearchApartment.tsx
@@ -3,11 +3,12 @@ import ButtonPanel from "../components/searchApartment/ButtonPanel";
import ApartmentLayout from "../components/searchApartment/ApartmentLayout";
import ApartmentSidebar from "../components/searchApartment/ApartmentSidebar";
import SimilarSlider from "../components/searchApartment/SimilarSlider";
+import StudioDescriptionSection from "../components/searchApartment/StudioDescriptionSection";
const SearchApartment = () => {
return (
-
+
@@ -15,6 +16,9 @@ const SearchApartment = () => {
+
+
+