diff --git a/src/components/BackButton.tsx b/src/components/BackButton.tsx index 5440298..a4b1364 100644 --- a/src/components/BackButton.tsx +++ b/src/components/BackButton.tsx @@ -10,14 +10,14 @@ const BackButton = ({ title = "", onClick, className }: BackButtonProps) => { return ( ); }; diff --git a/src/components/HintThreeDTour.tsx b/src/components/HintThreeDTour.tsx index 0dbe91e..0ff10d4 100644 --- a/src/components/HintThreeDTour.tsx +++ b/src/components/HintThreeDTour.tsx @@ -19,7 +19,7 @@ const HintThreeDTour = ({ } ${className ? className : ""}`} > -

اختر غرفة لبدء الجولة ثلاثية الأبعاد

+

Choose a room to start the 3D tour

{onClose && (
diff --git a/src/components/HouseItem.tsx b/src/components/HouseItem.tsx index c8fa5b9..adc90a3 100644 --- a/src/components/HouseItem.tsx +++ b/src/components/HouseItem.tsx @@ -24,34 +24,6 @@ const HouseItem = ({ villa }: HouseItemProps) => { return (
-
-
-
-

{villa.type}

-

النوع

-
-
-

{villa.plotArea}

-

- مساحة الأرض (متر مربع) -

-
-
-

{villa.totalBuildUpArea}

-

- مساحة الفيلا (متر مربع) -

-
-
-

{villa.totalCountBedroms}

-

غرف النوم

-
-
-

{villa.villaTheme}

-

تصميم واجهة الفيلا

-
-
-
{villa?.perspectiveWorkings[0]?.image && ( @@ -64,13 +36,29 @@ const HouseItem = ({ villa }: HouseItemProps) => { )}
+
+
+

Type

+

Plot area, m2

+

Unit area, m2

+

Bedrooms

+

Villa Theme

+
+
+
{villa.type}
+
{villa.plotArea}
+
{villa.totalBuildUpArea}
+
{villa.totalCountBedroms}
+
{villa.villaTheme}
+
+
- +
); diff --git a/src/components/ImagesButton.tsx b/src/components/ImagesButton.tsx index 94e2a34..456389d 100644 --- a/src/components/ImagesButton.tsx +++ b/src/components/ImagesButton.tsx @@ -11,7 +11,7 @@ const ImagesButton = ({ onClick }: ImagesButtonProps) => { className="bg-white py-[6px] pr-5 pl-4 rounded-full border border-[#C7BDBA] flex gap-1 items-center hover:bg-secondary transition-all duration-200 h-10 " > - الصور + Images ); }; diff --git a/src/components/LayoutButton.tsx b/src/components/LayoutButton.tsx index ac99490..e5adb1d 100644 --- a/src/components/LayoutButton.tsx +++ b/src/components/LayoutButton.tsx @@ -11,7 +11,7 @@ const LayoutButton = ({ onClick }: LayoutButtonProps) => { className="bg-white py-[6px] pr-5 pl-4 rounded-full border border-[#C7BDBA] text-[16px] flex gap-1 justify-center items-center hover:bg-secondary transition-all duration-200 h-10" > - المخطط + Layout ); }; diff --git a/src/components/LayoutToggle.tsx b/src/components/LayoutToggle.tsx index 3a3a411..1c86426 100644 --- a/src/components/LayoutToggle.tsx +++ b/src/components/LayoutToggle.tsx @@ -23,7 +23,7 @@ const LayoutToggle = ({ onClick={() => setCurrentView(1)} > {" "} - الطابق الأرضي + Ground Floor
setCurrentView(2)} > {" "} - الطابق الأول + First Floor
setCurrentView(3)} > {" "} - موقف السيارات + Parking
diff --git a/src/components/UnitList.tsx b/src/components/UnitList.tsx index 2e16ee3..3c8b9c0 100644 --- a/src/components/UnitList.tsx +++ b/src/components/UnitList.tsx @@ -10,11 +10,11 @@ const UnitList = ({ units, startIndex = 0 }: UnitListProps) => {
-
-
المساحة (م)
-
الوحدة
-
+
+
Unit
+
Area (m)
+
{units.map((unit, index) => (
{ index % 2 === 0 ? "bg-[#EAE5E0] rounded-lg" : "" }`} > -
-
{unit.value}
-
{unit.title}
-
{startIndex + index + 1}
+
+
{unit.title}
+
{unit.value}
+
))}
diff --git a/src/components/ViewToggle.tsx b/src/components/ViewToggle.tsx index 6ad4c3d..42dd217 100644 --- a/src/components/ViewToggle.tsx +++ b/src/components/ViewToggle.tsx @@ -62,7 +62,7 @@ const ViewToggle = ({ offset, isDesktop }: ViewSwitcherProps) => { } py-2 px-3 text-[14px] w-full sm:w-fit rounded-[32px]`} > {" "} - خارج الفيلا + Outdoor
{ } py-2 px-3 w-full sm:w-fit rounded-[32px] `} > {" "} - الطابق الأرضي + Ground Floor
{ } py-2 px-3 w-full sm:w-fit rounded-[32px] `} > {" "} - الطابق الأول + First Floor
diff --git a/src/components/desktop/Appartment/ButtonPanel.tsx b/src/components/desktop/Appartment/ButtonPanel.tsx index afc4735..f696936 100644 --- a/src/components/desktop/Appartment/ButtonPanel.tsx +++ b/src/components/desktop/Appartment/ButtonPanel.tsx @@ -57,9 +57,15 @@ const ButtonPanel = ({ handleFullscreen }: ButtonPanelProps) => { return (
-
- +
+ +
+
+ {currentView !== 1 && !is3DTour && } +
+
+ { handleOnHelpClick={handleOnResizeClick} />
-
- {currentView !== 1 && !is3DTour && } -
-
- -
); }; @@ -105,13 +105,13 @@ const GoBackButton = () => { {is3DTour || currentView !== 1 ? ( ) : ( )} diff --git a/src/components/desktop/Appartment/ControlHelpModal/ControlHelpModal.tsx b/src/components/desktop/Appartment/ControlHelpModal/ControlHelpModal.tsx index c8429f6..d34e463 100644 --- a/src/components/desktop/Appartment/ControlHelpModal/ControlHelpModal.tsx +++ b/src/components/desktop/Appartment/ControlHelpModal/ControlHelpModal.tsx @@ -6,7 +6,7 @@ import StartThreeDTourHelpModal from "./StartThreeDTourHelpModal"; import ThreeDTourHelpModal from "./ThreeDTourHelpModal"; import TouchScreenHelpModal from "./TouchScreenHelpModal"; -const views = ["خارج الفيلا", "الطابق الأرضي", "الطابق الأول"]; +const views = ["Outdoor", "Ground Floor", "First Floor"]; const ControlHelpModal = () => { const { currentView, setModal, is3DTour } = useStore(); diff --git a/src/components/desktop/Appartment/ControlHelpModal/LookAroundButton.tsx b/src/components/desktop/Appartment/ControlHelpModal/LookAroundButton.tsx index 8b2dc34..a6c642b 100644 --- a/src/components/desktop/Appartment/ControlHelpModal/LookAroundButton.tsx +++ b/src/components/desktop/Appartment/ControlHelpModal/LookAroundButton.tsx @@ -8,7 +8,7 @@ const LookAroundButton = ({ onClick }: LookAroundButtonProps) => { className="bg-[#333] text-white px-6 py-[10px] w-fit rounded-full" onClick={onClick} > - انظر حولك + Look around ); }; diff --git a/src/components/desktop/Appartment/ControlHelpModal/StartThreeDTourHelpModal.tsx b/src/components/desktop/Appartment/ControlHelpModal/StartThreeDTourHelpModal.tsx index dc06993..cedfec1 100644 --- a/src/components/desktop/Appartment/ControlHelpModal/StartThreeDTourHelpModal.tsx +++ b/src/components/desktop/Appartment/ControlHelpModal/StartThreeDTourHelpModal.tsx @@ -16,31 +16,32 @@ const StartThreeDTourHelpModal = ({
- -
+
{currentViewTitle}
+
-

- تعليمات التحكم -

-
-
استمر بالضغط على زر الماوس الأيسر لتحريك المشهد
+

Control Help

+
{" "}
+
+ Click and hold the left mouse +
button to look around +
-
-
قم باختيار نقطة متاحة لبدء الجولة ثلاثية الأبعاد
+
{" "}
+
+ Select an available point
to start the 3D tour +
-
- -
+
); diff --git a/src/components/desktop/Appartment/ControlHelpModal/ThreeDTourHelpModal.tsx b/src/components/desktop/Appartment/ControlHelpModal/ThreeDTourHelpModal.tsx index b0287ef..69791d1 100644 --- a/src/components/desktop/Appartment/ControlHelpModal/ThreeDTourHelpModal.tsx +++ b/src/components/desktop/Appartment/ControlHelpModal/ThreeDTourHelpModal.tsx @@ -16,34 +16,34 @@ const ThreeDTourHelpModal = ({
-
{currentViewTitle}
+
-
-

- تعليمات التحكم -

-
-
استمر بالضغط على زر الماوس الأيسر لتحريك المشهد
+
+

Control Help

+
{" "}
-
-
- ضع المؤشر على جزء من الأرضية وانقر زر الماوس الأيسر للتنقل + Click and hold the left mouse +
button to look around
+
+
{/* {" "} */} {" "}
+
+ Place the cursor on a section of the floor and click the left + mouse button to move around the 3D scene +
-
- -
+
); diff --git a/src/components/desktop/Appartment/ParameterDescription.tsx b/src/components/desktop/Appartment/ParameterDescription.tsx index aece372..efa0993 100644 --- a/src/components/desktop/Appartment/ParameterDescription.tsx +++ b/src/components/desktop/Appartment/ParameterDescription.tsx @@ -5,31 +5,35 @@ const ParameterDescription = () => { return (
-
-
-
{currentVilla && currentVilla.plotArea}
-
مساحة الأرض (متر مربع)
-
-
-
{currentVilla && currentVilla.totalBuildUpArea}
-
مساحة الفيلا (متر مربع)
-
-
-
-
-
-
{currentVilla && currentVilla.villaTheme}
-
تصميم واجهة الفيلا
-
-
-
{currentVilla && currentVilla.totalCountBedroms}
-
غرف النوم
-
-
-

{currentVilla && currentVilla.type}

+
+
+
+
Villa Theme
+
{currentVilla && currentVilla.villaTheme}
+
+
+
Total no. of Bedrooms
+
{currentVilla && currentVilla.totalCountBedroms}
+
+
+
+
+
+
+ Plot area, m2 +
+
{currentVilla && currentVilla.plotArea}
+
+
+
+ Total Build up Area, m2 +
+
{currentVilla && currentVilla.totalBuildUpArea}
+
+
); }; diff --git a/src/components/desktop/Main/HouseList.tsx b/src/components/desktop/Main/HouseList.tsx index d97686a..089e401 100644 --- a/src/components/desktop/Main/HouseList.tsx +++ b/src/components/desktop/Main/HouseList.tsx @@ -4,7 +4,6 @@ import { VILLAS } from "../../../consts/villas"; const HouseList = () => { return (
-
اختر فيلا
{VILLAS.map((villa) => { return ; diff --git a/src/components/mobile/Appartment/ButtomPanelModal.tsx b/src/components/mobile/Appartment/ButtomPanelModal.tsx index 90056ef..73eae17 100644 --- a/src/components/mobile/Appartment/ButtomPanelModal.tsx +++ b/src/components/mobile/Appartment/ButtomPanelModal.tsx @@ -100,7 +100,7 @@ export default function ButtomPanelModal() { className="border flex w-full py-3 justify-center rounded-full" onClick={handleOnClose} > - للخلف + Back
diff --git a/src/components/mobile/Appartment/Parameters.tsx b/src/components/mobile/Appartment/Parameters.tsx index 0c523c1..b1b201f 100644 --- a/src/components/mobile/Appartment/Parameters.tsx +++ b/src/components/mobile/Appartment/Parameters.tsx @@ -5,17 +5,17 @@ const Parameters = () => { return (
-

القيم

+

Parameters

-
النوع
+
Type
{currentVilla && currentVilla.type}
- مساحة الأرض (متر مربع) + Plot area m2
{currentVilla && currentVilla.plotArea} @@ -23,7 +23,7 @@ const Parameters = () => {
- مساحة الفيلا (متر مربع) + Unit Area, m2
{currentVilla && currentVilla.totalBuildUpArea} @@ -31,7 +31,7 @@ const Parameters = () => {
- عدد غرف النوم + Total no. of Bedrooms
{currentVilla && currentVilla.totalCountBedroms} @@ -39,7 +39,7 @@ const Parameters = () => {
- تصميم واجهة الفيلا + Villa Theme
{currentVilla && currentVilla.villaTheme} diff --git a/src/components/mobile/Appartment/PopupModal.tsx b/src/components/mobile/Appartment/PopupModal.tsx index e324201..b17d519 100644 --- a/src/components/mobile/Appartment/PopupModal.tsx +++ b/src/components/mobile/Appartment/PopupModal.tsx @@ -33,29 +33,96 @@ const PopupModal = () => { isVisible ? "opacity-100" : "opacity-0" }`} > -
+
+

Control Help

-

- تعليمات التحكم -

-
+
-
أنقر على الأرض للتنقل من مكان لأخر
{" "}
+
+ Press the floor to move in 3D space +
أنقر على الأرض للتنقل من مكان لأخر +
-
حرك الشاشة بأصبعك نحو اليمين أو اليسار لتحريك المشهد
{" "}
+
+ Rotate the camera by swiping the screen
حرك الشاشة بأصبعك + نحو اليمين أو اليسار لتحريك المشهد +
+ {/*
+
+
+
+ +
+
+
+ Tap on the floor to move in 3D space. +
+ {popups.length === index + 1 ? ( + + ) : ( + + )} +
+
+
+
*/} + {/* {popups.map((popup, index) => ( +
+
+
+
{popup.icon}
+
+
{popup.title}
+ {popups.length === index + 1 ? ( + + ) : ( + + )} +
+
+
+
+ ))} */} ); }; diff --git a/src/components/mobile/Main/KnowMoreButton.tsx b/src/components/mobile/Main/KnowMoreButton.tsx index 303c707..59b089c 100644 --- a/src/components/mobile/Main/KnowMoreButton.tsx +++ b/src/components/mobile/Main/KnowMoreButton.tsx @@ -8,10 +8,10 @@ const KnowMoreButton = ({ onClick }: KnowMoreButtonProps) => { return ( ); }; diff --git a/src/components/mobile/Main/ViewOnMapButton.tsx b/src/components/mobile/Main/ViewOnMapButton.tsx index 0fb86ec..2deb3de 100644 --- a/src/components/mobile/Main/ViewOnMapButton.tsx +++ b/src/components/mobile/Main/ViewOnMapButton.tsx @@ -8,13 +8,13 @@ type ViewOnMapProps = { const ViewOnMapButton = ({ onClick, isVillaSelected }: ViewOnMapProps) => { return ( ); }; diff --git a/src/consts/loading.ts b/src/consts/loading.ts index d50e6b8..7c30fa0 100644 --- a/src/consts/loading.ts +++ b/src/consts/loading.ts @@ -1,9 +1,9 @@ const loadingMessages = [ - { id: 1, value: "جاري تحميل نموذج الفيلا .." }, - { id: 2, value: "جاري بناء الجدران .." }, - { id: 3, value: "جاري  تركيب السقف.." }, - { id: 4, value: "جاري ترتيب الأثاث.." }, - { id: 5, value: "جاري تجهيز الفيلا للعرض.." }, -]; + { id: 1, value: "looking for a villa" }, + { id: 2, value: "building the walls" }, + { id: 3, value: "installing the roof" }, + { id: 4, value: "arranging the furniture" }, + { id: 5, value: "preparing the villa for showing" }, + ]; -export { loadingMessages }; + export {loadingMessages} \ No newline at end of file diff --git a/src/consts/villas.ts b/src/consts/villas.ts index 0a339b0..49ac612 100644 --- a/src/consts/villas.ts +++ b/src/consts/villas.ts @@ -5,7 +5,7 @@ const villaA1M: Villa = { plotArea: "1080", totalBuildUpArea: "461", totalCountBedroms: 5, - villaTheme: "حديث", + villaTheme: "Modern", sliders: [ { id: 1, @@ -33,48 +33,48 @@ const villaA1M: Villa = { }, ], groundFloorUnits: [ - { id: 1, title: "المدخل", value: "3.25x3.10" }, - { id: 2, title: "غرفة المعيشة", value: "4.10x5.10" }, - { id: 3, title: "غرفة الطعام", value: "5.00x5.00" }, - { id: 5, title: "متجر 1", value: "2.90x1.35" }, - { id: 6, title: "مجلس الرجال", value: "5.00x7.00" }, - { id: 7, title: "غرفة الحمام 1", value: "1.70x2.00" }, - { id: 8, title: "أحواض غسيل", value: "1.80x2.00" }, - { id: 9, title: "غرفة نوم الضيوف", value: "4.10x4.60" }, - { id: 10, title: "غرفة الحمام 2", value: "2.70x2.00" }, - { id: 11, title: "مطبخ", value: "5.00x4.00" }, - { id: 14, title: "غرفة الحمام 3", value: "1.50x2.50" }, - { id: 13, title: "مخزن 2", value: "2.20x1.35" }, - { id: 15, title: "غرفة الغسيل", value: "2.20x1.50" }, - { id: 16, title: "غرفة للعمالة المنزلية 1", value: "3.50x3.00" }, - { id: 17, title: "حمام للعمالة المنزلية 1", value: "1.50x2.00" }, - { id: 18, title: "غرفة الخدمات", value: "1.10x1.90" }, + { id: 1, title: 'Entrance', value: '3.25x3.10' }, + { id: 2, title: 'Living Room', value: '4.10x5.10' }, + { id: 3, title: 'Dining Room', value: '5.00x5.00' }, + { id: 5, title: 'Store 1', value: '2.90x1.35' }, + { id: 6, title: 'Men`s Majilas', value: '5.00x7.00' }, + { id: 7, title: 'Bathroom 1', value: '1.70x2.00' }, + { id: 8, title: 'Washbasins', value: '1.80x2.00' }, + { id: 9, title: 'Guest Bedroom', value: '4.10x4.60' }, + { id: 10, title: 'Bathroom 2', value: '2.70x2.00' }, + { id: 11, title: 'Kitchen', value: '5.00x4.00' }, + { id: 14, title: 'Bathroom 3', value: '1.50x2.50' }, + { id: 13, title: 'Store 2', value: '2.20x1.35' }, + { id: 15, title: 'Laundry Room', value: '2.20x1.50' }, + { id: 16, title: 'Domestic Worker Room 1', value: '3.50x3.00' }, + { id: 17, title: 'Domestic Worker Bathroom 1', value: '1.50x2.00' }, + { id: 18, title: 'Service Room', value: '1.10x1.90' } // { id: 12, title: 'Terrace 2', value: '5.30x1.00' }, // { id: 4, title: 'Terrace 1', value: '5.70x0.90' }, ], - + parkingUnits: [ - { id: 1, title: "غرفة للعمالة المنزلية 2", value: "3.00x3.00" }, - { id: 2, title: "حمام للعمالة المنزلية 2", value: "3.00x1.50" }, - { id: 3, title: "خزان المياه", value: "3.00x3.50" }, - { id: 4, title: "الباحة الخارجية", value: "2.40x2.20" }, + { id: 1, title: 'Domestic Worker Room 2', value: '3.00x3.00' }, + { id: 2, title: 'Domestic Worker Bathroom 2', value: '3.00x1.50' }, + { id: 3, title: 'Watertank', value: '3.00x3.50' }, + { id: 4, title: 'Outdoor Patio', value: '2.40x2.20' } ], firstFloorUnits: [ - { id: 1, title: "غرفة المعيشة", value: "4.10x4.60" }, - { id: 2, title: "غرفة النوم الرئيسية", value: "5.00x5.00" }, - { id: 3, title: "غرفة تبديل الملابس 1", value: "2.90x3.50" }, - { id: 4, title: "غرفة الحمام 1", value: "2.00x3.50" }, - { id: 5, title: "شرفة 1", value: "9.25x2.55" }, - { id: 6, title: "غرفة النوم 1", value: "5.00x4.00" }, - { id: 7, title: "غرفة تبديل الملابس 2", value: "3.10x2.70" }, - { id: 8, title: "غرفة الحمام 2", value: "1.80x2.70" }, - { id: 10, title: "غرفة النوم 2", value: "5.00x4.00" }, - { id: 11, title: "غرفة تبديل الملابس 3", value: "2.20x1.80" }, - { id: 12, title: "غرفة الحمام 3", value: "1.80x2.70" }, - { id: 13, title: "شرفة 2", value: "5.00x2.30" }, - { id: 14, title: "غرفة النوم 3", value: "4.10x4.80" }, - { id: 15, title: "غرفة الحمام 4", value: "2.65x1.80" }, - { id: 16, title: "متجر 1", value: "1.80x1.35" }, + { id: 1, title: 'Living Room', value: '4.10x4.60' }, + { id: 2, title: 'Master Bedroom', value: '5.00x5.00' }, + { id: 3, title: 'Dressing Room 1', value: '2.90x3.50' }, + { id: 4, title: 'Bathroom 1', value: '2.00x3.50' }, + { id: 5, title: 'Terrace 1', value: '9.25x2.55' }, + { id: 6, title: 'Bedroom 1', value: '5.00x4.00' }, + { id: 7, title: 'Dressing Room 2', value: '3.10x2.70' }, + { id: 8, title: 'Bathroom 2', value: '1.80x2.70' }, + { id: 10, title: 'Bedroom 2', value: '5.00x4.00' }, + { id: 11, title: 'Dressing Room 3', value: '2.20x1.80' }, + { id: 12, title: 'Bathroom 3', value: '1.80x2.70' }, + { id: 13, title: 'Terrace 2', value: '5.00x2.30' }, + { id: 14, title: 'Bedroom 3', value: '4.10x4.80' }, + { id: 15, title: 'Bathroom 4', value: '2.65x1.80' }, + { id: 16, title: 'Store 1', value: '1.80x1.35' } ], }; @@ -83,7 +83,7 @@ const villaA1T: Villa = { plotArea: "1080", totalBuildUpArea: "444", totalCountBedroms: 5, - villaTheme: "تقليدي", + villaTheme: "Traditional", sliders: [ { id: 1, @@ -111,56 +111,56 @@ const villaA1T: Villa = { }, ], groundFloorUnits: [ - { id: 1, title: "المدخل", value: "3.25x3.10" }, - { id: 2, title: "غرفة المعيشة", value: "4.10x5.10" }, - { id: 3, title: "غرفة الطعام", value: "4.10x5.10" }, - { id: 17, title: "شرفة 1", value: "4.10x5.10" }, - { id: 4, title: "متجر 1", value: "2.90x1.35" }, - { id: 5, title: "مجلس الرجال", value: "5.00x7.00" }, - { id: 6, title: "غرفة الحمام 1", value: "1.70x2.00" }, - { id: 7, title: "أحواض غسيل", value: "1.70x2.00" }, - { id: 8, title: "غرفة نوم الضيوف", value: "4.10x4.60" }, - { id: 9, title: "غرفة الحمام 2", value: "2.70x2.00" }, - { id: 10, title: "مطبخ", value: "5.00x4.00" }, - { id: 18, title: "شرفة 2", value: "5.00x4.00" }, - { id: 12, title: "مخزن 2", value: "2.20x1.30" }, - { id: 11, title: "غرفة الحمام 3", value: "1.50x2.50" }, - { id: 13, title: "غرفة الغسيل", value: "2.20x1.50" }, - { id: 14, title: "غرفة للعمالة المنزلية 1", value: "3.50x3.00" }, - { id: 15, title: "حمام للعمالة المنزلية 1", value: "3.00x1.50" }, - { id: 16, title: "غرفة الخدمات", value: "1.10x1.90" }, + { id: 1, title: 'Entrance', value: '3.25x3.10' }, + { id: 2, title: 'Living Room', value: '4.10x5.10' }, + { id: 3, title: 'Dining Room', value: '4.10x5.10' }, + { id: 17, title: 'Terrace 1', value: '4.10x5.10' }, + { id: 4, title: 'Store 1', value: '2.90x1.35' }, + { id: 5, title: 'Men`s Majilas', value: '5.00x7.00' }, + { id: 6, title: 'Bathroom 1', value: '1.70x2.00' }, + { id: 7, title: 'Washbasins', value: '1.70x2.00' }, + { id: 8, title: 'Guest Bedroom', value: '4.10x4.60' }, + { id: 9, title: 'Bathroom 2', value: '2.70x2.00' }, + { id: 10, title: 'Kitchen', value: '5.00x4.00' }, + { id: 18, title: 'Terrace 2', value: '5.00x4.00' }, + { id: 12, title: 'Store 2', value: '2.20x1.30' }, + { id: 11, title: 'Bathroom 3', value: '1.50x2.50' }, + { id: 13, title: 'Laundry Room', value: '2.20x1.50' }, + { id: 14, title: 'Domestic Worker Room 1', value: '3.50x3.00' }, + { id: 15, title: 'Domestic Worker Bathroom 1', value: '3.00x1.50' }, + { id: 16, title: 'Service Room', value: '1.10x1.90' }, ], parkingUnits: [ - { id: 1, title: "غرفة للعمالة المنزلية 2", value: "3.00x3.00" }, - { id: 2, title: "حمام للعمالة المنزلية 2", value: "2.40x2.20" }, - { id: 3, title: "خزان المياه", value: "3.00x3.50" }, - { id: 4, title: "الباحة الخارجية", value: "3.40x2.20" }, + { id: 1, title: 'Domestic Worker Room 2', value: '3.00x3.00' }, + { id: 2, title: 'Domestic Worker Bathroom 2', value: '2.40x2.20' }, + { id: 3, title: 'Watertank', value: '3.00x3.50' }, + { id: 4, title: 'Outdoor Patio', value: '3.40x2.20' } ], firstFloorUnits: [ - { id: 1, title: "غرفة المعيشة", value: "4.10x4.60" }, - { id: 2, title: "غرفة النوم الرئيسية", value: "5.00x5.00" }, - { id: 3, title: "غرفة تبديل الملابس 1", value: "2.90x3.50" }, - { id: 4, title: "غرفة الحمام 1", value: "2.00x3.50" }, - { id: 5, title: "شرفة 1", value: "5.20x2.70" }, - { id: 6, title: "غرفة النوم 1", value: "2.70x1.80" }, - { id: 7, title: "غرفة تبديل الملابس 2", value: "2.70x1.80" }, - { id: 8, title: "غرفة الحمام 2", value: "2.70x1.80" }, - { id: 12, title: "شرفة 2", value: "5.50x1.50" }, - { id: 9, title: "غرفة النوم 2", value: "5.00x4.00" }, - { id: 10, title: "غرفة تبديل الملابس 3", value: "3.00x2.45" }, - { id: 11, title: "غرفة الحمام 3", value: "1.80x2.70" }, - { id: 13, title: "غرفة النوم 3", value: "4.10x4.20" }, - { id: 14, title: "غرفة الحمام 4", value: "2.65x1.80" }, - { id: 15, title: "متجر 1", value: "1.80x1.35" }, + { id: 1, title: 'Living Room', value: '4.10x4.60' }, + { id: 2, title: 'Master Bedroom', value: '5.00x5.00' }, + { id: 3, title: 'Dressing Room 1', value: '2.90x3.50' }, + { id: 4, title: 'Bathroom 1', value: '2.00x3.50' }, + { id: 5, title: 'Terrace 1', value: '5.20x2.70' }, + { id: 6, title: 'Bedroom 1', value: '2.70x1.80' }, + { id: 7, title: 'Dressing Room 2', value: '2.70x1.80' }, + { id: 8, title: 'Bathroom 2', value: '2.70x1.80' }, + { id: 12, title: 'Terrace 2', value: '5.50x1.50' }, + { id: 9, title: 'Bedroom 2', value: '5.00x4.00' }, + { id: 10, title: 'Dressing Room 3', value: '3.00x2.45' }, + { id: 11, title: 'Bathroom 3', value: '1.80x2.70' }, + { id: 13, title: 'Bedroom 3', value: '4.10x4.20' }, + { id: 14, title: 'Bathroom 4', value: '2.65x1.80' }, + { id: 15, title: 'Store 1', value: '1.80x1.35' } ], }; - + const villaA2M: Villa = { type: "a2m", plotArea: "1080", totalBuildUpArea: "463", totalCountBedroms: 5, - villaTheme: "حديث", + villaTheme: "Modern", sliders: [ { id: 1, @@ -186,45 +186,45 @@ const villaA2M: Villa = { }, ], groundFloorUnits: [ - { id: 1, title: "المدخل", value: "3.00x3.00" }, - { id: 2, title: "غرفة المعيشة", value: "4.50x5.25" }, - { id: 3, title: "غرفة الطعام", value: "5.00x4.00" }, - { id: 4, title: "متجر 1", value: "2.90x1.35" }, - { id: 5, title: "مجلس الرجال", value: "5.00x7.00" }, - { id: 6, title: "غرفة الحمام 1", value: "1.65x2.00" }, - { id: 7, title: "أحواض غسيل", value: "1.75x2.00" }, - { id: 8, title: "غرفة نوم الضيوف", value: "4.40x4.60" }, - { id: 9, title: "غرفة الحمام 2", value: "2.80x2.00" }, - { id: 10, title: "مطبخ", value: "4.60x4.00" }, - { id: 11, title: "غرفة الحمام 3", value: "1.50x2.10" }, - { id: 12, title: "مخزن 2", value: "1.60x1.80" }, - { id: 13, title: "غرفة الغسيل", value: "3.00x1.50" }, - { id: 14, title: "غرفة للعمالة المنزلية 1", value: "3.00x3.00" }, - { id: 15, title: "حمام للعمالة المنزلية 1", value: "3.00x1.50" }, - { id: 16, title: "غرفة الخدمات", value: "1.10x1.90" }, + { id: 1, title: 'Entrance', value: '3.00x3.00' }, + { id: 2, title: 'Living Room', value: '4.50x5.25' }, + { id: 3, title: 'Dining Room', value: '5.00x4.00' }, + { id: 4, title: 'Store 1', value: '2.90x1.35' }, + { id: 5, title: 'Men`s Majilas', value: '5.00x7.00' }, + { id: 6, title: 'Bathroom 1', value: '1.65x2.00' }, + { id: 7, title: 'Washbasins', value: '1.75x2.00' }, + { id: 8, title: 'Guest Bedroom', value: '4.40x4.60' }, + { id: 9, title: 'Bathroom 2', value: '2.80x2.00' }, + { id: 10, title: 'Kitchen', value: '4.60x4.00' }, + { id: 11, title: 'Bathroom 3', value: '1.50x2.10' }, + { id: 12, title: 'Store 2', value: '1.60x1.80' }, + { id: 13, title: 'Laundry Room', value: '3.00x1.50' }, + { id: 14, title: 'Domestic Worker Room 1', value: '3.00x3.00' }, + { id: 15, title: 'Domestic Worker Bathroom 1', value: '3.00x1.50' }, + { id: 16, title: 'Service Room', value: '1.10x1.90' } ], parkingUnits: [ - { id: 1, title: "غرفة للعمالة المنزلية 2", value: "3.00x3.00" }, - { id: 2, title: "حمام للعمالة المنزلية 2", value: "3.00x1.50" }, - { id: 3, title: "خزان المياه", value: "3.00x3.50" }, - { id: 4, title: "الباحة الخارجية", value: "2.40x2.20" }, + { id: 1, title: 'Domestic Worker Room 2', value: '3.00x3.00' }, + { id: 2, title: 'Domestic Worker Bathroom 2', value: '3.00x1.50' }, + { id: 3, title: 'Watertank', value: '3.00x3.50' }, + { id: 4, title: 'Outdoor Patio', value: '2.40x2.20' } ], firstFloorUnits: [ - { id: 1, title: "غرفة المعيشة", value: "5.00x3.95" }, - { id: 2, title: "شرفة 1", value: "5.35x1.55" }, - { id: 3, title: "غرفة النوم الرئيسية", value: "4.00x5.35" }, - { id: 4, title: "غرفة تبديل الملابس 1", value: "2.20x1.70" }, - { id: 5, title: "غرفة الحمام 1", value: "2.20x3.60" }, - { id: 6, title: "غرفة النوم 1", value: "5.00x4.00" }, - { id: 7, title: "غرفة تبديل الملابس 2", value: "3.10x2.45" }, - { id: 8, title: "غرفة الحمام 2", value: "1.75x2.70" }, - { id: 9, title: "شرفة 2", value: "5.70x2.30" }, - { id: 10, title: "غرفة النوم 2", value: "4.40x4.80" }, - { id: 11, title: "غرفة الحمام 3", value: "2.80x1.80" }, - { id: 12, title: "غرفة النوم 3", value: "4.80x4.00" }, - { id: 13, title: "غرفة تبديل الملابس 3", value: "2.70x1.80" }, - { id: 14, title: "غرفة الحمام 4", value: "2.70x1.80" }, - { id: 15, title: "شرفة 3", value: "8.00x1.30" }, + { id: 1, title: 'Living Room', value: '5.00x3.95' }, + { id: 2, title: 'Terrace 1', value: '5.35x1.55' }, + { id: 3, title: 'Master Bedroom', value: '4.00x5.35' }, + { id: 4, title: 'Dressing Room 1', value: '2.20x1.70' }, + { id: 5, title: 'Bathroom 1', value: '2.20x3.60' }, + { id: 6, title: 'Bedroom 1', value: '5.00x4.00' }, + { id: 7, title: 'Dressing Room 2', value: '3.10x2.45' }, + { id: 8, title: 'Bathroom 2', value: '1.75x2.70' }, + { id: 9, title: 'Terrace 2', value: '5.70x2.30' }, + { id: 10, title: 'Bedroom 2', value: '4.40x4.80' }, + { id: 11, title: 'Bathroom 3', value: '2.80x1.80' }, + { id: 12, title: 'Bedroom 3', value: '4.80x4.00' }, + { id: 13, title: 'Dressing Room 3', value: '2.70x1.80' }, + { id: 14, title: 'Bathroom 4', value: '2.70x1.80' }, + { id: 15, title: 'Terrace 3', value: '8.00x1.30' } ], }; @@ -233,7 +233,7 @@ const villaA2T: Villa = { plotArea: "1080", totalBuildUpArea: "425", totalCountBedroms: 5, - villaTheme: "تقليدي", + villaTheme: "Traditional", sliders: [ { id: 1, @@ -259,54 +259,54 @@ const villaA2T: Villa = { }, ], groundFloorUnits: [ - { id: 1, title: "المدخل", value: "3.00x3.00" }, - { id: 2, title: "غرفة المعيشة", value: "4.50x5.25" }, - { id: 16, title: "غرفة الطعام", value: "5.00x4.00" }, - { id: 3, title: "متجر 1", value: "2.90x1.35" }, - { id: 4, title: "مجلس الرجال", value: "5.00x7.00" }, - { id: 5, title: "غرفة الحمام 1", value: "1.65x2.00" }, - { id: 6, title: "أحواض غسيل", value: "1.75x2.00" }, - { id: 7, title: "غرفة نوم الضيوف", value: "4.40x4.60" }, - { id: 8, title: "غرفة الحمام 2", value: "2.80x2.00" }, - { id: 9, title: "مطبخ", value: "4.60x4.00" }, - { id: 10, title: "غرفة الحمام 3", value: "1.50x2.10" }, - { id: 11, title: "مخزن 2", value: "1.60x1.80" }, - { id: 12, title: "غرفة الغسيل", value: "3.00x2.00" }, - { id: 13, title: "غرفة للعمالة المنزلية 1", value: "3.00x3.00" }, - { id: 14, title: "حمام للعمالة المنزلية 1", value: "3.00x1.50" }, - { id: 15, title: "غرفة الخدمات", value: "1.10x1.90" }, + { id: 1, title: 'Entrance', value: '3.00x3.00' }, + { id: 2, title: 'Living Room', value: '4.50x5.25' }, + { id: 16, title: 'Dining Room', value: '5.00x4.00' }, + { id: 3, title: 'Store 1', value: '2.90x1.35' }, + { id: 4, title: 'Men`s Majilas', value: '5.00x7.00' }, + { id: 5, title: 'Bathroom 1', value: '1.65x2.00' }, + { id: 6, title: 'Washbasins', value: '1.75x2.00' }, + { id: 7, title: 'Guest Bedroom', value: '4.40x4.60' }, + { id: 8, title: 'Bathroom 2', value: '2.80x2.00' }, + { id: 9, title: 'Kitchen', value: '4.60x4.00' }, + { id: 10, title: 'Bathroom 3', value: '1.50x2.10' }, + { id: 11, title: 'Store 2', value: '1.60x1.80' }, + { id: 12, title: 'Laundry Room', value: '3.00x2.00' }, + { id: 13, title: 'Domestic Worker Room 1', value: '3.00x3.00' }, + { id: 14, title: 'Domestic Worker Bathroom 1', value: '3.00x1.50' }, + { id: 15, title: 'Service Room', value: '1.10x1.90' } ], parkingUnits: [ - { id: 1, title: "غرفة للعمالة المنزلية 2", value: "3.00x3.00" }, - { id: 2, title: "حمام للعمالة المنزلية 2", value: "3.00x1.50" }, - { id: 3, title: "خزان المياه", value: "3.00x3.50" }, - { id: 4, title: "الباحة الخارجية", value: "2.40x2.20" }, + { id: 1, title: 'Domestic Worker Room 2', value: '3.00x3.00' }, + { id: 2, title: 'Domestic Worker Bathroom 2', value: '3.00x1.50' }, + { id: 3, title: 'Watertank', value: '3.00x3.50' }, + { id: 4, title: 'Outdoor Patio', value: '2.40x2.20' } ], firstFloorUnits: [ - { id: 1, title: "غرفة المعيشة", value: "5.00x3.95" }, - { id: 2, title: "شرفة 1", value: "5.35x1.55" }, - { id: 3, title: "غرفة النوم الرئيسية", value: "4.00x5.35" }, - { id: 4, title: "غرفة تبديل الملابس 1", value: "2.20x1.70" }, - { id: 5, title: "غرفة الحمام 1", value: "2.20x3.60" }, - { id: 6, title: "غرفة النوم 1", value: "5.00x4.00" }, - { id: 7, title: "غرفة تبديل الملابس 2", value: "3.10x2.45" }, - { id: 8, title: "غرفة الحمام 2", value: "1.75x2.70" }, - { id: 9, title: "شرفة 2", value: "5.70x2.30" }, - { id: 10, title: "غرفة النوم 2", value: "4.40x4.80" }, - { id: 11, title: "غرفة الحمام 3", value: "2.80x1.80" }, - { id: 12, title: "غرفة النوم 3", value: "4.80x4.00" }, - { id: 13, title: "غرفة تبديل الملابس 3", value: "2.70x2.10" }, - { id: 14, title: "غرفة الحمام 4", value: "2.70x1.80" }, - { id: 15, title: "شرفة 3", value: "8.00x1.30" }, + { id: 1, title: 'Living Room', value: '5.00x3.95' }, + { id: 2, title: 'Terrace 1', value: '5.35x1.55' }, + { id: 3, title: 'Master Bedroom', value: '4.00x5.35' }, + { id: 4, title: 'Dressing Room 1', value: '2.20x1.70' }, + { id: 5, title: 'Bathroom 1', value: '2.20x3.60' }, + { id: 6, title: 'Bedroom 1', value: '5.00x4.00' }, + { id: 7, title: 'Dressing Room 2', value: '3.10x2.45' }, + { id: 8, title: 'Bathroom 2', value: '1.75x2.70' }, + { id: 9, title: 'Terrace 2', value: '5.70x2.30' }, + { id: 10, title: 'Bedroom 2', value: '4.40x4.80' }, + { id: 11, title: 'Bathroom 3', value: '2.80x1.80' }, + { id: 12, title: 'Bedroom 3', value: '4.80x4.00' }, + { id: 13, title: 'Dressing Room 3', value: '2.70x2.10' }, + { id: 14, title: 'Bathroom 4', value: '2.70x1.80' }, + { id: 15, title: 'Terrace 3', value: '8.00x1.30' } ], }; - + const villaB1M: Villa = { type: "b1m", plotArea: "1080", totalBuildUpArea: "496", totalCountBedroms: 5, - villaTheme: "حديث", + villaTheme: "Modern", sliders: [ { id: 1, @@ -332,56 +332,56 @@ const villaB1M: Villa = { }, ], groundFloorUnits: [ - { id: 1, title: "المدخل", value: "3.80x2.90" }, - { id: 2, title: "غرفة المعيشة", value: "4.10x5.10" }, - { id: 3, title: "أحواض غسيل", value: "1.50x1.80" }, - { id: 4, title: "غرفة الحمام 1", value: "1.50x2.10" }, - { id: 5, title: "غرفة الطعام", value: "5.00x4.00" }, - { id: 6, title: "متجر 1", value: "2.90x1.35" }, - { id: 7, title: "مجلس الرجال", value: "5.00x7.90" }, - { id: 8, title: "أحواض غسيل 2", value: "1.80x2.00" }, - { id: 9, title: "غرفة الحمام 2", value: "1.70x2.00" }, - { id: 10, title: "غرفة نوم الضيوف", value: "4.00x4.60" }, - { id: 11, title: "غرفة الحمام 3", value: "2.00x3.00" }, - { id: 12, title: "مطبخ", value: "5.10x5.00" }, - { id: 13, title: "مخزن 2", value: "3.00x1.35" }, - { id: 14, title: "غرفة للعمالة المنزلية 1", value: "3.00x4.00" }, - { id: 15, title: "حمام للعمالة المنزلية 1", value: "1.90x1.66" }, - { id: 16, title: "غرفة الغسيل", value: "2.00x2.20" }, - { id: 17, title: "غرفة الخدمات", value: "1.10x1.85" }, + { id: 1, title: 'Entrance', value: '3.80x2.90' }, + { id: 2, title: 'Living Room', value: '4.10x5.10' }, + { id: 3, title: 'Washbasins', value: '1.50x1.80' }, + { id: 4, title: 'Bathroom 1', value: '1.50x2.10' }, + { id: 5, title: 'Dining Room', value: '5.00x4.00' }, + { id: 6, title: 'Store 1', value: '2.90x1.35' }, + { id: 7, title: 'Men`s Majilas', value: '5.00x7.90' }, + { id: 8, title: 'Washbasins 2', value: '1.80x2.00' }, + { id: 9, title: 'Bathroom 2', value: '1.70x2.00' }, + { id: 10, title: 'Guest Bedroom', value: '4.00x4.60' }, + { id: 11, title: 'Bathroom 3', value: '2.00x3.00' }, + { id: 12, title: 'Kitchen', value: '5.10x5.00' }, + { id: 13, title: 'Store 2', value: '3.00x1.35' }, + { id: 14, title: 'Domestic Worker Room 1', value: '3.00x4.00' }, + { id: 15, title: 'Domestic Worker Bathroom 1', value: '1.90x1.66' }, + { id: 16, title: 'Laundry Room', value: '2.00x2.20' }, + { id: 17, title: 'Service Room', value: '1.10x1.85' } ], parkingUnits: [ - { id: 1, title: "غرفة للعمالة المنزلية 2", value: "3.00x1.50" }, - { id: 2, title: "حمام للعمالة المنزلية 2", value: "3.00x1.50" }, - { id: 3, title: "خزان المياه", value: "3.00x3.50" }, - { id: 4, title: "الباحة الخارجية", value: "2.40x2.20" }, + { id: 1, title: 'Domestic Worker Room 2', value: '3.00x1.50' }, + { id: 2, title: 'Domestic Worker Bathroom 2', value: '3.00x1.50' }, + { id: 3, title: 'Watertank', value: '3.00x3.50' }, + { id: 4, title: 'Outdoor Patio', value: '2.40x2.20' } ], firstFloorUnits: [ - { id: 1, title: "غرفة المعيشة", value: "5.00x3.95" }, - { id: 2, title: "شرفة 1", value: "5.30x1.50" }, - { id: 3, title: "غرفة النوم الرئيسية", value: "5.60x4.90" }, - { id: 4, title: "غرفة تبديل الملابس 1", value: "2.00x2.70" }, - { id: 5, title: "غرفة الحمام 1", value: "3.60x2.70" }, - { id: 6, title: "غرفة النوم 1", value: "4.00x4.90" }, - { id: 7, title: "غرفة تبديل الملابس 2", value: "2.00x2.70" }, - { id: 8, title: "غرفة الحمام 2", value: "1.80x2.70" }, - { id: 9, title: "غرفة النوم 2", value: "5.00x5.20" }, - { id: 10, title: "غرفة تبديل الملابس 3", value: "1.70x2.45" }, - { id: 11, title: "غرفة الحمام 3", value: "1.80x2.70" }, - { id: 12, title: "شرفة 2", value: "5.75x2.10" }, - { id: 13, title: "غرفة النوم 3", value: "4.80x5.45" }, - { id: 14, title: "غرفة تبديل الملابس 4", value: "1.80x2.70" }, - { id: 15, title: "غرفة الحمام 4", value: "1.80x2.70" }, - { id: 16, title: "شرفة 3", value: "3.55x1.20" }, + { id: 1, title: 'Living Room', value: '5.00x3.95' }, + { id: 2, title: 'Terrace 1', value: '5.30x1.50' }, + { id: 3, title: 'Master Bedroom', value: '5.60x4.90' }, + { id: 4, title: 'Dressing Room 1', value: '2.00x2.70' }, + { id: 5, title: 'Bathroom 1', value: '3.60x2.70' }, + { id: 6, title: 'Bedroom 1', value: '4.00x4.90' }, + { id: 7, title: 'Dressing Room 2', value: '2.00x2.70' }, + { id: 8, title: 'Bathroom 2', value: '1.80x2.70' }, + { id: 9, title: 'Bedroom 2', value: '5.00x5.20' }, + { id: 10, title: 'Dressing Room 3', value: '1.70x2.45' }, + { id: 11, title: 'Bathroom 3', value: '1.80x2.70' }, + { id: 12, title: 'Terrace 2', value: '5.75x2.10' }, + { id: 13, title: 'Bedroom 3', value: '4.80x5.45' }, + { id: 14, title: 'Dressing Room 4', value: '1.80x2.70' }, + { id: 15, title: 'Bathroom 4', value: '1.80x2.70' }, + { id: 16, title: 'Terrace 3', value: '3.55x1.20' } ], }; const villaB1T: Villa = { type: "b1t", plotArea: "1080", - totalBuildUpArea: "473", + totalBuildUpArea: "473", totalCountBedroms: 5, - villaTheme: "تقليدي", + villaTheme: "Traditional", sliders: [ { id: 1, @@ -408,56 +408,57 @@ const villaB1T: Villa = { ], groundFloorUnits: [ - { id: 1, title: "المدخل", value: "3.80x2.90" }, - { id: 2, title: "غرفة المعيشة", value: "4.10x5.10" }, - { id: 3, title: "أحواض غسيل", value: "1.50x1.80" }, - { id: 4, title: "غرفة الحمام 1", value: "1.50x2.10" }, - { id: 5, title: "غرفة الطعام", value: "5.00x4.00" }, - { id: 6, title: "متجر 1", value: "2.90x1.35" }, - { id: 7, title: "مجلس الرجال", value: "5.00x7.90" }, - { id: 8, title: "أحواض غسيل 2", value: "1.80x2.00" }, - { id: 9, title: "غرفة الحمام 2", value: "1.70x2.00" }, - { id: 10, title: "غرفة نوم الضيوف", value: "4.00x4.60" }, - { id: 11, title: "غرفة الحمام 3", value: "2.00x3.00" }, - { id: 12, title: "مطبخ", value: "5.10x4.90" }, - { id: 13, title: "مخزن 2", value: "3.00x1.35" }, - { id: 14, title: "غرفة للعمالة المنزلية 1", value: "3.00x4.00" }, - { id: 15, title: "حمام للعمالة المنزلية 1", value: "1.90x1.65" }, - { id: 16, title: "غرفة الغسيل", value: "2.00x2.20" }, - { id: 17, title: "غرفة الخدمات", value: "1.10x1.86" }, + { id: 1, title: 'Entrance', value: '3.80x2.90' }, + { id: 2, title: 'Living Room', value: '4.10x5.10' }, + { id: 3, title: 'Washbasins', value: '1.50x1.80' }, + { id: 4, title: 'Bathroom 1', value: '1.50x2.10' }, + { id: 5, title: 'Dining Room', value: '5.00x4.00' }, + { id: 6, title: 'Store 1', value: '2.90x1.35' }, + { id: 7, title: 'Men`s Majilas', value: '5.00x7.90' }, + { id: 8, title: 'Washbasins 2', value: '1.80x2.00' }, + { id: 9, title: 'Bathroom 2', value: '1.70x2.00' }, + { id: 10, title: 'Guest Bedroom', value: '4.00x4.60' }, + { id: 11, title: 'Bathroom 3', value: '2.00x3.00' }, + { id: 12, title: 'Kitchen', value: '5.10x4.90' }, + { id: 13, title: 'Store 2', value: '3.00x1.35' }, + { id: 14, title: 'Domestic Worker Room 1', value: '3.00x4.00' }, + { id: 15, title: 'Domestic Worker Bathroom 1', value: '1.90x1.65' }, + { id: 16, title: 'Laundry Room', value: '2.00x2.20' }, + { id: 17, title: 'Service Room', value: '1.10x1.86' } ], parkingUnits: [ - { id: 1, title: "غرفة للعمالة المنزلية 2", value: "3.00x3.00" }, - { id: 2, title: "حمام للعمالة المنزلية 2", value: "3.00x1.50" }, - { id: 3, title: "خزان المياه", value: "3.00x3.50" }, - { id: 4, title: "الباحة الخارجية", value: "2.40x2.20" }, + { id: 1, title: 'Domestic Worker Room 2', value: '3.00x3.00' }, + { id: 2, title: 'Domestic Worker Bathroom 2', value: '3.00x1.50' }, + { id: 3, title: 'Watertank', value: '3.00x3.50' }, + { id: 4, title: 'Outdoor Patio', value: '2.40x2.20' } ], - firstFloorUnits: [ - { id: 1, title: "غرفة المعيشة", value: "5.00x3.95" }, - { id: 2, title: "شرفة 1", value: "6.30x1.50" }, - { id: 3, title: "غرفة النوم الرئيسية", value: "6.60x4.90" }, - { id: 4, title: "غرفة تبديل الملابس 1", value: "3.60x2.10" }, - { id: 5, title: "غرفة الحمام 1", value: "3.60x2.70" }, - { id: 6, title: "غرفة النوم 1", value: "4.00x4.90" }, - { id: 7, title: "غرفة تبديل الملابس 2", value: "2.00x2.70" }, - { id: 8, title: "غرفة الحمام 2", value: "1.80x2.70" }, - { id: 9, title: "غرفة النوم 2", value: "5.00x5.20" }, - { id: 10, title: "غرفة تبديل الملابس 3", value: "1.70x2.45" }, - { id: 11, title: "غرفة الحمام 3", value: "1.80x2.70" }, - { id: 12, title: "شرفة 2", value: "5.75x2.00" }, - { id: 13, title: "غرفة النوم 3", value: "4.80x5.45" }, - { id: 14, title: "غرفة تبديل الملابس 4", value: "1.80x2.70" }, - { id: 15, title: "غرفة الحمام 4", value: "1.80x2.70" }, - { id: 16, title: "شرفة 3", value: "2.66x0.65" }, + firstFloorUnits: + [ + { id: 1, title: 'Living Room', value: '5.00x3.95' }, + { id: 2, title: 'Terrace 1', value: '6.30x1.50' }, + { id: 3, title: 'Master Bedroom', value: '6.60x4.90' }, + { id: 4, title: 'Dressing Room 1', value: '3.60x2.10' }, + { id: 5, title: 'Bathroom 1', value: '3.60x2.70' }, + { id: 6, title: 'Bedroom 1', value: '4.00x4.90' }, + { id: 7, title: 'Dressing Room 2', value: '2.00x2.70' }, + { id: 8, title: 'Bathroom 2', value: '1.80x2.70' }, + { id: 9, title: 'Bedroom 2', value: '5.00x5.20' }, + { id: 10, title: 'Dressing Room 3', value: '1.70x2.45' }, + { id: 11, title: 'Bathroom 3', value: '1.80x2.70' }, + { id: 12, title: 'Terrace 2', value: '5.75x2.00' }, + { id: 13, title: 'Bedroom 3', value: '4.80x5.45' }, + { id: 14, title: 'Dressing Room 4', value: '1.80x2.70' }, + { id: 15, title: 'Bathroom 4', value: '1.80x2.70' }, + { id: 16, title: 'Terrace 3', value: '2.66x0.65' } ], }; -const villaB2M: Villa = { +const villaB2M: Villa = { type: "b2m", plotArea: "1080", totalBuildUpArea: "498", totalCountBedroms: 5, - villaTheme: "حديث", + villaTheme: "Modern", sliders: [ { id: 1, @@ -483,46 +484,46 @@ const villaB2M: Villa = { }, ], groundFloorUnits: [ - { id: 1, title: "المدخل", value: "3.25x3.20" }, - { id: 2, title: "غرفة المعيشة", value: "4.70x4.10" }, - { id: 3, title: "غرفة الحمام 1", value: "2.00x1.90" }, - { id: 4, title: "غرفة الطعام", value: "5.00x5.00" }, - { id: 6, title: "متجر 1", value: "2.90x1.35" }, - { id: 7, title: "مجلس الرجال", value: "5.00x7.80" }, - { id: 8, title: "أحواض غسيل", value: "1.70x2.00" }, - { id: 9, title: "غرفة الحمام 2", value: "1.60x2.00" }, - { id: 10, title: "غرفة نوم الضيوف", value: "4.70x4.20" }, - { id: 11, title: "غرفة الحمام 3", value: "2.70x2.00" }, - { id: 12, title: "مطبخ", value: "4.25x5.00" }, - { id: 13, title: "مخزن 2", value: "2.00x3.10" }, - { id: 14, title: "غرفة الغسيل", value: "2.40x2.50" }, - { id: 15, title: "غرفة للعمالة المنزلية 1", value: "3.00x3.60" }, - { id: 16, title: "حمام للعمالة المنزلية 1", value: "2.00x2.45" }, - { id: 17, title: "غرفة الخدمات", value: "1.10x1.85" }, + { id: 1, title: 'Entrance', value: '3.25x3.20' }, + { id: 2, title: 'Living Room', value: '4.70x4.10' }, + { id: 3, title: 'Bathroom 1', value: '2.00x1.90' }, + { id: 4, title: 'Dining Room', value: '5.00x5.00' }, + { id: 6, title: 'Store 1', value: '2.90x1.35' }, + { id: 7, title: 'Men`s Majilas', value: '5.00x7.80' }, + { id: 8, title: 'Washbasins', value: '1.70x2.00' }, + { id: 9, title: 'Bathroom 2', value: '1.60x2.00' }, + { id: 10, title: 'Guest Bedroom', value: '4.70x4.20' }, + { id: 11, title: 'Bathroom 3', value: '2.70x2.00' }, + { id: 12, title: 'Kitchen', value: '4.25x5.00' }, + { id: 13, title: 'Store 2', value: '2.00x3.10' }, + { id: 14, title: 'Laundry Room', value: '2.40x2.50' }, + { id: 15, title: 'Domestic Worker Room 1', value: '3.00x3.60' }, + { id: 16, title: 'Domestic Worker Bathroom 1', value: '2.00x2.45' }, + { id: 17, title: 'Service Room', value: '1.10x1.85' } ], parkingUnits: [ - { id: 1, title: "غرفة للعمالة المنزلية 2", value: "3.00x3.00" }, - { id: 2, title: "حمام للعمالة المنزلية 2", value: "3.00x1.50" }, - { id: 3, title: "خزان المياه", value: "3.00x3.50" }, - { id: 4, title: "الباحة الخارجية", value: "2.40x2.20" }, + { id: 1, title: 'Domestic Worker Room 2', value: '3.00x3.00' }, + { id: 2, title: 'Domestic Worker Bathroom 2', value: '3.00x1.50' }, + { id: 3, title: 'Watertank', value: '3.00x3.50' }, + { id: 4, title: 'Outdoor Patio', value: '2.40x2.20' } ], firstFloorUnits: [ - { id: 1, title: "غرفة المعيشة", value: "4.85x4.10" }, - { id: 2, title: "غرفة النوم الرئيسية", value: "4.50x5.85" }, - { id: 3, title: "غرفة تبديل الملابس 1", value: "2.10x3.60" }, - { id: 4, title: "غرفة الحمام 1", value: "2.70x3.60" }, - { id: 5, title: "شرفة 1", value: "3.35x1.35" }, - { id: 6, title: "غرفة النوم 1", value: "5.00x4.30" }, - { id: 7, title: "غرفة تبديل الملابس 2", value: "1.70x2.70" }, - { id: 8, title: "غرفة الحمام 2", value: "1.80x2.70" }, - { id: 9, title: "متجر 1", value: "2.90x1.35" }, - { id: 10, title: "غرفة النوم 2", value: "5.00x5.00" }, - { id: 11, title: "غرفة تبديل الملابس 3", value: "1.65x2.70" }, - { id: 12, title: "غرفة الحمام 3", value: "1.70x2.70" }, - { id: 13, title: "شرفة 2", value: "5.45x2.20" }, - { id: 14, title: "غرفة النوم 3", value: "4.45x4.20" }, - { id: 15, title: "غرفة تبديل الملابس 4", value: "2.80x2.40" }, - { id: 16, title: "غرفة الحمام 4", value: "3.10x1.80" }, + { id: 1, title: 'Living Room', value: '4.85x4.10' }, + { id: 2, title: 'Master Bedroom', value: '4.50x5.85' }, + { id: 3, title: 'Dressing Room 1', value: '2.10x3.60' }, + { id: 4, title: 'Bathroom 1', value: '2.70x3.60' }, + { id: 5, title: 'Terrace 1', value: '3.35x1.35' }, + { id: 6, title: 'Bedroom 1', value: '5.00x4.30' }, + { id: 7, title: 'Dressing Room 2', value: '1.70x2.70' }, + { id: 8, title: 'Bathroom 2', value: '1.80x2.70' }, + { id: 9, title: 'Store 1', value: '2.90x1.35' }, + { id: 10, title: 'Bedroom 2', value: '5.00x5.00' }, + { id: 11, title: 'Dressing Room 3', value: '1.65x2.70' }, + { id: 12, title: 'Bathroom 3', value: '1.70x2.70' }, + { id: 13, title: 'Terrace 2', value: '5.45x2.20' }, + { id: 14, title: 'Bedroom 3', value: '4.45x4.20' }, + { id: 15, title: 'Dressing Room 4', value: '2.80x2.40' }, + { id: 16, title: 'Bathroom 4', value: '3.10x1.80' } ], }; @@ -531,7 +532,7 @@ const villaB2T: Villa = { plotArea: "1080", totalBuildUpArea: "483", totalCountBedroms: 5, - villaTheme: "تقليدي", + villaTheme: "Traditional", sliders: [ { id: 1, @@ -557,49 +558,49 @@ const villaB2T: Villa = { }, ], groundFloorUnits: [ - { id: 1, title: "المدخل", value: "3.20x3.20" }, - { id: 2, title: "غرفة المعيشة", value: "4.70x4.30" }, - { id: 3, title: "غرفة الحمام 1", value: "2.00x1.90" }, - { id: 4, title: "غرفة الطعام", value: "5.00x5.00" }, - { id: 5, title: "شرفة 1", value: "5.70x2.00" }, - { id: 6, title: "متجر 1", value: "2.90x1.35" }, - { id: 7, title: "مجلس الرجال", value: "5.00x7.80" }, - { id: 8, title: "أحواض غسيل", value: "1.80x2.00" }, - { id: 9, title: "غرفة الحمام 2", value: "1.70x2.00" }, - { id: 10, title: "غرفة نوم الضيوف", value: "4.70x4.20" }, - { id: 11, title: "غرفة الحمام 3", value: "2.70x2.00" }, - { id: 12, title: "مطبخ", value: "4.30x5.00" }, - { id: 13, title: "مخزن 2", value: "2.00x3.10" }, - { id: 14, title: "غرفة الغسيل", value: "2.40x2.50" }, - { id: 15, title: "غرفة للعمالة المنزلية 1", value: "3.00x3.60" }, - { id: 16, title: "حمام للعمالة المنزلية 1", value: "2.00x1.50" }, - { id: 17, title: "غرفة الخدمات", value: "1.10x1.85" }, + { id: 1, title: 'Entrance', value: '3.20x3.20' }, + { id: 2, title: 'Living Room', value: '4.70x4.30' }, + { id: 3, title: 'Bathroom 1', value: '2.00x1.90' }, + { id: 4, title: 'Dining Room', value: '5.00x5.00' }, + { id: 5, title: 'Terrace 1', value: '5.70x2.00' }, + { id: 6, title: 'Store 1', value: '2.90x1.35' }, + { id: 7, title: 'Men`s Majilas', value: '5.00x7.80' }, + { id: 8, title: 'Washbasins', value: '1.80x2.00' }, + { id: 9, title: 'Bathroom 2', value: '1.70x2.00' }, + { id: 10, title: 'Guest Bedroom', value: '4.70x4.20' }, + { id: 11, title: 'Bathroom 3', value: '2.70x2.00' }, + { id: 12, title: 'Kitchen', value: '4.30x5.00' }, + { id: 13, title: 'Store 2', value: '2.00x3.10' }, + { id: 14, title: 'Laundry Room', value: '2.40x2.50' }, + { id: 15, title: 'Domestic Worker Room 1', value: '3.00x3.60' }, + { id: 16, title: 'Domestic Worker Bathroom 1', value: '2.00x1.50' }, + { id: 17, title: 'Service Room', value: '1.10x1.85' } ], parkingUnits: [ - { id: 1, title: "غرفة للعمالة المنزلية 2", value: "3.00x3.00" }, - { id: 2, title: "حمام للعمالة المنزلية 2", value: "3.00x1.50" }, - { id: 3, title: "خزان المياه", value: "3.00x3.50" }, - { id: 4, title: "الباحة الخارجية", value: "2.40x2.20" }, + { id: 1, title: 'Domestic Worker Room 2', value: '3.00x3.00' }, + { id: 2, title: 'Domestic Worker Bathroom 2', value: '3.00x1.50' }, + { id: 3, title: 'Water Tank', value: '3.00x3.50' }, + { id: 4, title: 'Outdoor Patio', value: '2.40x2.20' } ], firstFloorUnits: [ - { id: 1, title: "غرفة المعيشة", value: "4.85x4.10" }, - { id: 2, title: "غرفة النوم الرئيسية", value: "4.50x5.30" }, - { id: 3, title: "غرفة تبديل الملابس 1", value: "2.10x3.60" }, - { id: 4, title: "غرفة الحمام 1", value: "2.80x3.60" }, - { id: 5, title: "شرفة 1", value: "2.66x0.65" }, - { id: 6, title: "غرفة النوم 1", value: "5.00x4.30" }, - { id: 7, title: "غرفة تبديل الملابس 2", value: "1.70x2.70" }, - { id: 8, title: "غرفة الحمام 2", value: "1.80x2.70" }, - { id: 9, title: "متجر 1", value: "2.90x1.35" }, - { id: 10, title: "غرفة النوم 2", value: "5.00x5.00" }, - { id: 11, title: "غرفة تبديل الملابس 3", value: "1.70x2.70" }, - { id: 12, title: "غرفة الحمام 3", value: "1.80x2.70" }, - { id: 13, title: "شرفة 2", value: "5.75x2.25" }, - { id: 14, title: "غرفة النوم 3", value: "4.45x4.20" }, - { id: 15, title: "غرفة تبديل الملابس 4", value: "2.80x2.40" }, - { id: 16, title: "غرفة الحمام 4", value: "3.10x1.80" }, + { id: 1, title: 'Living Room', value: '4.85x4.10' }, + { id: 2, title: 'Master Bedroom', value: '4.50x5.30' }, + { id: 3, title: 'Dressing Room 1', value: '2.10x3.60' }, + { id: 4, title: 'Bathroom 1', value: '2.80x3.60' }, + { id: 5, title: 'Terrace 1', value: '2.66x0.65' }, + { id: 6, title: 'Bedroom 1', value: '5.00x4.30' }, + { id: 7, title: 'Dressing Room 2', value: '1.70x2.70' }, + { id: 8, title: 'Bathroom 2', value: '1.80x2.70' }, + { id: 9, title: 'Store 1', value: '2.90x1.35' }, + { id: 10, title: 'Bedroom 2', value: '5.00x5.00' }, + { id: 11, title: 'Dressing Room 3', value: '1.70x2.70' }, + { id: 12, title: 'Bathroom 3', value: '1.80x2.70' }, + { id: 13, title: 'Terrace 2', value: '5.75x2.25' }, + { id: 14, title: 'Bedroom 3', value: '4.45x4.20' }, + { id: 15, title: 'Dressing Room 4', value: '2.80x2.40' }, + { id: 16, title: 'Bathroom 4', value: '3.10x1.80' } ], }; @@ -608,7 +609,7 @@ const villaC1M: Villa = { plotArea: "1080", totalBuildUpArea: "597", totalCountBedroms: 6, - villaTheme: "حديث", + villaTheme: "Modern", sliders: [ { id: 1, @@ -634,53 +635,53 @@ const villaC1M: Villa = { }, ], groundFloorUnits: [ - { id: 1, title: "المدخل", value: "3.00x5.00" }, - { id: 2, title: "غرفة المعيشة", value: "6.00x4.20" }, - { id: 3, title: "أحواض غسيل 1", value: "1.20x1.60" }, - { id: 4, title: "غرفة الحمام 1", value: "1.60x1.70" }, - { id: 5, title: "غرفة الطعام", value: "1.60x1.70" }, - { id: 6, title: "غرفة الطعام", value: "1.60x1.70" }, - { id: 7, title: "متجر 1", value: "2.00x2.60" }, - { id: 8, title: "مجلس الرجال", value: "5.00x7.85" }, - { id: 9, title: "أحواض غسيل 2", value: "5.00x7.85" }, - { id: 10, title: "غرفة الحمام 2", value: "1.70x2.55" }, - { id: 11, title: "غرفة نوم الضيوف", value: "3.85x4.25" }, - { id: 12, title: "غرفة الحمام 3", value: "2.00x2.70" }, - { id: 13, title: "مطبخ", value: "4.25x5.15" }, - { id: 14, title: "غرفة للعمالة المنزلية 1", value: "3.00x3.00" }, - { id: 15, title: "حمام للعمالة المنزلية 1", value: "1.80x1.70" }, - { id: 16, title: "غرفة الغسيل", value: "2.80x2.00" }, - { id: 16, title: "غرفة الخدمات", value: "2.00x1.30" }, + {id: 1, title: 'Entrance', value: "3.00x5.00"}, + {id: 2, title: 'Living Room', value: "6.00x4.20"}, + {id: 3, title: 'Washbasins 1', value: "1.20x1.60"}, + {id: 4, title: 'Bathroom 1', value: "1.60x1.70"}, + {id: 5, title: 'Dining Room', value: "1.60x1.70"}, + {id: 6, title: 'Dining Room', value: "1.60x1.70"}, + {id: 7, title: 'Store 1', value: "2.00x2.60"}, + {id: 8, title: 'Men`s Majilas', value: "5.00x7.85"}, + {id: 9, title: 'Washbasins 2', value: "5.00x7.85"}, + {id: 10, title: 'Bathroom 2', value: "1.70x2.55"}, + {id: 11, title: 'Guest BedRoom', value: "3.85x4.25"}, + {id: 12, title: 'Bathroom 3', value: "2.00x2.70"}, + {id: 13, title: 'Kitchen', value: "4.25x5.15"}, + {id: 14, title: 'Domestic Worker Room 1', value: "3.00x3.00"}, + {id: 15, title: 'Domestic Worker Bathroom 1', value: "1.80x1.70"}, + {id: 16, title: 'Laundry Room', value: "2.80x2.00"}, + {id: 16, title: 'Service Room', value: "2.00x1.30"}, ], parkingUnits: [ - { id: 1, title: "غرفة للعمالة المنزلية 2", value: "3.00x3.00" }, - { id: 2, title: "حمام للعمالة المنزلية 2", value: "3.00x1.50" }, - { id: 3, title: "خزان المياه", value: "3.00x3.50" }, - { id: 4, title: "الباحة الخارجية", value: "2.40x2.20" }, + { id: 1, title: 'Domestic Worker Room 2', value: '3.00x3.00' }, + { id: 2, title: 'Domestic Worker Bathroom 2', value: '3.00x1.50' }, + { id: 3, title: 'Watertank', value: '3.00x3.50' }, + { id: 4, title: 'Outdoor Patio', value: '2.40x2.20' } ], firstFloorUnits: [ - { id: 1, title: "غرفة المعيشة", value: "6.00x4.20" }, - { id: 2, title: "مطبخ تحضيري", value: "1.70x2.85" }, - { id: 3, title: "غرفة النوم الرئيسية", value: "5.00x5.00" }, - { id: 4, title: "غرفة تبديل الملابس 1", value: "3.60x2.00" }, - { id: 5, title: "غرفة الحمام 1", value: "3.60x2.70" }, - { id: 6, title: "شرفة 1", value: "5.75x1.50" }, - { id: 7, title: "غرفة النوم 1", value: "5.00x4.00" }, - { id: 8, title: "غرفة تبديل الملابس 2", value: "1.70x2.70" }, - { id: 9, title: "غرفة الحمام 2", value: "1.80x2.70" }, - { id: 10, title: "شرفة 2", value: "4.75x1.60" }, - { id: 11, title: "غرفة النوم 2", value: "4.10x4.30" }, - { id: 12, title: "غرفة الحمام 3", value: "1.80x2.70" }, - { id: 13, title: "شرفة 3", value: "6.30x1.60" }, - { id: 14, title: "غرفة النوم 3", value: "4.90x4.55" }, - { id: 15, title: "غرفة تبديل الملابس 3", value: "1.40x3.25" }, - { id: 16, title: "غرفة الحمام 4", value: "1.80x2.70" }, - { id: 17, title: "شرفة 4", value: "5.40x1.55" }, - { id: 18, title: "غرفة النوم 4", value: "4.90x4.00" }, - { id: 19, title: "غرفة تبديل الملابس 4", value: "1.40x2.55" }, - { id: 20, title: "غرفة الحمام 5", value: "1.80x2.70" }, - { id: 21, title: "شرفة 5", value: "3.35x1.20" }, - ], + { id: 1, title: 'Living Room', value: '6.00x4.20' }, + { id: 2, title: 'Preparatory Kitchen', value: '1.70x2.85' }, + { id: 3, title: 'Master Bedroom', value: '5.00x5.00' }, + { id: 4, title: 'Dressing Room 1', value: '3.60x2.00' }, + { id: 5, title: 'Bathroom 1', value: '3.60x2.70' }, + { id: 6, title: 'Terrace 1', value: '5.75x1.50' }, + { id: 7, title: 'Bedroom 1', value: '5.00x4.00' }, + { id: 8, title: 'Dressing Room 2', value: '1.70x2.70' }, + { id: 9, title: 'Bathroom 2', value: '1.80x2.70' }, + { id: 10, title: 'Terrace 2', value: '4.75x1.60' }, + { id: 11, title: 'Bedroom 2', value: '4.10x4.30' }, + { id: 12, title: 'Bathroom 3', value: '1.80x2.70' }, + { id: 13, title: 'Terrace 3', value: '6.30x1.60' }, + { id: 14, title: 'Bedroom 3', value: '4.90x4.55' }, + { id: 15, title: 'Dressing Room 3', value: '1.40x3.25' }, + { id: 16, title: 'Bathroom 4', value: '1.80x2.70' }, + { id: 17, title: 'Terrace 4', value: '5.40x1.55' }, + { id: 18, title: 'Bedroom 4', value: '4.90x4.00' }, + { id: 19, title: 'Dressing Room 4', value: '1.40x2.55' }, + { id: 20, title: 'Bathroom 5', value: '1.80x2.70' }, + { id: 21, title: 'Terrace 5', value: '3.35x1.20' } + ] }; const villaC1T: Villa = { @@ -688,7 +689,7 @@ const villaC1T: Villa = { plotArea: "1080", totalBuildUpArea: "570", totalCountBedroms: 6, - villaTheme: "تقليدي", + villaTheme: "Traditional", sliders: [ { id: 1, @@ -714,52 +715,52 @@ const villaC1T: Villa = { }, ], groundFloorUnits: [ - { id: 1, title: "المدخل", value: "3.00x3.00" }, - { id: 2, title: "غرفة المعيشة", value: "6.00x4.15" }, - { id: 3, title: "مجلس النساء", value: "4.30x3.90" }, - { id: 4, title: "مجلس الرجال", value: "5.00x7.80" }, - { id: 5, title: "غرفة الطعام", value: "5.00x6.10" }, - { id: 6, title: "أحواض غسيل 1", value: "1.80x2.65" }, - { id: 7, title: "غرفة الحمام 1", value: "1.70x2.55" }, - { id: 8, title: "أحواض غسيل 2", value: "1.20x1.60" }, - { id: 9, title: "غرفة الحمام 2", value: "1.60x1.70" }, - { id: 10, title: "غرفة نوم الضيوف", value: "3.85x5.25" }, - { id: 11, title: "غرفة الحمام 3", value: "2.00x2.70" }, - { id: 12, title: "مطبخ", value: "4.25x5.25" }, - { id: 13, title: "متجر 1", value: "2.00x2.60" }, - { id: 14, title: "غرفة الغسيل", value: "2.80x2.00" }, - { id: 15, title: "غرفة للعمالة المنزلية 1", value: "3.00x3.00" }, - { id: 16, title: "حمام للعمالة المنزلية 1", value: "1.80x1.70" }, - { id: 17, title: "غرفة الخدمات", value: "2.00x1.30" }, - ], + { id: 1, title: 'Entrance', value: '3.00x3.00' }, + { id: 2, title: 'Living Room', value: '6.00x4.15' }, + { id: 3, title: 'Women\'s Majilas', value: '4.30x3.90' }, + { id: 4, title: 'Men\'s Majilas', value: '5.00x7.80' }, + { id: 5, title: 'Dining Room', value: '5.00x6.10' }, + { id: 6, title: 'Washbasins 1', value: '1.80x2.65' }, + { id: 7, title: 'Bathroom 1', value: '1.70x2.55' }, + { id: 8, title: 'Washbasins 2', value: '1.20x1.60' }, + { id: 9, title: 'Bathroom 2', value: '1.60x1.70' }, + { id: 10, title: 'Guest Bedroom', value: '3.85x5.25' }, + { id: 11, title: 'Bathroom 3', value: '2.00x2.70' }, + { id: 12, title: 'Kitchen', value: '4.25x5.25' }, + { id: 13, title: 'Store 1', value: '2.00x2.60' }, + { id: 14, title: 'Laundry Room', value: '2.80x2.00' }, + { id: 15, title: 'Domestic Worker Room 1', value: '3.00x3.00' }, + { id: 16, title: 'Domestic Worker Bathroom 1', value: '1.80x1.70' }, + { id: 17, title: 'Service Room', value: '2.00x1.30' } +], parkingUnits: [ - { id: 1, title: "غرفة للعمالة المنزلية 2", value: "3.00x3.00" }, - { id: 2, title: "حمام للعمالة المنزلية 2", value: "1.80x1.70" }, - { id: 3, title: "خزان المياه", value: "3.00x3.50" }, - { id: 4, title: "الباحة الخارجية", value: "2.40x2.20" }, + { id: 1, title: 'Domestic Worker Room 2', value: '3.00x3.00' }, + { id: 2, title: 'Domestic Worker Bathroom 2', value: '1.80x1.70' }, + { id: 3, title: 'Watertank', value: '3.00x3.50' }, + { id: 4, title: 'Outdoor Patio', value: '2.40x2.20' } ], firstFloorUnits: [ - { id: 1, title: "غرفة المعيشة", value: "6.00x4.20" }, - { id: 2, title: "مطبخ تحضيري", value: "1.80x2.70" }, - { id: 3, title: "غرفة النوم الرئيسية", value: "5.00x5.00" }, - { id: 4, title: "غرفة تبديل الملابس 1", value: "3.60x2.00" }, - { id: 5, title: "غرفة الحمام 1", value: "3.60x2.70" }, - { id: 6, title: "شرفة 1", value: "5.75x1.50" }, - { id: 7, title: "غرفة النوم 1", value: "5.00x4.00" }, - { id: 8, title: "غرفة تبديل الملابس 2", value: "1.70x2.70" }, - { id: 9, title: "غرفة الحمام 2", value: "1.80x2.70" }, - { id: 10, title: "شرفة 2", value: "4.75x1.60" }, - { id: 11, title: "غرفة النوم 2", value: "4.10x4.30" }, - { id: 12, title: "غرفة الحمام 3", value: "1.80x2.70" }, - { id: 13, title: "شرفة 3", value: "5.65x1.60" }, - { id: 14, title: "غرفة النوم 3", value: "4.55x4.90" }, - { id: 15, title: "غرفة تبديل الملابس 3", value: "1.40x3.25" }, - { id: 16, title: "غرفة الحمام 4", value: "1.80x2.70" }, - { id: 17, title: "شرفة 4", value: "5.65x1.60" }, - { id: 18, title: "غرفة النوم 4", value: "4.90x4.00" }, - { id: 19, title: "غرفة تبديل الملابس 4", value: "1.40x2.55" }, - { id: 20, title: "غرفة الحمام 5", value: "4.90x4.00" }, - { id: 21, title: "شرفة 5", value: "2.60x1.35" }, + { id: 1, title: 'Living Room', value: '6.00x4.20' }, + { id: 2, title: 'Preparatory Kitchen', value: '1.80x2.70' }, + { id: 3, title: 'Master Bedroom', value: '5.00x5.00' }, + { id: 4, title: 'Dressing Room 1', value: '3.60x2.00' }, + { id: 5, title: 'Bathroom 1', value: '3.60x2.70' }, + { id: 6, title: 'Terrace 1', value: '5.75x1.50' }, + { id: 7, title: 'Bedroom 1', value: '5.00x4.00' }, + { id: 8, title: 'Dressing Room 2', value: '1.70x2.70' }, + { id: 9, title: 'Bathroom 2', value: '1.80x2.70' }, + { id: 10, title: 'Terrace 2', value: '4.75x1.60' }, + { id: 11, title: 'Bedroom 2', value: '4.10x4.30' }, + { id: 12, title: 'Bathroom 3', value: '1.80x2.70' }, + { id: 13, title: 'Terrace 3', value: '5.65x1.60' }, + { id: 14, title: 'Bedroom 3', value: '4.55x4.90' }, + { id: 15, title: 'Dressing Room 3', value: '1.40x3.25' }, + { id: 16, title: 'Bathroom 4', value: '1.80x2.70' }, + { id: 17, title: 'Terrace 4', value: '5.65x1.60' }, + { id: 18, title: 'Bedroom 4', value: '4.90x4.00' }, + { id: 19, title: 'Dressing Room 4', value: '1.40x2.55' }, + { id: 20, title: 'Bathroom 5', value: '4.90x4.00' }, + { id: 21, title: 'Terrace 5', value: '2.60x1.35' } ], }; @@ -768,7 +769,7 @@ const villaC2M: Villa = { plotArea: "1080", totalBuildUpArea: "603", totalCountBedroms: 6, - villaTheme: "حديث", + villaTheme: "Modern", sliders: [ { id: 1, @@ -794,50 +795,50 @@ const villaC2M: Villa = { }, ], groundFloorUnits: [ - { id: 1, title: "المدخل", value: "4.30x3.25" }, - { id: 2, title: "غرفة المعيشة", value: "5.00x6.20" }, - { id: 3, title: "مجلس النساء", value: "5.00x5.40" }, - { id: 4, title: "مجلس الرجال", value: "5.00x8.00" }, - { id: 5, title: "أحواض غسيل", value: "2.00x2.50" }, - { id: 6, title: "غرفة الحمام 1", value: "1.50x2.50" }, - { id: 7, title: "غرفة الطعام", value: "5.00x4.10" }, - { id: 8, title: "غرفة نوم الضيوف", value: "4.00x4.60" }, - { id: 9, title: "غرفة الحمام 2", value: "2.90x2.00" }, - { id: 10, title: "أحواض غسيل 2", value: "1.20x1.80" }, - { id: 11, title: "غرفة الحمام 3", value: "1.50x2.20" }, - { id: 12, title: "غرفة للعمالة المنزلية 1", value: "3.00x3.40" }, - { id: 13, title: "حمام للعمالة المنزلية 1", value: "1.50x1.70" }, - { id: 14, title: "غرفة الغسيل", value: "1.90x1.55" }, - { id: 15, title: "مطبخ", value: "5.00x4.95" }, - { id: 16, title: "متجر 1", value: "2.00x1.35" }, - { id: 17, title: "غرفة الخدمات", value: "1.20x1.90" }, + { id: 1, title: 'Entrance', value: '4.30x3.25' }, + { id: 2, title: 'Living Room', value: '5.00x6.20' }, + { id: 3, title: 'Women\'s Majilas', value: '5.00x5.40' }, + { id: 4, title: 'Men\'s Majilas', value: '5.00x8.00' }, + { id: 5, title: 'Washbasins', value: '2.00x2.50' }, + { id: 6, title: 'Bathroom 1', value: '1.50x2.50' }, + { id: 7, title: 'Dining Room', value: '5.00x4.10' }, + { id: 8, title: 'Guest Bedroom', value: '4.00x4.60' }, + { id: 9, title: 'Bathroom 2', value: '2.90x2.00' }, + { id: 10, title: 'Washbasins 2', value: '1.20x1.80' }, + { id: 11, title: 'Bathroom 3', value: '1.50x2.20' }, + { id: 12, title: 'Domestic Worker Room 1', value: '3.00x3.40' }, + { id: 13, title: 'Domestic Worker Bathroom 1', value: '1.50x1.70' }, + { id: 14, title: 'Laundry Room', value: '1.90x1.55' }, + { id: 15, title: 'Kitchen', value: '5.00x4.95' }, + { id: 16, title: 'Store 1', value: '2.00x1.35' }, + { id: 17, title: 'Service Room', value: '1.20x1.90' } ], parkingUnits: [ - { id: 1, title: "غرفة للعمالة المنزلية 2", value: "3.00x3.00" }, - { id: 2, title: "حمام للعمالة المنزلية 2", value: "3.00x1.50" }, - { id: 3, title: "خزان المياه", value: "3.00x3.50" }, - { id: 4, title: "الباحة الخارجية", value: "2.40x2.20" }, + { id: 1, title: 'Domestic Worker Room 2', value: '3.00x3.00' }, + { id: 2, title: 'Domestic Worker Bathroom 2', value: '3.00x1.50' }, + { id: 3, title: 'Watertank', value: '3.00x3.50' }, + { id: 4, title: 'Outdoor Patio', value: '2.40x2.20' } ], firstFloorUnits: [ - { id: 1, title: "غرفة المعيشة", value: "4.95x3.95" }, - { id: 2, title: "مطبخ تحضيري", value: "3.65x2.00" }, - { id: 3, title: "غرفة النوم الرئيسية", value: "5.00x5.50" }, - { id: 4, title: "غرفة تبديل الملابس 1", value: "2.20x3.00" }, - { id: 5, title: "غرفة الحمام 1", value: "2.20x3.40" }, - { id: 6, title: "شرفة 1", value: "5.70x1.50" }, - { id: 7, title: "غرفة النوم 1", value: "5.00x4.20" }, - { id: 8, title: "غرفة تبديل الملابس 2", value: "1.80x2.65" }, - { id: 9, title: "غرفة الحمام 2", value: "1.70x2.65" }, - { id: 10, title: "شرفة 2", value: "4.85x2.65" }, - { id: 11, title: "غرفة النوم 2", value: "4.50x4.60" }, - { id: 12, title: "غرفة الحمام 3", value: "2.90x2.00" }, - { id: 13, title: "غرفة النوم 3", value: "5.00x4.50" }, - { id: 14, title: "غرفة تبديل الملابس 3", value: "2.70x1.65" }, - { id: 15, title: "غرفة الحمام 4", value: "2.70x1.75" }, - { id: 16, title: "شرفة 3", value: "5.30x1.60" }, - { id: 17, title: "غرفة النوم 4", value: "4.90x4.65" }, - { id: 18, title: "غرفة تبديل الملابس 4", value: "1.70x2.70" }, - { id: 19, title: "غرفة الحمام 5", value: "1.80x2.70" }, + { id: 1, title: 'Living Room', value: '4.95x3.95' }, + { id: 2, title: 'Preparatory Kitchen', value: '3.65x2.00' }, + { id: 3, title: 'Master Bedroom', value: '5.00x5.50' }, + { id: 4, title: 'Dressing Room 1', value: '2.20x3.00' }, + { id: 5, title: 'Bath Room 1', value: '2.20x3.40' }, + { id: 6, title: 'Terrace 1', value: '5.70x1.50' }, + { id: 7, title: 'Bedroom 1', value: '5.00x4.20' }, + { id: 8, title: 'Dressing Room 2', value: '1.80x2.65' }, + { id: 9, title: 'Bath Room 2', value: '1.70x2.65' }, + { id: 10, title: 'Terrace 2', value: '4.85x2.65' }, + { id: 11, title: 'Bedroom 2', value: '4.50x4.60' }, + { id: 12, title: 'Bath Room 3', value: '2.90x2.00' }, + { id: 13, title: 'Bedroom 3', value: '5.00x4.50' }, + { id: 14, title: 'Dressing Room 3', value: '2.70x1.65' }, + { id: 15, title: 'Bath Room 4', value: '2.70x1.75' }, + { id: 16, title: 'Terrace 3', value: '5.30x1.60' }, + { id: 17, title: 'Bedroom 4', value: '4.90x4.65' }, + { id: 18, title: 'Dressing Room 4', value: '1.70x2.70' }, + { id: 19, title: 'Bath Room 5', value: '1.80x2.70' } ], }; @@ -846,7 +847,7 @@ const villaC2T: Villa = { plotArea: "1080", totalBuildUpArea: "569", totalCountBedroms: 6, - villaTheme: "تقليدي", + villaTheme: "Traditional", sliders: [ { id: 1, @@ -872,50 +873,50 @@ const villaC2T: Villa = { }, ], groundFloorUnits: [ - { id: 1, title: "المدخل", value: "4.30x3.25" }, - { id: 2, title: "غرفة المعيشة", value: "5.00x6.15" }, - { id: 3, title: "مجلس النساء", value: "5.00x5.40" }, - { id: 4, title: "مجلس الرجال", value: "5.00x8.00" }, - { id: 5, title: "أحواض غسيل", value: "2.00x2.50" }, - { id: 6, title: "غرفة الحمام 1", value: "1.50x2.50" }, - { id: 7, title: "غرفة الطعام", value: "5.00x4.10" }, - { id: 8, title: "غرفة نوم الضيوف", value: "4.00x4.60" }, - { id: 9, title: "غرفة الحمام 2", value: "2.90x2.00" }, - { id: 10, title: "أحواض غسيل 2", value: "1.10x1.80" }, - { id: 11, title: "غرفة الحمام 3", value: "1.50x2.20" }, - { id: 12, title: "غرفة للعمالة المنزلية 1", value: "3.00x3.40" }, - { id: 13, title: "حمام للعمالة المنزلية 2", value: "1.50x1.70" }, - { id: 14, title: "غرفة الغسيل", value: "1.85x1.55" }, - { id: 15, title: "مطبخ", value: "5.00x4.90" }, - { id: 16, title: "متجر 1", value: "2.00x1.35" }, - { id: 17, title: "غرفة الخدمات", value: "1.20x1.90" }, + { id: 1, title: 'Entrance', value: '4.30x3.25' }, + { id: 2, title: 'Living Room', value: '5.00x6.15' }, + { id: 3, title: 'Women\'s Majilas', value: '5.00x5.40' }, + { id: 4, title: 'Men\'s Majilas', value: '5.00x8.00' }, + { id: 5, title: 'Wash Basins', value: '2.00x2.50' }, + { id: 6, title: 'Bath Room 1', value: '1.50x2.50' }, + { id: 7, title: 'Dining Room', value: '5.00x4.10' }, + { id: 8, title: 'Guest Bedroom', value: '4.00x4.60' }, + { id: 9, title: 'Bath Room 2', value: '2.90x2.00' }, + { id: 10, title: 'Wash Basins 2', value: '1.10x1.80' }, + { id: 11, title: 'Bath Room 3', value: '1.50x2.20' }, + { id: 12, title: 'Domestic Worker Room 1', value: '3.00x3.40' }, + { id: 13, title: 'Domestic Worker Bathroom 2', value: '1.50x1.70' }, + { id: 14, title: 'Laundry Room', value: '1.85x1.55' }, + { id: 15, title: 'Kitchen', value: '5.00x4.90' }, + { id: 16, title: 'Store 1', value: '2.00x1.35' }, + { id: 17, title: 'Service Room', value: '1.20x1.90' } ], parkingUnits: [ - { id: 1, title: "غرفة للعمالة المنزلية 2", value: "3.00x3.00" }, - { id: 2, title: "حمام للعمالة المنزلية 1", value: "3.00x1.50" }, - { id: 3, title: "خزان المياه", value: "3.00x3.50" }, - { id: 4, title: "الباحة الخارجية", value: "2.40x2.20" }, + { id: 1, title: 'Domestic Worker Room 2', value: '3.00x3.00' }, + { id: 2, title: 'Domestic Worker Bathroom 1', value: '3.00x1.50' }, + { id: 3, title: 'Watertank', value: '3.00x3.50' }, + { id: 4, title: 'Outdoor Patio', value: '2.40x2.20' } ], firstFloorUnits: [ - { id: 1, title: "غرفة المعيشة", value: "5.00x4.00" }, - { id: 2, title: "مطبخ تحضيري", value: "3.65x2.00" }, - { id: 3, title: "غرفة النوم الرئيسية", value: "5.00x5.50" }, - { id: 4, title: "غرفة تبديل الملابس 1", value: "2.20x3.00" }, - { id: 5, title: "غرفة الحمام 1", value: "2.60x3.35" }, - { id: 6, title: "شرفة 1", value: "5.00x1.90" }, - { id: 7, title: "غرفة النوم 1", value: "5.00x4.20" }, - { id: 8, title: "غرفة تبديل الملابس 2", value: "1.80x2.65" }, - { id: 9, title: "غرفة الحمام 2", value: "1.70x2.65" }, - { id: 10, title: "شرفة 2", value: "5.70x1.50" }, - { id: 11, title: "غرفة النوم 2", value: "4.50x4.60" }, - { id: 12, title: "غرفة الحمام 3", value: "2.80x2.00" }, - { id: 13, title: "غرفة النوم 3", value: "5.00x4.50" }, - { id: 14, title: "غرفة تبديل الملابس 3", value: "2.70x1.80" }, - { id: 15, title: "غرفة الحمام 4", value: "2.60x1.70" }, - { id: 16, title: "شرفة 3", value: "5.20x1.50" }, - { id: 17, title: "غرفة النوم 4", value: "4.90x4.65" }, - { id: 18, title: "غرفة تبديل الملابس 4", value: "1.70x2.70" }, - { id: 19, title: "غرفة الحمام 5", value: "1.80x2.70" }, + { id: 1, title: 'Living Room', value: '5.00x4.00' }, + { id: 2, title: 'Preparatory Kitchen', value: '3.65x2.00' }, + { id: 3, title: 'Master Bedroom', value: '5.00x5.50' }, + { id: 4, title: 'Dressing Room 1', value: '2.20x3.00' }, + { id: 5, title: 'Bathroom 1', value: '2.60x3.35' }, + { id: 6, title: 'Terrace 1', value: '5.00x1.90' }, + { id: 7, title: 'Bedroom 1', value: '5.00x4.20' }, + { id: 8, title: 'Dressing Room 2', value: '1.80x2.65' }, + { id: 9, title: 'Bathroom 2', value: '1.70x2.65' }, + { id: 10, title: 'Terrace 2', value: '5.70x1.50' }, + { id: 11, title: 'Bedroom 2', value: '4.50x4.60' }, + { id: 12, title: 'Bathroom 3', value: '2.80x2.00' }, + { id: 13, title: 'Bedroom 3', value: '5.00x4.50' }, + { id: 14, title: 'Dressing Room 3', value: '2.70x1.80' }, + { id: 15, title: 'Bathroom 4', value: '2.60x1.70' }, + { id: 16, title: 'Terrace 3', value: '5.20x1.50' }, + { id: 17, title: 'Bedroom 4', value: '4.90x4.65' }, + { id: 18, title: 'Dressing Room 4', value: '1.70x2.70' }, + { id: 19, title: 'Bathroom 5', value: '1.80x2.70' } ], }; diff --git a/src/icons/ArrowIcon.tsx b/src/icons/ArrowIcon.tsx index b5ec04e..4890397 100644 --- a/src/icons/ArrowIcon.tsx +++ b/src/icons/ArrowIcon.tsx @@ -1,7 +1,6 @@ const ArrowIcon = () => { return ( { return ( <> -
+
diff --git a/src/pages/Mobile/MobileMainPage.tsx b/src/pages/Mobile/MobileMainPage.tsx index 5c9fa91..449923c 100644 --- a/src/pages/Mobile/MobileMainPage.tsx +++ b/src/pages/Mobile/MobileMainPage.tsx @@ -9,7 +9,7 @@ const MobileMainPage = () => { const { setModal, selectedOnMapVilla } = useStore(); const title = selectedOnMapVilla?.type ? selectedOnMapVilla?.type - : "اختر فيلا"; + : "Select a House"; const handleOnClick = () => { setModal();