mayak-common-library 0.0.247 → 0.0.248

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -31,10 +31,6 @@ type SelectChildrenProps = {
31
31
  type LanguageSlugsType = {
32
32
  [key: string]: string;
33
33
  };
34
- declare enum CATALOG_VIEW {
35
- CARD = "card",
36
- MAP = "map"
37
- }
38
34
  type localesProps = {
39
35
  label: string;
40
36
  locale: string;
@@ -1085,10 +1081,6 @@ interface ESGlobalObject extends ESObject {
1085
1081
  region_uk?: string;
1086
1082
  }
1087
1083
 
1088
- declare enum CURRENCY {
1089
- USD = "usd",
1090
- UAH = "uah"
1091
- }
1092
1084
  declare enum MACHINE_NAME {
1093
1085
  RESIDENTIAL = "residential",
1094
1086
  COMMERCE = "commerce",
@@ -1144,41 +1136,11 @@ declare enum MACHINE_NAME {
1144
1136
  P_ROOM_LAYOUT = "shema-kimnat",
1145
1137
  CITY = "city"
1146
1138
  }
1147
- interface FilterTerms {
1148
- [key: string]: string[];
1149
- }
1150
- type TypeFloorKeys = MACHINE_NAME.VALUE_1 | MACHINE_NAME.VALUE_2 | MACHINE_NAME.VALUE_3 | MACHINE_NAME.VALUE_4;
1151
- type TypeRoomKeys = MACHINE_NAME.VALUE_1 | MACHINE_NAME.VALUE_2 | MACHINE_NAME.VALUE_3 | MACHINE_NAME.VALUE_4 | MACHINE_NAME.VALUE_5 | MACHINE_NAME.VALUE_6;
1152
- type TypeStateKeys = MACHINE_NAME.FLAT_RENT | MACHINE_NAME.HOUSE_RENT | MACHINE_NAME.COMMERCIAL_RENT | MACHINE_NAME.HOUSE_SALE | MACHINE_NAME.FLAT_SALE | MACHINE_NAME.COMMERCIAL_SALE | MACHINE_NAME.LAND_SALE;
1153
- type AssignmentStateKeys = MACHINE_NAME.OFFICE | MACHINE_NAME.TRADE_AREA | MACHINE_NAME.WAREHOUSE | MACHINE_NAME.PRODUCTION_FACILITY | MACHINE_NAME.FOOD_SERVICE_OBJECT | MACHINE_NAME.SERVICE_OBJECT | MACHINE_NAME.OTHER_OBJECT | MACHINE_NAME.HOTEL_ROOM | MACHINE_NAME.SHOP | MACHINE_NAME.WHOLE_BUILDING | MACHINE_NAME.LAND_IND_CONSTRUCTION | MACHINE_NAME.LAND_GARDEN | MACHINE_NAME.LAND_AGRICULTURAL | MACHINE_NAME.LAND_COMMERCIAL;
1154
1139
  type SortKeysType = MACHINE_NAME.PRICE_UP | MACHINE_NAME.PRICE_DOWN | MACHINE_NAME.NEW | MACHINE_NAME.OLD;
1155
1140
  declare enum SORT_NAME {
1156
1141
  'price' = "price",
1157
1142
  'novelty' = "novelty"
1158
1143
  }
1159
- type RangeType = {
1160
- min?: number;
1161
- max?: number;
1162
- };
1163
- type SearchQueryObject = {
1164
- areaKitchen?: RangeType;
1165
- areaTotal?: RangeType;
1166
- areaLand?: RangeType;
1167
- assigment?: AssignmentStateKeys[];
1168
- city?: string;
1169
- floor?: TypeFloorKeys;
1170
- sort?: SortKeysType;
1171
- page?: number;
1172
- price?: RangeType;
1173
- roomCount?: TypeRoomKeys[];
1174
- search?: FilterTerms;
1175
- totalFloors?: TypeFloorKeys;
1176
- type: TypeStateKeys;
1177
- currency?: CURRENCY;
1178
- properties?: string[];
1179
- newBuilding?: string;
1180
- view?: CATALOG_VIEW;
1181
- };
1182
1144
 
1183
1145
  interface ToggleSortProps {
1184
1146
  name: SORT_NAME;
@@ -1426,9 +1388,7 @@ interface ISliderObject {
1426
1388
  declare const SliderObject: ({ images }: ISliderObject) => react_jsx_runtime.JSX.Element;
1427
1389
 
1428
1390
  interface BreadCrumbsProps {
1429
- filterValues?: SearchQueryObject;
1430
- lastBreadCrumb?: BreadCrumbsItem;
1431
- breadCrumbsList?: BreadCrumbsItem[];
1391
+ breadCrumbsList: BreadCrumbsItem[];
1432
1392
  }
1433
1393
  declare const BreadCrumbs: FC<BreadCrumbsProps>;
1434
1394
 
package/dist/index.d.ts CHANGED
@@ -31,10 +31,6 @@ type SelectChildrenProps = {
31
31
  type LanguageSlugsType = {
32
32
  [key: string]: string;
33
33
  };
34
- declare enum CATALOG_VIEW {
35
- CARD = "card",
36
- MAP = "map"
37
- }
38
34
  type localesProps = {
39
35
  label: string;
40
36
  locale: string;
@@ -1085,10 +1081,6 @@ interface ESGlobalObject extends ESObject {
1085
1081
  region_uk?: string;
1086
1082
  }
1087
1083
 
1088
- declare enum CURRENCY {
1089
- USD = "usd",
1090
- UAH = "uah"
1091
- }
1092
1084
  declare enum MACHINE_NAME {
1093
1085
  RESIDENTIAL = "residential",
1094
1086
  COMMERCE = "commerce",
@@ -1144,41 +1136,11 @@ declare enum MACHINE_NAME {
1144
1136
  P_ROOM_LAYOUT = "shema-kimnat",
1145
1137
  CITY = "city"
1146
1138
  }
1147
- interface FilterTerms {
1148
- [key: string]: string[];
1149
- }
1150
- type TypeFloorKeys = MACHINE_NAME.VALUE_1 | MACHINE_NAME.VALUE_2 | MACHINE_NAME.VALUE_3 | MACHINE_NAME.VALUE_4;
1151
- type TypeRoomKeys = MACHINE_NAME.VALUE_1 | MACHINE_NAME.VALUE_2 | MACHINE_NAME.VALUE_3 | MACHINE_NAME.VALUE_4 | MACHINE_NAME.VALUE_5 | MACHINE_NAME.VALUE_6;
1152
- type TypeStateKeys = MACHINE_NAME.FLAT_RENT | MACHINE_NAME.HOUSE_RENT | MACHINE_NAME.COMMERCIAL_RENT | MACHINE_NAME.HOUSE_SALE | MACHINE_NAME.FLAT_SALE | MACHINE_NAME.COMMERCIAL_SALE | MACHINE_NAME.LAND_SALE;
1153
- type AssignmentStateKeys = MACHINE_NAME.OFFICE | MACHINE_NAME.TRADE_AREA | MACHINE_NAME.WAREHOUSE | MACHINE_NAME.PRODUCTION_FACILITY | MACHINE_NAME.FOOD_SERVICE_OBJECT | MACHINE_NAME.SERVICE_OBJECT | MACHINE_NAME.OTHER_OBJECT | MACHINE_NAME.HOTEL_ROOM | MACHINE_NAME.SHOP | MACHINE_NAME.WHOLE_BUILDING | MACHINE_NAME.LAND_IND_CONSTRUCTION | MACHINE_NAME.LAND_GARDEN | MACHINE_NAME.LAND_AGRICULTURAL | MACHINE_NAME.LAND_COMMERCIAL;
1154
1139
  type SortKeysType = MACHINE_NAME.PRICE_UP | MACHINE_NAME.PRICE_DOWN | MACHINE_NAME.NEW | MACHINE_NAME.OLD;
1155
1140
  declare enum SORT_NAME {
1156
1141
  'price' = "price",
1157
1142
  'novelty' = "novelty"
1158
1143
  }
1159
- type RangeType = {
1160
- min?: number;
1161
- max?: number;
1162
- };
1163
- type SearchQueryObject = {
1164
- areaKitchen?: RangeType;
1165
- areaTotal?: RangeType;
1166
- areaLand?: RangeType;
1167
- assigment?: AssignmentStateKeys[];
1168
- city?: string;
1169
- floor?: TypeFloorKeys;
1170
- sort?: SortKeysType;
1171
- page?: number;
1172
- price?: RangeType;
1173
- roomCount?: TypeRoomKeys[];
1174
- search?: FilterTerms;
1175
- totalFloors?: TypeFloorKeys;
1176
- type: TypeStateKeys;
1177
- currency?: CURRENCY;
1178
- properties?: string[];
1179
- newBuilding?: string;
1180
- view?: CATALOG_VIEW;
1181
- };
1182
1144
 
1183
1145
  interface ToggleSortProps {
1184
1146
  name: SORT_NAME;
@@ -1426,9 +1388,7 @@ interface ISliderObject {
1426
1388
  declare const SliderObject: ({ images }: ISliderObject) => react_jsx_runtime.JSX.Element;
1427
1389
 
1428
1390
  interface BreadCrumbsProps {
1429
- filterValues?: SearchQueryObject;
1430
- lastBreadCrumb?: BreadCrumbsItem;
1431
- breadCrumbsList?: BreadCrumbsItem[];
1391
+ breadCrumbsList: BreadCrumbsItem[];
1432
1392
  }
1433
1393
  declare const BreadCrumbs: FC<BreadCrumbsProps>;
1434
1394
 
package/dist/index.js CHANGED
@@ -6,4 +6,4 @@
6
6
  `,onClick:()=>i(n),children:l},l))}),(0,b3.jsx)(K3.Box,{className:"flex gap-[128px] md:gap-[19px] sm:flex-wrap sm:mt-[10px] sm:gap-x-0 sm:gap-y-[20px]",children:r[s].map(l=>(0,b3.jsx)(g5,{title:l.title,links:l.links},l.title))})]})}var N4=require("react/jsx-runtime");function O8({classes:t}){let e=(0,ie.useTranslations)();return(0,N4.jsx)(i7.Box,{className:`bg-gray2 mt-[80px] py-[50px] md:mt-[40px] md:pt-[30px] md:pb-[45px]${c(t)}`,children:(0,N4.jsxs)(i7.Container,{maxWidth:p,children:[(0,N4.jsx)(M4,{title:e("\u041F\u0440\u043E\u0434\u0430\u0436 \u043D\u0435\u0440\u0443\u0445\u043E\u043C\u043E\u0441\u0442\u0456"),tabs:["\u041A\u0432\u0430\u0440\u0442\u0438\u0440\u0438","\u0411\u0443\u0434\u0438\u043D\u043A\u0438","\u041A\u043E\u043C\u0435\u0440\u0446\u0456\u044F","\u0417\u0435\u043C\u043B\u044F"],contents:[V8,R8,G8,ae]}),(0,N4.jsx)(M4,{title:e("\u041E\u0440\u0435\u043D\u0434\u0430 \u043D\u0435\u0440\u0443\u0445\u043E\u043C\u043E\u0441\u0442\u0456"),tabs:["\u041A\u0432\u0430\u0440\u0442\u0438\u0440\u0438","\u0411\u0443\u0434\u0438\u043D\u043A\u0438","\u041A\u043E\u043C\u0435\u0440\u0446\u0456\u044F"],contents:[V8,R8,G8],classes:"mt-[20px] md:mt-[16px] sm:!mt-[30px]"})]})})}var n7=require("@mui/material"),l7=g(require("@mui/material/Grid2"));var I4=require("@mui/material");var g1=require("@mui/material");var pe=require("@mui/material");var le=g(require("next/link"));var ne=require("react/jsx-runtime");function I({data:t,type:e,title:o,classes:r,blank:s=!0}){return(0,ne.jsx)(le.default,{href:B0(t,e)||"/public",target:s?"_blank":"_self",className:r||"",children:o})}var o3=require("react/jsx-runtime");function u5({classes:t,telegram:e,whatsapp:o,instagram:r}){return(0,o3.jsxs)(pe.Box,{className:`flex gap-[16px]${t?" "+t:""}`,children:[r&&(0,o3.jsx)(I,{data:r,type:"link",title:(0,o3.jsx)(G3,{className:"hover:filter-gold2"})}),o&&(0,o3.jsx)(I,{data:o,type:"link",title:(0,o3.jsx)(F9,{className:"hover:filter-gold2"})}),e&&(0,o3.jsx)(I,{data:e,type:"link",title:(0,o3.jsx)(W9,{className:"hover:filter-gold2"})})]})}var Ce=require("next-intl"),E=require("react/jsx-runtime");function h5({classes:t,offices:e}){let o=(0,Ce.useTranslations)();return(0,E.jsx)(g1.Box,{className:`flex flex-col gap-[26px] md:gap-[22px]${c(t)}`,children:e?.map(r=>(0,E.jsxs)(g1.Box,{className:"flex justify-between gap-[45px] relative text-dark sm:flex-wrap md:gap-[11px] md:pb-[18px]",children:[(0,E.jsxs)(g1.Box,{className:"flex flex-col gap-[20px]",children:[(0,E.jsxs)(g1.Box,{className:"flex gap-[10px] pl-[35px] relative",children:[(0,E.jsx)(I,{data:`${r.city}, ${r.address}`,type:"googleMaps",title:(0,E.jsx)(J9,{className:"hover:filter-gold2"}),classes:"absolute left-0 top-0"}),(0,E.jsxs)(g1.Box,{className:"flex flex-col gap-[10px]",children:[(0,E.jsxs)(g1.Typography,{component:"span",className:"text-14",children:[(0,E.jsx)(g1.Typography,{component:"span",className:"font-extrabold",children:r?.city}),", ",r?.address]}),r?.site&&(0,E.jsx)(I,{data:r.site,type:"link",title:b0(r.site),classes:"font-extrabold"})]})]}),(0,E.jsxs)(g1.Box,{className:"flex gap-[10px] pl-[35px] relative",children:[(0,E.jsx)(I,{data:`${r.city}, ${r.address}`,type:"googleMaps",title:(0,E.jsx)(t8,{className:"hover:filter-gold2"}),classes:"absolute left-0 top-0"}),(0,E.jsxs)(g1.Box,{className:"flex flex-col gap-[10px]",children:[(0,E.jsx)(g1.Typography,{component:"span",className:"font-extrabold",children:o("Working time")}),(0,E.jsx)(g1.Typography,{component:"span",className:"text-gray",children:r.workTime})]})]})]}),(0,E.jsxs)(g1.Box,{className:"flex flex-col max-w-[200px] w-full sm:max-w-[unset] md:gap-[11px]",children:[r?.phone&&(0,E.jsx)(I,{classes:"flex gap-[7px] items-center group/phone",data:r.phone,type:"tel",blank:!1,title:(0,E.jsxs)(E.Fragment,{children:[(0,E.jsx)(R9,{className:"group-hover/phone:filter-gold2"}),(0,E.jsx)(g1.Typography,{component:"span",className:"text-14",children:n1("kyiv",r.phone)})]})}),r?.email&&(0,E.jsx)(I,{classes:"flex gap-[7px] items-center group/email mt-[11px]",data:r.email,type:"mail",blank:!1,title:(0,E.jsxs)(E.Fragment,{children:[(0,E.jsx)(E9,{className:"group-hover/email:filter-gold2"}),(0,E.jsx)(g1.Typography,{component:"span",className:"text-14",children:r.email})]})}),(0,E.jsx)(u5,{classes:"mt-[30px] !gap-[12px] md:!gap-[10px]",instagram:r?.instagram,telegram:r?.telegram,whatsapp:r?.whatsapp})]})]},r?.address))})}var Q3=require("react/jsx-runtime");function y5({text:t,offices:e,classes:o,title:r}){return(0,Q3.jsxs)(I4.Box,{className:`flex flex-col gap-[28px] md:gap-[20px]${c(o)}`,children:[(0,Q3.jsxs)(I4.Box,{className:"flex flex-col gap-[10px]",children:[(0,Q3.jsx)(I4.Typography,{component:"span",className:"!text-32 font-extrabold",children:r}),(0,Q3.jsx)(I4.Typography,{component:"span",className:"text-14 text-gray",children:t})]}),(0,Q3.jsx)(h5,{offices:e})]})}var B3=require("react/jsx-runtime");function U8({classes:t,offices:e,title:o,text:r,children:s}){return(0,B3.jsx)(n7.Container,{maxWidth:p,className:`${c(t)}`,children:(0,B3.jsxs)(l7.default,{container:!0,columnSpacing:10,children:[(0,B3.jsx)(l7.default,{size:{md:6,xs:12},children:(0,B3.jsx)(y5,{text:r,offices:e,title:o})}),(0,B3.jsx)(l7.default,{size:{md:6,xs:12},children:(0,B3.jsx)(n7.Box,{className:"bg-white p-[40px] flex flex-col gap-4 md:py-[30px] sm:mx-[-30px] md:px-[60px] sm:px-[30px]",children:s})})]})})}var ce=require("@mui/material");var h1=require("react"),me=require("keen-slider/react"),v3=require("@mui/material");var u1=require("react/jsx-runtime");function O1({children:t,slides:e=3,spacing:o=24,title:r,linkComponent:s,options:i,dots:l=!0,preLoaded:n}){let[f,u]=(0,h1.useState)(0),[y,w]=(0,h1.useState)([]),B=(0,h1.useRef)([]);(0,h1.useEffect)(()=>{B.current=y},[y]);let[b,k]=(0,me.useKeenSlider)({slideChanged(_){let N=_.track.details.rel,H=n?N:N-(e-1)!==h1.Children.count(t)?N+(e-1):N,j=h1.Children.count(t),m3=[...B.current];m3[H]=!0,H>0&&(m3[H-1]=!0),H<j-1&&(m3[H+1]=!0),u(H),w(m3)},...i||{slides:{perView:e,spacing:o},mode:"snap"}});return(0,h1.useEffect)(()=>{let _=h1.Children.count(t),N=Array(_).fill(!1);if(n){for(let H=0;H<n;H++)N[H]=!0;N[_-1]=!0}else for(let H=0;H<e;H++)N[H]=!0;w(N)},[e]),(0,u1.jsxs)(v3.Stack,{children:[r?(0,u1.jsxs)(v3.Stack,{justifyContent:"space-between",alignItems:"center",direction:"row",className:"mb-[20px]",children:[(0,u1.jsx)(v3.Typography,{className:"!text-28 font-extrabold",children:r}),(0,u1.jsxs)(v3.Box,{className:"flex gap-[26px] items-center flex-row",children:[s||null,(0,u1.jsxs)(v3.Box,{className:"flex gap-[10px] items-center",children:[(0,u1.jsx)(Q1,{isblack:"true",className:"p-0",onClick:_=>{_.preventDefault(),k.current?.prev()},children:(0,u1.jsx)(Q2,{style:{transform:"scale(0.5) "}})}),(0,u1.jsx)(Q1,{isblack:"true",className:"p-0",onClick:_=>{_.preventDefault(),k.current?.next()},children:(0,u1.jsx)(Q2,{style:{transform:"scale(0.5) rotate(180deg)"}})})]})]})]}):null,(0,u1.jsx)("div",{children:(0,u1.jsx)("div",{ref:b,className:"keen-slider",children:h1.Children.map(t,(_,N)=>(0,u1.jsx)("div",{className:"keen-slider__slide",children:y[N]?_:null}))})}),l&&k.current&&h1.Children.count(t)>e?(0,u1.jsx)("div",{className:"flex justify-center gap-[16px] mt-[30px] md:mt-[20px]",children:Array.from({length:Math.ceil(h1.Children.count(t)/e)}).map((_,N)=>(0,u1.jsx)("div",{onClick:()=>{if(!k.current)return;let H=Math.min(N*e,h1.Children.count(t)-e);k.current.moveToIdx(H)},className:"dot-slider"+(f>=N*e&&f<(N+1)*e?" dot-slider_active":"")},N))}):null]})}var _4=require("react/jsx-runtime");function P8({classes:t,images:e,title:o}){let{md:r,xs:s}=A();return(0,_4.jsxs)(ce.Box,{className:`bg-white py-[54px] text-center md:py-[40px]${c(t)}`,children:[(0,_4.jsx)(T,{className:"block w-fit mb-[30px] mx-auto",children:o}),(0,_4.jsx)(O1,{dots:!1,slides:r?r&&!s?3:2:6,spacing:20,children:e?.map((i,l)=>(0,_4.jsx)(x,{src:i,alt:"Image",classesWrapper:"h-[80px] md:h-[60px]",objectFit:"object-contain"},l))})]})}var H3=require("@mui/material"),be=require("react");var Z8=g(require("@mui/material/Grid2"));var q1=require("@mui/material");var U1=require("react/jsx-runtime");function L5({image_url:t,name:e,position:o,text:r}){return(0,U1.jsxs)(q1.Box,{className:"group/card",children:[(0,U1.jsxs)(q1.Box,{className:"relative h-[300px] md:h-[220px] xs:!h-[295px]",children:[(0,U1.jsx)(q1.Box,{className:"w-full h-full bg-gray-medium group-hover/card:brightness-[50%] duration-500",children:(0,U1.jsx)(x,{src:t,alt:e,objectFit:"object-contain",objectPosition:"object-bottom"})}),(0,U1.jsxs)(q1.Box,{className:"transition-opacity duration-500 opacity-0 absolute top-[20px] left-[30px] right-[30px] group-hover/card:opacity-100 flex flex-col text-white",children:[(0,U1.jsx)(q1.Typography,{component:"span",className:"text-16 font-extrabold sm:text-12",children:e}),(0,U1.jsx)(q1.Typography,{component:"span",className:"mt-[4px] sm:text-12",children:o}),(0,U1.jsx)(q1.Typography,{component:"span",className:"mt-[11px] text-12 !leading-[16px] sm:text-12",children:r})]})]}),(0,U1.jsxs)(q1.Box,{className:"mt-[20px] text-center mx-auto flex flex-col w-10/12 gap-[4px]",children:[(0,U1.jsx)(q1.Typography,{component:"span",className:"text-16 font-extrabold sm:text-12 xs:!text-16",children:e}),(0,U1.jsx)(q1.Typography,{component:"span",className:"text-gray sm:text-12 xs:!text-14",children:o})]})]})}var X1=require("@mui/material");var WL=require("react"),W8=require("react/jsx-runtime"),Os=t=>(0,W8.jsx)("svg",{width:16,height:17,viewBox:"0 0 16 17",fill:"none",xmlns:"http://www.w3.org/2000/svg",...t,children:(0,W8.jsx)("path",{d:"M12.2427 3.54717C13.3443 4.64859 13.9743 6.13524 13.9995 7.69278C14.0248 9.25031 13.4433 10.7566 12.378 11.8932L12.2427 12.0332L9.41404 14.8612C9.05512 15.2199 8.57329 15.4287 8.06614 15.4454C7.55899 15.4621 7.06445 15.2854 6.6827 14.9512L6.5867 14.8612L3.75737 12.0325C2.63215 10.9073 2 9.38114 2 7.78983C2 6.19852 2.63215 4.67239 3.75737 3.54717C4.8826 2.42194 6.40873 1.78979 8.00004 1.78979C9.59135 1.78979 11.1175 2.42194 12.2427 3.54717ZM8.00004 5.78983C7.73739 5.78983 7.47732 5.84156 7.23467 5.94207C6.99202 6.04258 6.77154 6.1899 6.58582 6.37562C6.40011 6.56134 6.25279 6.78181 6.15228 7.02447C6.05177 7.26712 6.00004 7.52719 6.00004 7.78983C6.00004 8.05248 6.05177 8.31255 6.15228 8.5552C6.25279 8.79785 6.40011 9.01833 6.58582 9.20405C6.77154 9.38976 6.99202 9.53708 7.23467 9.63759C7.47732 9.7381 7.73739 9.78983 8.00004 9.78983C8.53047 9.78983 9.03918 9.57912 9.41425 9.20405C9.78932 8.82897 10 8.32026 10 7.78983C10 7.2594 9.78932 6.75069 9.41425 6.37562C9.03918 6.00055 8.53047 5.78983 8.00004 5.78983Z",stroke:"#757575",strokeLinecap:"round",strokeLinejoin:"round"})}),D8=Os;var de=require("next-intl"),e1=require("react/jsx-runtime"),Us=({slug:t,imgSrc:e,title:o,address:r,developer:s,price:i,houseTypes:l,href:n})=>{let f=(0,de.useTranslations)();return(0,e1.jsxs)(h,{href:`${n}/${t}`,className:"flex flex-col noHover",children:[(0,e1.jsx)(x,{contentful:!1,src:e,classesWrapper:"h-[260px] w-full",sizes:"400px"}),(0,e1.jsxs)(X1.Box,{className:"pt-[20px] p-[30px] flex flex-col bg-white gap-2",children:[(0,e1.jsxs)(X1.Box,{className:"flex flex-col gap-1",children:[(0,e1.jsx)(X1.Typography,{className:"text-18 font-extrabold xs:text-16 overflow-hidden text-ellipsis whitespace-nowrap max-w-full",children:o}),(0,e1.jsxs)(X1.Box,{className:"flex items-center flex-row gap-1 ",children:[(0,e1.jsx)(D8,{}),(0,e1.jsx)(X1.Typography,{className:"text-12 text-gray mt-[2px]",children:r})]})]}),(0,e1.jsxs)(X1.Box,{className:"flex flex-col gap-1",children:[(0,e1.jsxs)(X1.Box,{className:"text-12",children:[(0,e1.jsxs)("span",{className:"font-extrabold",children:[f("Price from"),":"]}),(0,e1.jsx)("span",{className:"text-gray ml-[5px]",children:C2(Number(i))})]}),(0,e1.jsxs)(X1.Box,{className:"text-12",children:[(0,e1.jsxs)("span",{className:"font-extrabold",children:[f("Developer"),":"]}),(0,e1.jsx)("span",{className:"text-gray ml-[5px]",children:s})]})]}),(0,e1.jsx)(X1.Box,{className:"flex gap-[6px]",children:l?.map((u,y)=>(0,e1.jsx)(X1.Box,{className:"border-[1px] border-custom-gray-medium border-solid py-[2.5px] px-[10px] text-[12px] leading-[19px]",children:u},y))})]})]})},w5=Us;var k3=require("@mui/material");var fe=require("next-intl");var D2=require("react/jsx-runtime"),Ps=({imageUrl:t,classes:e,title:o,price:r,slug:s,whiteBottom:i=!1,href:l})=>{let n=(0,fe.useTranslations)();return(0,D2.jsxs)(h,{href:s?`${l}/${s}`:l,className:`block group/card bg-gray-light relative ${e?" "+e:""}`,children:[(0,D2.jsx)(x,{contentful:!1,src:t,alt:o,classesImg:"simpleZoomImg group-hover/card:simpleZoomImgHover",classesWrapper:"overflow-hidden h-[260px] sm:h-[240px] w-full xs:h-[260px]",sizes:"(max-width: 640px) 25vw,(max-width: 768px) 25vw, (max-width: 1024px) 25vw, 25vw"}),i?(0,D2.jsxs)(k3.Box,{className:"py-[24px] flex flex-col gap-[2px] md:pt-[16px] items-center bg-accent-white sm:pt-[20px] sm:pb-[30px]",children:[(0,D2.jsx)(k3.Typography,{component:"span",className:"text-18 font-extrabold text-dark sm:text-16",children:o}),(0,D2.jsx)(k3.Typography,{component:"span",className:"text-gray trim-4 text-12",children:`${n("Price from")}: ${C2(Number(r))}`})]}):(0,D2.jsxs)(k3.Stack,{className:"absolute p-[20px] bottom-0 bg-black-bottom-gradient w-full h-full justify-end",children:[(0,D2.jsx)(N1,{smallerXs:!0,className:"text-accent-white",children:o}),(0,D2.jsx)(k3.Typography,{className:"text-accent-white text-12 mt-[6px] sm:mt-[2px]",children:`${n("Price from")} ${C2(Number(r))}`})]})]})},b5=Ps;var xe=require("@mui/material");var ow=require("react"),Ws=require("react/jsx-runtime");var sw=require("react"),Ds=require("react/jsx-runtime");var Fs=require("next-intl"),Zs=g(require("next/image"));var ge=require("react/jsx-runtime");var F8=require("@mui/material");var q3=require("react/jsx-runtime");function p7({link:t,title:e,image_url:o}){return(0,q3.jsx)(h,{href:t,className:"group/card",children:(0,q3.jsxs)(F8.Box,{className:"flex flex-col gap-[16px] sm:gap-[10px] sm:w-full",children:[(0,q3.jsx)(x4,{src:o,alt:e,height:"h-[300px] md:h-[240px]",classesImg:"simpleZoomImg group-hover/card:simpleZoomImgHover",classesWrapper:"overflow-hidden"}),(0,q3.jsx)(F8.Box,{className:"flex flex-col gap-[6px]",children:(0,q3.jsx)(N1,{smallerXs:!0,className:" text-16 group-hover/card:text-gold2 ",children:e})})]})})}var Le=require("@mui/material");var Bw=require("react"),Ys=require("react/jsx-runtime");var js=require("next-intl");var qs=require("next-intl");var he=require("@mui/material");var Hw=require("react"),zs=require("react/jsx-runtime");var Iw=require("react"),Ks=require("react/jsx-runtime");var Aw=require("react"),Qs=require("react/jsx-runtime");var Vw=require("react"),ue=require("react/jsx-runtime");var ye=require("react/jsx-runtime");var we=require("react/jsx-runtime");var Be=require("next-intl"),p1=require("react/jsx-runtime");function Y8({team:t,title:e,text:o,classes:r,full:s=!1}){let[i,l]=(0,be.useState)(1),{md:n,sm:f,xs:u}=A(),y=n?9:8,w=(0,Be.useTranslations)(),B=()=>{l(i+1)};return t?.length?(0,p1.jsx)(H3.Box,{className:`bg-gray-light mt-[80px] md:mt-[40px] sm:!mt-[30px]${r?" "+r:""}`,children:(0,p1.jsxs)(H3.Container,{maxWidth:p,children:[(0,p1.jsxs)(H3.Box,{className:"text-center w-3/4 mx-auto sm:w-full xs:text-start",children:[(0,p1.jsx)(T,{leftXs:!0,children:e}),(0,p1.jsx)(H3.Typography,{className:"mt-[10px] text-gray sm:text-12/[19px] xs:!text-14",children:o})]}),(0,p1.jsx)(H3.Box,{className:"mt-[14px] md:mt-[20px]",children:s?(0,p1.jsx)(Z8.default,{container:!0,columnSpacing:{sm:2.25,xs:0},rowSpacing:{sm:2.5,xs:5},children:t.slice(0,i*y).map((b,k)=>(0,p1.jsx)(Z8.default,{size:{lg:3,sm:4,xs:12},children:(0,p1.jsx)(L5,{image_url:b.imageUrl,name:r5(b.firstName,b.lastName),position:b.position,text:b.description})},k))}):(0,p1.jsx)(O1,{slides:u?1:f?3:4,spacing:18,children:t.map((b,k)=>(0,p1.jsx)(L5,{image_url:b.imageUrl,name:r5(b.firstName,b.lastName),position:b.position,text:b.description},k))})}),s&&i*y<t.length&&(0,p1.jsx)(S,{title:w("Show more"),onClick:B,classes:"mt-[30px] !mx-auto block"})]})}):(0,p1.jsx)(p1.Fragment,{})}var S4=require("@mui/material");var ve=require("@mui/material"),ke=require("next-intl"),C7=require("react-hook-form");var z8=require("@mui/material"),X3=require("react/jsx-runtime"),Js=()=>(0,X3.jsxs)(X3.Fragment,{children:[(0,X3.jsx)(z8.Typography,{component:"span",className:"!text-28 font-extrabold md:text-16 w-2/3",children:"Thank you"}),(0,X3.jsx)(z8.Typography,{component:"span",className:"mt-[20px] text-16 font-extrabold md:mt-[12px] md:text-12 sm:!text-16 sm:!mt-[18px]",children:"We will contact you shortly"})]}),T4=Js;var j3=require("react/jsx-runtime");function J3({classes:t}){let e=(0,ke.useTranslations)(),o=(0,C7.useForm)(O0),{handleSubmit:r,formState:{isSubmitSuccessful:s,isSubmitting:i}}=o,l=async n=>{await g3({...n,question:"\u0417\u0430\u0442\u0435\u043B\u0435\u0444\u043E\u043D\u0443\u0439\u0442\u0435 \u043C\u0435\u043D\u0456",name:""})};return(0,j3.jsx)(C7.FormProvider,{...o,children:s?(0,j3.jsx)(T4,{}):(0,j3.jsxs)(ve.Box,{className:`flex h-[38px] md:flex-wrap md:gap-[16px] md:w-full md:h-auto${t?" "+t:""}`,component:"form",onSubmit:r(l),children:[(0,j3.jsx)(h3,{name:"phoneNumber",border:!0,showError:!1,format:"",placeholder:""}),(0,j3.jsx)(S,{loading:i,type:"submit",title:e("Call me"),classes:"!w-[260px]"})]})})}var A4=require("react/jsx-runtime");function K8({classes:t,title:e}){return(0,A4.jsx)(S4.Container,{maxWidth:p,className:`mt-[55px] md:mt-[19px]${t?" "+t:""}`,children:(0,A4.jsxs)(S4.Box,{className:"flex flex-col gap-[20px] mx-auto w-fit items-center md:items-start",children:[(0,A4.jsx)(S4.Typography,{component:"span",className:"font-extrabold text-30 md:text-16",children:e}),(0,A4.jsx)(J3,{})]})})}var F2=require("@mui/material");var m7=require("react"),He=require("keen-slider/react"),c7=g(require("@mui/material/Grid2")),Me=require("next-intl");var q=require("react/jsx-runtime");function Q8({caseItems:t,classes:e}){let o=(0,Me.useTranslations)(),[r,s]=(0,m7.useState)(0),[i,l]=(0,m7.useState)(!1),[n,f]=(0,m7.useState)([]),[u,y]=(0,He.useKeenSlider)({slides:t?.length,loop:!0,detailsChanged(b){let k=b.track.details.slides.map(_=>_.portion);f(k)},slideChanged(b){s(b.track.details.rel)},created(){l(!0)}}),{windowSize:w,sm:B}=A();return t?.length?(0,q.jsxs)(F2.Box,{className:`fader${e?" "+e:""}`,ref:u,children:[(0,q.jsx)(F2.Container,{maxWidth:p,children:(0,q.jsx)("h2",{className:"font-extrabold !text-28 normal-case md:text-16 pt-[140px] md:py-[30px]",children:o("Cases")})}),t.map((b,k)=>(0,q.jsxs)(F2.Box,{className:"fader__slide",style:{opacity:n[k]},children:[!B&&w<1700&&(0,q.jsx)(x,{src:b.imageUrl,alt:"Image",classesWrapper:"!absolute top-0 right-0 bottom-0 !w-1/2 h-full"}),(0,q.jsx)(F2.Container,{maxWidth:p,children:(0,q.jsxs)(c7.default,{container:!0,children:[(0,q.jsx)(c7.default,{size:{sm:12,xs:12,md:6},children:(0,q.jsxs)(F2.Box,{className:"relative pt-[191px] pb-[236px] pr-[77px] flex flex-col gap-[20px] md:pt-[60px] md:pb-[30px] md:gap-[10px] sm:pr-0",children:[(0,q.jsx)(F2.Typography,{component:"span",className:"font-extrabold",children:b.text1}),(0,q.jsx)(F2.Typography,{component:"span",className:"text-gray",children:b.text2}),i&&y.current&&(0,q.jsx)("div",{className:"flex gap-[10px] mt-[25px] md:mt-[16px] ",children:[...Array(y.current.track.details.slides.length).keys()].map(_=>(0,q.jsx)("div",{onClick:()=>{y.current?.moveToIdx(_)},className:"dot-slider dot-slider_big"+(r===_?" dot-slider_active":"")},_))})]})}),(0,q.jsxs)(c7.default,{size:{sm:6,xs:12},className:"sm:w-full",children:[!B&&w>1700&&(0,q.jsx)(x,{src:b.imageUrl,alt:"Image",classesWrapper:"w-[50vw] h-[738px]"}),B&&(0,q.jsx)(x,{src:b.imageUrl,alt:"Image",classesWrapper:"md:mx-[-60px] sm:mx-[-30px] md:w-[unset] h-[413px]"})]})]})})]},k))]}):(0,q.jsx)(q.Fragment,{})}var d7=require("@mui/material"),q8=g(require("@mui/material/Grid2"));var M3=require("react/jsx-runtime");function X8({title:t,categories:e,classes:o=""}){return(0,M3.jsx)(d7.Box,{className:`my-[80px] bg-gray-light md:mt-[30px]${o&&" "+o}`,children:(0,M3.jsxs)(d7.Container,{maxWidth:p,children:[(0,M3.jsx)(T,{leftXs:!0,children:t}),(0,M3.jsx)(q8.default,{container:!0,columnSpacing:2.25,rowSpacing:4,className:"mt-[20px] md:mt-[10px]",children:e?.map((r,s)=>(0,M3.jsx)(q8.default,{size:{xs:12,sm:s+1===e?.length?12:4,lg:s+1===e?.length?6:3},children:(0,M3.jsx)(p7,{image_url:r?.imageUrl||"",title:r?.title||"",link:r?.link||"/"})},r?.title))})]})})}var j1=require("@mui/material");var o1=require("react/jsx-runtime");function j8({classes:t,box:e,title:o,text:r,actionComponent:s}){return(0,o1.jsx)(j1.Box,{className:`bg-white py-[70px] sm:py-[40px] xs:py-[30px]${c(t)}`,children:(0,o1.jsxs)(j1.Container,{maxWidth:p,children:[(0,o1.jsxs)(j1.Box,{className:"flex flex-col w-1/2 sm:w-5/6 xs:w-full mx-auto text-center",children:[(0,o1.jsx)(T,{children:o}),(0,o1.jsx)(j1.Typography,{component:"span",className:"text-gray mt-[10px] sm:text-12 xs:text-14",children:r})]}),(0,o1.jsx)(j1.Box,{className:"mt-[30px] grid-cols-4 grid gap-x-[20px] gap-y-[50px] md:grid-cols-2 md:gap-[20px] sm:mt-[20px] xs:grid-cols-1 xs:gap-[16px]",children:e&&e.map((i,l)=>(0,o1.jsxs)(o1.Fragment,{children:[(0,o1.jsxs)(j1.Box,{className:`flex flex-col p-[20px] bg-gray-light2 ${l%2===0?"order-1":"order-2"}`,children:[i.icon?(0,o1.jsx)(x,{src:i.icon,alt:"Icon",classesWrapper:"w-[36px] h-[36px]"}):(0,o1.jsx)(u9,{}),(0,o1.jsx)(j1.Typography,{component:"span",className:"font-extrabold text-16 mt-[8px]",children:i.label}),(0,o1.jsx)(j1.Typography,{component:"span",className:"mt-[6px] sm:text-12 xs:text-14",children:i.text})]}),l%2===0?(0,o1.jsx)(d9,{className:"order-2 ml-[80px] md:hidden"}):(0,o1.jsx)(x9,{className:`order-1 ml-[80px] self-end md:hidden ${l===e.length-1?"invisible":""}`})]}))}),(0,o1.jsx)(j1.Box,{className:"mt-[50px] flex justify-center sm:mt-[30px] xs:mt-[20px] xs:justify-start",children:s||null})]})})}var J1=require("@mui/material"),Ne=require("next-intl");var z=require("react/jsx-runtime");function J8({classes:t,phone:e,manager:o}){let r=(0,Ne.useTranslations)();return(0,z.jsxs)(J1.Box,{className:`mt-[40px] border-[1px] gap-[35px] border-gold border-solid sm:border-x-0 bg-white p-[30px] flex justify-between md:mt-[30px] sm:mx-[-30px] sm:flex-col sm:items-center${c(t)}`,children:[(0,z.jsxs)(J1.Box,{className:"flex flex-col sm:text-center sm:items-center",children:[(0,z.jsx)(J1.Typography,{component:"span",className:"text-16 font-extrabold",children:r("Need help with real estate?")}),(0,z.jsx)(J1.Typography,{component:"span",className:"text-16 font-extrabold",children:r("Contact us!")}),(0,z.jsxs)(J1.Typography,{component:"span",className:"text-gray mt-[4px]",children:[r("Reach out to Mayak Real Estate Agency for a professional consultation on buying, selling, renting, or investing in property"),"."]}),(0,z.jsxs)(J1.Box,{className:"mt-[16px] flex gap-[16px] md:flex-wrap sm:flex-col sm:items-center",children:[(0,z.jsx)(I,{data:`+${e}`,type:"telegram",title:(0,z.jsx)(S,{title:"Telegram",icon:(0,z.jsx)(v9,{})})}),(0,z.jsx)(I,{data:e,type:"whatsapp",title:(0,z.jsx)(S,{title:"Whatsapp",icon:(0,z.jsx)(J4,{})})}),(0,z.jsx)(I,{data:e,type:"viber",title:(0,z.jsx)(S,{title:"Viber",icon:(0,z.jsx)(b9,{})})})]})]}),(0,z.jsxs)(J1.Box,{className:"flex flex-col items-center text-center max-w-[200px] w-full",children:[(0,z.jsx)(x,{src:o.imageUrl,classesImg:"rounded-full",classesWrapper:"md:shrink-0 w-[83px] h-[83px]"}),(0,z.jsxs)(J1.Box,{className:"flex flex-col mt-[6px]",children:[(0,z.jsx)(J1.Typography,{component:"span",className:"font-extrabold md:text-12",children:o.name}),(0,z.jsx)(J1.Typography,{component:"span",className:"text-gray text-12",children:o.position})]})]})]})}var u2=require("@mui/material");var f7=g(require("@mui/material/Grid2")),v1=require("react/jsx-runtime");function $8({block1:t,block2:e,classes:o}){return(0,v1.jsx)(u2.Container,{maxWidth:p,className:`${c(o)}`,children:(0,v1.jsxs)(f7.default,{container:!0,columnSpacing:{sm:5,xs:0},className:"items-center mt-[80px] md:mt-[40px]",children:[(0,v1.jsx)(f7.default,{size:{xs:12,sm:6},children:(0,v1.jsxs)(u2.Box,{className:"flex flex-col",children:[(0,v1.jsx)("h2",{className:"!text-28 normal-case font-extrabold sm:text-14",children:t?.title}),(0,v1.jsx)(u2.Typography,{component:"p",className:"text-gray mt-[16px] md:mt-[10px]",children:t?.text1}),(0,v1.jsx)(u2.Typography,{component:"p",className:"text-gray mt-[16px] md:mt-[10px]",children:t?.text2})]})}),(0,v1.jsx)(f7.default,{size:{xs:12,sm:6},className:"md:mt-[28px]",children:(0,v1.jsxs)(u2.Box,{className:"sm:mx-[-30px]",children:[(0,v1.jsx)(x,{src:e?.imageUrl,alt:"Image",classesImg:"pl-[37px] md:p-[0px] h-[348px] md:h-[230px] w-full"}),(0,v1.jsxs)(u2.Box,{className:"block-gold md:py-[20px]",children:[(0,v1.jsx)(u2.Typography,{component:"span",className:"text-14",children:e?.text1}),(0,v1.jsx)(u2.Typography,{component:"span",className:"text-14-bold font-extrabold mt-[10px]",children:e?.text2})]})]})})]})})}var y2=require("@mui/material");var Ie=require("react");var h2=require("react/jsx-runtime");function t6({classes:t,items:e,title:o}){let[r,s]=(0,Ie.useState)(0),i=l=>{s(r===l?null:l)};return(0,h2.jsxs)(y2.Container,{maxWidth:p,className:`max-w-[990px]${c(t)}`,children:[(0,h2.jsx)(T,{leftXs:!0,children:o}),(0,h2.jsx)(y2.Box,{className:"mt-[30px] flex flex-col gap-[20px] sm:gap-[4px] xs:mt-0",children:e?.map((l,n)=>(0,h2.jsxs)(y2.Box,{className:"py-[13px] border-solid border-b-[1px] border-dark border-0",children:[(0,h2.jsxs)(y2.Box,{onClick:()=>i(n),className:"flex justify-between items-center cursor-pointer",children:[(0,h2.jsx)(y2.Typography,{component:"span",className:"font-extrabold text-16",children:l.question}),(0,h2.jsx)(m9,{style:{transform:r===n?"rotateX(0deg)":"rotateX(180deg)",transition:"transform 0.3s ease"}})]}),(0,h2.jsx)(y2.Collapse,{in:r===n,className:"mt-[5px] pr-[30px]",children:(0,h2.jsx)(y2.Typography,{className:"text-gray",children:l.answer})})]},n))})]})}var E4=require("@mui/material"),x7=require("react-hook-form");var k1=require("react/jsx-runtime");function e6({classes:t}){let e=(0,x7.useForm)(Z5),{handleSubmit:o,formState:{isSubmitSuccessful:r,isSubmitting:s}}=e,i=async l=>{await g3(l)};return(0,k1.jsx)(k1.Fragment,{children:r?(0,k1.jsx)(E4.Box,{className:`bg-white p-[40px] flex flex-col gap-4 md:py-[30px] sm:mx-[-30px] md:px-[60px] sm:px-[30px]${c(t)}`,children:(0,k1.jsx)(T4,{})}):(0,k1.jsx)(x7.FormProvider,{...e,children:(0,k1.jsxs)(E4.Box,{className:`bg-white p-[40px] flex flex-col md:py-[30px] sm:mx-[-30px] md:px-[60px] sm:px-[30px]${c(t)}`,component:"form",onSubmit:o(i),children:[(0,k1.jsx)(E4.Typography,{component:"span",className:"!text-28 normal-case font-extrabold md:text-16 w-2/3 mb-[20px]",children:"Write us"}),(0,k1.jsx)(u3,{placeholder:"Your name",name:"name",autoComplete:"name"}),(0,k1.jsx)(h3,{name:"phoneNumber",format:"",placeholder:""}),(0,k1.jsx)(u3,{name:"question",placeholder:"Your question",multiline:!0,className:"h-[202px] items-start",rows:9}),(0,k1.jsx)(E4.Typography,{component:"span",className:"pl-[30px] mt-[13px] text-12 md:pl-[0px]",children:"All fields are mandatory"}),(0,k1.jsx)(S,{loading:s,type:"submit",title:"Submit",classes:"self-end mt-[16px]"})]})})})}var Te=require("@mui/material");var u7=require("react"),g7=require("@fancyapps/ui"),TB=require("@fancyapps/ui/dist/fancybox/fancybox.css"),_e=require("react/jsx-runtime");function $s(t){let e=(0,u7.useRef)(null);return(0,u7.useEffect)(()=>{let o=e.current,r=t.delegate||"[data-fancybox]",s=t.options||{};return g7.Fancybox.bind(o,r,s),()=>{g7.Fancybox.unbind(o),g7.Fancybox.close()}}),(0,_e.jsx)("div",{ref:e,children:t.children})}var h7=$s;var V4=require("react"),o6=require("keen-slider/react"),B5=require("@mui/material"),y7=g(require("@mui/material/Grid2"));var r6=g(require("next/image"));var i1=require("react/jsx-runtime"),ti=t=>e=>{function o(){e.slides.forEach(i=>{i.classList.remove("active")})}function r(i){e.slides[i].classList.add("active")}function s(){e.slides.forEach((i,l)=>{i.addEventListener("click",()=>{t.current&&t.current.moveToIdx(l)})})}e.on("created",()=>{t.current&&(r(e.track.details.rel),s(),t.current.on("animationStarted",i=>{o();let l=i.animator.targetIdx||0;r(i.track.absToRel(l)),e.moveToIdx(Math.min(e.track.details.maxIdx,l))}))})},ei=({images:t})=>{let[e,o]=(0,V4.useState)(0),{sm:r}=A(),[s,i]=(0,V4.useState)([]),[l,n]=(0,V4.useState)([!0,!0,!0]),[f,u]=(0,o6.useKeenSlider)({initial:0,slideChanged(w){o(w.track.details.rel)},animationEnded(w){o(w.track.details.rel)}}),[y]=(0,o6.useKeenSlider)({initial:0,slides:{perView:3,spacing:15},vertical:!0,slideChanged(w){o(w.track.details.rel)},animationEnded(w){o(w.track.details.rel)}},[ti(u)]);return(0,V4.useEffect)(()=>{let w=[...s];w[e]=!0,i(w);let B=[...l];B[e-2!==t.length?e+2:e]=!0,n(B)},[e]),(0,i1.jsxs)(y7.default,{container:!0,spacing:2,children:[(0,i1.jsxs)(y7.default,{size:r?12:9,className:"relative",children:[(0,i1.jsx)(B5.Box,{ref:f,className:"keen-slider h-[600px] md:h-[338px] sm:!h-[230px]",children:t.map((w,B)=>(0,i1.jsx)(B5.Box,{className:"keen-slider__slide lazy__slide relative w-full h-full",children:s[B]?(0,i1.jsx)(h,{"data-fancybox":"gallery",href:w.url,style:{position:"relative",display:"block",width:"100%",height:"100%"},children:(0,i1.jsx)(r6.default,{className:"object-cover object-center",src:s[B]?w.url:S1,alt:"image",fill:!0,sizes:"1201px",quality:100,priority:!0})}):null},B))}),s&&u.current&&(0,i1.jsxs)(i1.Fragment,{children:[(0,i1.jsx)(Q2,{className:`absolute top-1/2 left-[64px] md:left-[30px] sm:!left-[15px] transform -translate-y-1/2 cursor-pointer${e===0?" opacity-[0.5]":""}`,onClick:w=>w.stopPropagation()||u.current?.prev()}),(0,i1.jsx)(s9,{className:`absolute top-1/2 right-[64px] md:right-[30px] sm:!right-[15px] transform -translate-y-1/2 cursor-pointer${e===u.current.track.details.slides.length-1?" opacity-[0.5]":""}`,onClick:w=>w.stopPropagation()||u.current?.next()})]})]}),r?null:(0,i1.jsx)(y7.default,{size:3,children:(0,i1.jsx)(B5.Box,{ref:y,className:"keen-slider h-[600px] md:h-[338px]",children:t.map((w,B)=>(0,i1.jsx)(B5.Box,{className:"keen-slider__slide h-[190px] md:h-[106px] cursor-pointer",children:l[B]?(0,i1.jsx)(h,{"data-fancybox":"gallery",href:w.url,style:{position:"relative",display:"block",width:"100%",height:"100%"},children:(0,i1.jsx)(r6.default,{className:"object-cover object-center",src:l[B]?w.url:S1,alt:"image",fill:!0,sizes:"20vw",priority:!0})}):null},B))})})]})},L7=ei;var w7=require("react/jsx-runtime");function a6({images:t}){return(0,w7.jsx)(Te.Container,{maxWidth:p,children:(0,w7.jsx)(h7,{options:{Carousel:{infinite:!1}},children:(0,w7.jsx)(L7,{images:t})})})}var R4=require("@mui/material");var $3=require("react/jsx-runtime");function s6({imageUrl:t,text:e,title:o,classes:r}){return(0,$3.jsx)(R4.Container,{maxWidth:p,className:c(r),children:(0,$3.jsxs)(R4.Box,{className:"flex flex-col mx-auto w-full max-w-[840px] text-center md:items-center",children:[(0,$3.jsx)(x,{src:t,alt:"Team",classesWrapper:"w-full h-[294px] md:h-[216px] sm:!h-[170px]",objectFit:"object-contain"}),(0,$3.jsx)("span",{className:"!text-32 normal-case font-extrabold block-white-wrapper md:w-fit sm:!w-full md:text-18 md:py-[14px] box-border",children:o}),(0,$3.jsx)(R4.Typography,{component:"span",className:"mt-[20px] px-[60px] md:px-[0px] sm:text-12/[19px]",children:e})]})})}var r3=require("@mui/material");var b7=g(require("@mui/material/Grid2")),P1=require("react/jsx-runtime");function i6({title2:t,title:e,items:o,text:r,imageUrl:s,classes:i}){return(0,P1.jsx)(r3.Container,{maxWidth:p,className:c(i),children:(0,P1.jsxs)(b7.default,{container:!0,className:"mt-[77px] md:mt-[40px] sm:!mt-[30px]",columnSpacing:{sm:5,xs:0},children:[(0,P1.jsx)(b7.default,{size:{sm:6,xs:12},children:(0,P1.jsxs)(r3.Box,{className:"pt-[32px] flex flex-col md:pt-[0px]",children:[(0,P1.jsx)("h2",{className:"!text-28 normal-case font-extrabold md:text-14",children:e}),(0,P1.jsx)(r3.Typography,{component:"span",className:"text-gray mt-[16px] md:mt-[10px]",children:r}),(0,P1.jsx)(r3.Typography,{component:"span",className:"font-extrabold mt-[20px] text-16 md:mt-[16px] md:text-14",children:t}),(0,P1.jsx)(r3.Box,{className:"flex flex-col gap-[16px] mt-[20px] md:mt-[10px]",children:o?.map(l=>(0,P1.jsx)(r3.Typography,{component:"span",className:"block-simple-border block border-[1px] py-[16px] px-[24px] text-14 w-fit border-dark border-solid md:py-[6px] md:px-[16px] md:text-12",children:l.text1},l.text1))})]})}),(0,P1.jsx)(b7.default,{size:{sm:6,xs:12},className:"md:mt-[26px] sm:mx-[-30px]",children:(0,P1.jsx)(x,{src:s,alt:"Image",classesWrapper:"h-full md:h-[560px] sm:w-[140%]"})})]})})}var a3=require("@mui/material"),Ae=require("next-intl");var L2=require("@mui/material");var B7=require("next-intl");var C1=require("react/jsx-runtime");function l6({updatedAt:t,city:e,country:o,pay:r}){let s=(0,B7.useLocale)();return(0,C1.jsxs)(L2.Box,{className:"flex flex-col gap-[16px]",children:[(0,C1.jsxs)(L2.Box,{className:"flex gap-[10px] items-center",children:[(0,C1.jsx)(R3,{}),t&&(0,C1.jsx)(L2.Typography,{component:"span",className:"text-dark",children:L0(t,s)})]}),(0,C1.jsxs)(L2.Box,{className:"flex gap-[10px] items-center",children:[(0,C1.jsx)(q9,{}),(0,C1.jsxs)(L2.Typography,{component:"span",className:"text-dark",children:[r," \u20B4"]})]}),(0,C1.jsxs)(L2.Box,{className:"flex gap-[10px] items-center",children:[(0,C1.jsx)(X9,{}),(0,C1.jsxs)(L2.Typography,{component:"span",className:"text-dark",children:[o,", ",e]})]})]})}function t4({updatedAt:t,classes:e,pay:o,city:r,button:s=!1,country:i,slug:l,href:n}){let f=(0,B7.useTranslations)();return(0,C1.jsxs)(L2.Box,{className:`box-border border-[1px] border-gold border-solid py-[40px] px-[50px] flex flex-col justify-between w-fit md:px-[40px] md:py-[30px] gap-[15px] sm:w-full${c(e)}`,children:[(0,C1.jsx)(L2.Box,{className:"flex flex-col gap-[16px]",children:(0,C1.jsx)(l6,{city:r,country:i,pay:o,updatedAt:t})}),s&&l&&n?(0,C1.jsx)(B1,{title:f("Learn more"),href:`${n}/${l}`,icon:(0,C1.jsx)(z1,{}),color:"dark",classes:"w-full justify-center md:mt-[16px] box-border"}):null]})}var $1=require("react/jsx-runtime");function n6({title:t,vacancies:e,classes:o,href:r}){let s=(0,Ae.useTranslations)();return(0,$1.jsxs)(a3.Container,{maxWidth:p,className:b1(o),children:[(0,$1.jsx)(T,{children:t}),(0,$1.jsx)(a3.Box,{className:"mt-[18px] flex flex-col gap-[30px] md:mt-[20px] md:gap-[20px]",children:e?.length?e?.map(i=>(0,$1.jsxs)(a3.Box,{className:"sm:mx-[calc(50%-50vw)] bg-white p-[30px] flex justify-between gap-[60px] sm:flex-col md:py-[30px] sm:!py-[20px] sm:px-[60px] xs:px-[30px] sm:gap-[20px]",children:[(0,$1.jsxs)(a3.Box,{className:"flex flex-col max-w-[60%] sm:max-w-full",children:[(0,$1.jsx)(h,{href:`${r}/${i?.slug}`,className:"text-16 text-dark font-extrabold uppercase",children:i.position}),(0,$1.jsxs)(a3.Typography,{component:"span",className:"mt-[10px] font-extrabold text-16",children:[s("We offer"),":"]}),i.offerText&&(0,$1.jsx)(O2,{body:i.offerText})]}),(0,$1.jsx)(t4,{updatedAt:i?.updated,pay:i?.pay,country:i?.country,city:i?.city,button:!0,slug:i?.slug,href:r,classes:"h-fit sm:!h-full"})]},i.slug)):(0,$1.jsx)(a3.Typography,{component:"span",className:"",children:s("No vacancies")})})]})}var e4=require("@mui/material");var Se=require("next-intl");var w2=require("react/jsx-runtime");function p6({vacancies:t,classes:e,href:o}){let r=(0,Se.useTranslations)(),{sm:s,md:i}=A();return(0,w2.jsxs)(e4.Container,{maxWidth:p,className:b1(e),children:[(0,w2.jsx)("h2",{className:"!text-28 normal-case font-extrabold md:text-16",children:r("Other vacancies")}),(0,w2.jsx)(e4.Box,{className:"mt-[32px] md:mt-[24px]",children:(0,w2.jsx)(O1,{spacing:30,slides:i?s?1:2:3,children:t?.map(l=>(0,w2.jsxs)(h,{href:`${o}/${l?.slug}`,className:"bg-white p-[40px] border-gold border-solid border-[1px] flex flex-col gap-[16px] relative md:py-[30px]",children:[(0,w2.jsx)(e4.Typography,{component:"span",className:"text-16 font-extrabold text-dark flex-auto",children:l?.position}),(0,w2.jsx)(l6,{updatedAt:l?.updated,pay:l?.pay,country:l?.country,city:l?.city}),(0,w2.jsx)(e4.Box,{className:"absolute right-[25px] bottom-[25px]",children:(0,w2.jsx)(n9,{})})]},l?.slug))})})]})}var t2=require("@mui/material");var G4=g(require("@mui/material/Grid2"));var J=require("react/jsx-runtime");function C6({classes:t,block:e,title:o,text2:r,text1:s}){return(0,J.jsx)(t2.Container,{maxWidth:p,className:c(t),children:(0,J.jsxs)(G4.default,{container:!0,columnSpacing:2.5,rowSpacing:{xs:2.5,md:8},children:[(0,J.jsx)(G4.default,{size:{xs:12,sm:6},children:(0,J.jsxs)(t2.Box,{className:"mt-[50px] flex flex-col pr-[50px] md:pr-[30px] sm:mt-0 sm:!pr-0 ",children:[(0,J.jsx)(T,{children:o}),(0,J.jsx)(t2.Typography,{component:"span",className:"text-gray mt-[12px] sm:text-12/[19px] xs:text-14",children:s})]})}),(0,J.jsx)(G4.default,{size:{xs:12,sm:6},children:(0,J.jsx)(x,{contentful:!1,src:"/images/pngs/dubai.png",classesWrapper:"w-full h-[350px] sm:h-[194px]"})}),(0,J.jsx)(G4.default,{size:{xs:12,sm:6},children:(0,J.jsx)(x,{contentful:!1,src:"/images/pngs/dubai2.png",classesWrapper:"h-[350px] w-full sm:h-[194px]"})}),(0,J.jsx)(G4.default,{size:{xs:12,sm:6},children:(0,J.jsxs)(t2.Box,{className:"mt-[20px] flex flex-col pl-[50px] md:pl-[30px] sm:mt-0 sm:!pl-0",children:[(0,J.jsx)(t2.Typography,{component:"span",className:"text-gray sm:text-12/[19px] xs:text-14",children:r}),e&&(0,J.jsxs)(t2.Box,{className:"bg-gold flex gap-[16px] px-[30px] py-[20px] mt-[20px]",children:[(0,J.jsx)(X4,{className:"flex-shrink-0 sm:hidden"}),(0,J.jsxs)(t2.Box,{className:"text-white",children:[(0,J.jsx)(t2.Typography,{component:"span",className:"mr-[5px] font-extrabold sm:text-12/[19px] xs:text-14",children:e.strongText}),(0,J.jsx)(t2.Typography,{component:"span",className:"sm:text-12/[19px] xs:text-14",children:e.text})]})]})]})})]})})}var s3=require("@mui/material");var m6=g(require("@mui/material/Grid2")),b2=require("react/jsx-runtime");function c6({title:t,items:e,classes:o}){return(0,b2.jsxs)(s3.Container,{maxWidth:p,className:`mt-[80px] md:mt-[40px]${o?" "+o:""}`,children:[(0,b2.jsx)("h2",{className:"!text-28 normal-case font-extrabold md:text-16",children:t}),(0,b2.jsx)(m6.default,{container:!0,className:"mt-[20px]",spacing:{sm:5,xs:2.5},children:e?.map(r=>(0,b2.jsx)(m6.default,{size:{xs:12,md:4,sm:6},children:(0,b2.jsxs)(s3.Box,{className:"relative",children:[(0,b2.jsx)(s3.Box,{className:"bg-white w-[66px] h-[66px] absolute left-[0px] top-[0px] z-[1] sm:hidden"}),(0,b2.jsxs)(s3.Box,{className:"flex flex-col gap-[10px] relative z-[2] pl-[33px] pt-[33px] sm:p-0",children:[(0,b2.jsx)(s3.Typography,{component:"span",className:"text-16 font-extrabold",children:r?.text1}),(0,b2.jsx)(s3.Typography,{component:"span",children:r?.text2})]})]})},r?.text1))})]})}var o4=require("@mui/material");var Ee=g(require("@mui/material/ImageList")),Ve=g(require("@mui/material/ImageListItem"));var Re=require("next-intl");var B2=require("react/jsx-runtime");function d6({classes:t,items:e,title:o,href:r}){let s=(0,Re.useTranslations)(),{sm:i,xs:l}=A();return(0,B2.jsxs)(o4.Container,{maxWidth:p,className:c(t),children:[(0,B2.jsx)(d5,{title:o||"",buttonLabel:s("All Areas"),buttonHref:r}),!!e?.length&&(0,B2.jsx)(Ee.default,{variant:"quilted",cols:i?l?1:3:4,rowHeight:i?l?300:240:300,gap:18,className:"mt-[20px] sm:mt-[10px]",children:e.map((n,f)=>(0,B2.jsx)(Ve.default,{cols:i?1:n.cols||1,rows:i?1:n.rows||1,children:(0,B2.jsxs)(h,{href:`${r}/${n.slug}`,children:[(0,B2.jsx)(x,{contentful:!1,src:n.imgSrc}),(0,B2.jsxs)(o4.Box,{className:"absolute bottom-[25px] left-[30px] text-white flex flex-col gap-[6px] sm:bottom-[10px] sm:left-[20px] sm:gap-[2px] xs:bottom-[20px] xs:left-[25px]",children:[(0,B2.jsx)(o4.Typography,{component:"span",className:"font-extrabold text-16 sm:text-14",children:n.label}),(0,B2.jsx)(o4.Typography,{component:"span",className:"text-12",children:`${s("Price from")} ${C2(Number(n.text))}`})]})]})},f))})]})}var D=require("@mui/material");var Ge=require("next-intl");var V=require("react/jsx-runtime");function f6({classes:t,box:e,title:o,actionComponent:r}){let s=(0,Ge.useTranslations)();return(0,V.jsxs)(D.Container,{maxWidth:p,className:`mt-[60px] xs:mt-[40px] ${c(t)}`,children:[(0,V.jsx)(T,{children:o}),(0,V.jsx)(D.Box,{className:"flex flex-col mt-[18px] gap-[30px] sm:gap-[20px]",children:e?.map((i,l)=>(0,V.jsxs)(D.Box,{className:"p-[40px] bg-white flex gap-[35px] sm:p-[20px] xs:mx-[calc(50%-50vw)] xs:p-[30px] xs:flex-col xs:gap-[20px]",children:[(0,V.jsx)(x,{contentful:!1,src:i.img,classesWrapper:"w-[360px] h-auto flex-shrink-0 sm:w-[172px] sm:h-[106px] xs:w-full xs:h-[240px]"}),(0,V.jsxs)(D.Box,{className:"flex gap-[30px] justify-between w-full md:gap-[15px] xs:flex-col xs:gap-0",children:[(0,V.jsxs)(D.Box,{className:"flex flex-col gap-[15px] sm:gap-[10px]",children:[(0,V.jsx)(D.Typography,{component:"span",className:"font-extrabold text-18 sm:text-16",children:i.label}),(0,V.jsxs)(D.Box,{className:"flex gap-[20px] [@media(max-width:750px)]:flex-col [@media(max-width:750px)]:gap-[10px] xs:!flex-row xs:!gap-[25px]",children:[(0,V.jsxs)(D.Box,{className:"flex flex-col",children:[(0,V.jsxs)(D.Typography,{component:"span",className:"text-gold sm:text-12 xs:text-14",children:[s("From"),":"]}),(0,V.jsx)(D.Typography,{component:"span",className:"sm:text-12 xs:text-14",children:i.from})]}),(0,V.jsxs)(D.Box,{className:"flex flex-col",children:[(0,V.jsxs)(D.Typography,{component:"span",className:"text-gold sm:text-12 xs:text-14",children:[s("to"),":"]}),(0,V.jsx)(D.Typography,{component:"span",className:"font-extrabold sm:text-12 xs:text-14",children:i.to})]})]}),(0,V.jsxs)(D.Box,{children:[(0,V.jsxs)(D.Typography,{component:"span",className:"font-extrabold sm:text-12 xs:text-14",children:[s("Description"),":"]}),(0,V.jsx)("ul",{className:"mt-[6px] text-gray pl-[20px] sm:text-12/[19px] xs:text-14",children:i.description?.map(n=>(0,V.jsx)("li",{children:n},n))})]})]}),(0,V.jsxs)(D.Box,{className:"flex flex-col justify-between items-end sm:gap-[26px] xs:gap-[15px]",children:[(0,V.jsxs)(D.Box,{className:"h-fit border-solid border-[1px] border-gold px-[50px] py-[40px] flex flex-col gap-[16px] md:p-[20px] sm:max-w-[170px] xs:max-w-[unset] xs:w-full xs:p-[30px]",children:[(0,V.jsxs)(D.Box,{className:"flex gap-[10px] items-center",children:[(0,V.jsx)(R3,{className:"shrink-0"}),(0,V.jsx)(D.Typography,{component:"span",className:"sm:text-12 xs:text-14",children:i.date})]}),(0,V.jsxs)(D.Box,{className:"flex gap-[10px] items-center",children:[(0,V.jsx)(a8,{className:"shrink-0"}),(0,V.jsxs)(D.Typography,{component:"span",className:"sm:text-12 xs:text-14",children:[s("income"),": ",i.income]})]})]}),r||null]})]})]},l))})]})}var v7=g(require("@mui/material/Grid2")),I1=require("@mui/material");var K=require("react/jsx-runtime");function Oe(t){return!t.text1&&!t.text2?(0,K.jsx)(K.Fragment,{}):(0,K.jsxs)(I1.Box,{className:"flex flex-col",children:[(0,K.jsx)(I1.Typography,{component:"span",className:"text-gold text-50 font-extrabold sm:text-26 xs:text-50",children:t.text1}),(0,K.jsx)(I1.Typography,{component:"span",className:"text-gray text-16 sm:text-12 xs:text-16",children:t.text2})]})}function x6({title:t,box:e,text1:o,classes:r,subtitle:s,text2:i,actionComponent:l}){return(0,K.jsx)(I1.Container,{maxWidth:p,className:c(r),children:(0,K.jsxs)(v7.default,{container:!0,columnSpacing:15,rowSpacing:4,children:[(0,K.jsx)(v7.default,{size:{xs:12,sm:6},children:(0,K.jsxs)(I1.Box,{className:"flex flex-col gap-3 xs:gap-2",children:[(0,K.jsx)(a1,{children:t}),s&&(0,K.jsx)(I1.Typography,{className:"font-extrabold uppercase text-16 sm:text-12",children:s}),o&&(0,K.jsx)(I1.Typography,{className:"text-gray text-14 sm:text-12/[19px]",children:o}),i&&(0,K.jsx)(I1.Typography,{className:"text-gray text-14 sm:text-12/[19px]",children:i}),l||null]})}),(0,K.jsx)(v7.default,{size:{xs:12,sm:6},children:e&&(0,K.jsxs)(I1.Box,{className:"flex flex-col gap-y-[25px] mt-[10px] sm:gap-y-[14px] xs:gap-y-[10px]",children:[(0,K.jsx)(I1.Box,{className:"flex justify-between items-center gap-[50px] sm:gap-[30px] xs:flex-col xs:gap-[10px] xs:items-start",children:e.slice(0,2).map((n,f)=>{if(n?.text1&&n?.text2)return(0,K.jsx)(Oe,{text1:n.text1,text2:n.text2},f)})}),(0,K.jsx)(I1.Box,{className:"flex justify-between items-center gap-[50px] sm:gap-[30px] xs:flex-col xs:gap-[10px] xs:items-start",children:e.slice(2,4).map((n,f)=>{if(n?.text1&&n?.text2)return(0,K.jsx)(Oe,{text1:n.text1,text2:n.text2},f)})})]})})]})})}var e2=require("@mui/material");var Ue=require("next-intl"),k7=g(require("@mui/material/Grid2"));var m1=require("react/jsx-runtime");function g6({text1:t,text2:e,text3:o,title2:r,title:s,subtitle:i,classes:l}){let n=(0,Ue.useTranslations)(),{showModal:f}=f1();return(0,m1.jsxs)(e2.Container,{maxWidth:p,className:l||"",children:[(0,m1.jsx)(e2.Box,{className:"flex justify-between",children:(0,m1.jsx)("h1",{className:"normal-case font-extrabold !text-28 md:text-16 sm:text-18",children:s})}),(0,m1.jsxs)(k7.default,{container:!0,columnSpacing:11,className:"mt-[16px] md:mt-[10px]",children:[(0,m1.jsx)(k7.default,{size:{xs:12,sm:6},children:(0,m1.jsxs)(e2.Box,{className:"flex flex-col",children:[(0,m1.jsx)(e2.Typography,{component:"span",className:"font-extrabold text-gray md:text-14",children:i}),(0,m1.jsx)(e2.Typography,{component:"p",className:"text-gray text-14 mt-[10px]",children:t}),(0,m1.jsx)(e2.Typography,{component:"p",className:"text-gray text-14 mt-[10px]",children:e})]})}),(0,m1.jsx)(k7.default,{size:{xs:12,sm:6},className:"md:mt-[30px]",children:(0,m1.jsxs)(e2.Box,{className:"p-[40px] !pt-[30px] bg-gold flex flex-col sm:!mx-[-30px] md:pb-[30px]",children:[(0,m1.jsx)(e2.Typography,{component:"span",className:"font-extrabold text-16",children:r}),(0,m1.jsx)(e2.Typography,{component:"span",className:"mt-[6px]",children:o}),(0,m1.jsx)(B1,{title:n("Become part of our team"),onClick:()=>f("GENERAL"),icon:(0,m1.jsx)(z1,{}),classes:"self-end mt-[6px]",color:"dark"})]})})]})]})}var Pe=require("@mui/material");var i3=require("react/jsx-runtime"),oi=({classes:t,instagram:e,facebook:o,youtube:r})=>(0,i3.jsxs)(Pe.Box,{className:`flex gap-[13px]${t?" "+t:""}`,children:[e&&(0,i3.jsx)(I,{data:e,type:"link",title:(0,i3.jsx)(G3,{className:"hover:filter-gold2"})}),o&&(0,i3.jsx)(I,{data:o,type:"link",title:(0,i3.jsx)(j4,{className:"hover:filter-gold2"})}),r&&(0,i3.jsx)(I,{data:r,type:"link",title:(0,i3.jsx)(e5,{className:"hover:filter-gold2"})})]}),r4=oi;var s4=require("@mui/material");var a4=require("react/jsx-runtime");function u6({classes:t,text:e,title:o}){return(0,a4.jsx)(s4.Box,{className:`mt-[80px]${t?" "+t:""}`,children:(0,a4.jsx)(s4.Container,{maxWidth:p,children:(0,a4.jsxs)(s4.Box,{className:"flex flex-col items-center gap-[16px] text-center max-w-[950px] w-full mx-auto",children:[(0,a4.jsx)("h2",{className:"!text-28 normal-case font-extrabold",children:o}),(0,a4.jsx)(s4.Typography,{component:"span",className:"text-gray text-14",children:e})]})})})}var We=require("@mui/material");var De=require("react/jsx-runtime");function h6(t){let{title:e,classes:o,titlePosition:r="left",component:s="h1",...i}=t;return(0,De.jsx)(We.Typography,{...i,component:s,className:`!text-28 normal-case font-extrabold text-${r} block md:text-18${c(o)}`,children:e})}var H7=require("@mui/material");var v2=require("react/jsx-runtime");function y6({classes:t,title:e,developers:o}){let{md:r,xs:s}=A();return!o||o?.length<5?(0,v2.jsx)(v2.Fragment,{}):(0,v2.jsxs)(H7.Box,{className:c(t),children:[(0,v2.jsx)(H7.Container,{maxWidth:p,children:(0,v2.jsx)(T,{className:"block w-fit mx-auto mb-[20px]",children:e})}),(0,v2.jsx)(O1,{slides:r?r&&!s?4:2:6,spacing:20,children:o?.map(i=>(0,v2.jsx)(h,{href:`${i.href}/${i.slug}`,className:"bg-white p-[25px] flex justify-center ",children:(0,v2.jsx)(x,{src:i.img,classesWrapper:"w-[135px] h-[90px] sm:h-[50px] xs:h-[40px]",objectFit:"object-contain",contentful:!1})},i.slug))})]})}var o2=require("@mui/material");var Fe=require("next-intl");var M7=g(require("@mui/material/Grid2"));var X=require("react/jsx-runtime");function L6({classes:t,title:e,text:o,numbers:r,imageUrl:s}){let i=(0,Fe.useTranslations)(),{windowSize:l,sm:n}=A(),{showModal:f}=f1();return(0,X.jsxs)(o2.Box,{className:`relative bg-white${t?" "+t:""}`,children:[!n&&l<1500&&(0,X.jsx)(x,{src:s,alt:"Image",classesWrapper:"!absolute top-0 right-0 bottom-0 !w-1/2 h-full"}),(0,X.jsx)(o2.Container,{maxWidth:p,children:(0,X.jsxs)(M7.default,{container:!0,children:[(0,X.jsx)(M7.default,{size:{sm:6,xs:12},children:(0,X.jsxs)(o2.Box,{className:"relative pt-20 pb-28 pr-28 flex flex-col gap-[22px] md:gap-[10px] md:pt-[32px] md:pb-[96px] sm:px-[0px] sm:w-[93vw]",children:[(0,X.jsx)("h2",{className:"font-extrabold !text-28 normal-case md:text-16",children:e}),(0,X.jsx)(o2.Typography,{component:"span",className:"text-gray",children:o}),(0,X.jsx)(J3,{classes:"mt-[35px] md:mt-[26px]"}),!!r?.length&&(0,X.jsx)(o2.Box,{className:"flex flex-wrap gap-x-[103px] gap-y-[19px] md:gap-x-[82px] md:gap-y-[14px] sm:mt-[16px] sm:!gap-x-[56px] sm:!gap-y-[18px]",children:r?.map(u=>{if(u.number&&u.text)return(0,X.jsxs)(o2.Box,{className:"flex flex-col",children:[(0,X.jsx)(o2.Typography,{component:"span",className:"text-gold text-100 font-extrabold md:text-40 sm:!text-60",children:w0(u.number)}),(0,X.jsx)(o2.Typography,{component:"span",className:"text-base text-gray mt-[-20px] md:text-12 md:mt-[-7px] sm:!text-14",children:u.text})]},u.text)})}),(0,X.jsx)(o2.Box,{className:"absolute right-[50px] bottom-[50px] sm:right-[0px] sm:bottom-[30px]",children:(0,X.jsx)(B1,{title:i("Write to us"),icon:(0,X.jsx)(K9,{}),onClick:()=>f("GENERAL")})})]})}),(0,X.jsxs)(M7.default,{size:{xs:12,sm:6},className:"md:w-full",children:[!n&&l>1500&&(0,X.jsx)(x,{src:s,alt:"Image",classesWrapper:"h-full w-[50vw]",classesImg:"object-top"}),n&&(0,X.jsx)(x,{src:s,alt:"Image",classesWrapper:"sm:mx-[-30px] sm:h-[506px] sm:w-[unset]",classesImg:"sm:object-top"})]})]})})]})}var Z=require("@mui/material");var eo=require("next-intl"),oo=require("react"),N7=g(require("@mui/material/Grid2"));var Ok=require("react"),ri=require("react/jsx-runtime");var Wk=require("react"),ai=require("react/jsx-runtime");var Zk=require("react"),si=require("react/jsx-runtime");var Kk=require("react"),ii=require("react/jsx-runtime");var Xk=require("react"),li=require("react/jsx-runtime");var $k=require("react"),ni=require("react/jsx-runtime");var oH=require("react"),pi=require("react/jsx-runtime");var sH=require("react"),Ci=require("react/jsx-runtime");var nH=require("react"),w6=require("react/jsx-runtime"),mi=t=>(0,w6.jsx)("svg",{width:13,height:7,viewBox:"0 0 13 7",fill:"none",xmlns:"http://www.w3.org/2000/svg",...t,children:(0,w6.jsx)("path",{d:"M12 6.25L6.5 0.75L1 6.25",stroke:"#343434",strokeLinecap:"round"})}),v5=mi;var mH=require("react"),ci=require("react/jsx-runtime");var fH=require("react"),di=require("react/jsx-runtime");var uH=require("react"),Ze=require("react/jsx-runtime");var LH=require("react"),fi=require("react/jsx-runtime");var BH=require("react"),Ye=require("react/jsx-runtime");var HH=require("react"),ze=require("react/jsx-runtime");var IH=require("react"),xi=require("react/jsx-runtime");var AH=require("react"),gi=require("react/jsx-runtime");var VH=require("react"),ui=require("react/jsx-runtime");var OH=require("react"),hi=require("react/jsx-runtime");var WH=require("react"),yi=require("react/jsx-runtime");var ZH=require("react"),Li=require("react/jsx-runtime");var KH=require("react"),wi=require("react/jsx-runtime");var XH=require("react"),Ke=require("react/jsx-runtime");var $H=require("react"),bi=require("react/jsx-runtime");var oM=require("react"),Qe=require("react/jsx-runtime");var sM=require("react"),Bi=require("react/jsx-runtime");var nM=require("react"),vi=require("react/jsx-runtime");var mM=require("react"),qe=require("react/jsx-runtime");var fM=require("react"),Xe=require("react/jsx-runtime");var uM=require("react"),ki=require("react/jsx-runtime");var LM=require("react"),Hi=require("react/jsx-runtime");var BM=require("react"),je=require("react/jsx-runtime");var HM=require("react"),Mi=require("react/jsx-runtime");var IM=require("react"),Ni=require("react/jsx-runtime");var AM=require("react"),Ii=require("react/jsx-runtime");var VM=require("react"),_i=require("react/jsx-runtime");var OM=require("react"),Ti=require("react/jsx-runtime");var WM=require("react"),Ai=require("react/jsx-runtime");var ZM=require("react"),Je=require("react/jsx-runtime");var KM=require("react"),Si=require("react/jsx-runtime");var XM=require("react"),$e=require("react/jsx-runtime");var $M=require("react"),Ei=require("react/jsx-runtime");var oN=require("react"),Vi=require("react/jsx-runtime");var sN=require("react"),Ri=require("react/jsx-runtime");var nN=require("react"),Gi=require("react/jsx-runtime");var mN=require("react"),Oi=require("react/jsx-runtime");var fN=require("react"),Ui=require("react/jsx-runtime");var uN=require("react"),to=require("react/jsx-runtime");var LN=require("react"),Pi=require("react/jsx-runtime");var BN=require("react"),Wi=require("react/jsx-runtime");var HN=require("react"),b6=require("react/jsx-runtime"),Di=t=>(0,b6.jsx)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",...t,children:(0,b6.jsx)("path",{d:"M12 9H12.01M11 12H12V16H13M12 3C19.2 3 21 4.8 21 12C21 19.2 19.2 21 12 21C4.8 21 3 19.2 3 12C3 4.8 4.8 3 12 3Z",stroke:"#343434",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"})}),B6=Di;var IN=require("react"),v6=require("react/jsx-runtime"),Fi=t=>(0,v6.jsx)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",...t,children:(0,v6.jsx)("path",{d:"M15 16V20C15 20.2652 14.8946 20.5196 14.7071 20.7071C14.5196 20.8946 14.2652 21 14 21H6C5.73478 21 5.48043 20.8946 5.29289 20.7071C5.10536 20.5196 5 20.2652 5 20V6C5 5.73478 5.10536 5.48043 5.29289 5.29289C5.48043 5.10536 5.73478 5 6 5H8M10 18V18.01M11 3H21V11H18L14 13V11H11V3Z",stroke:"#343434",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"})}),k6=Fi;var AN=require("react"),H6=require("react/jsx-runtime"),Zi=t=>(0,H6.jsx)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",...t,children:(0,H6.jsx)("path",{d:"M12 18H5C4.46957 18 3.96086 17.7893 3.58579 17.4142C3.21071 17.0391 3 16.5304 3 16V6M3 6C3 5.46957 3.21071 4.96086 3.58579 4.58579C3.96086 4.21071 4.46957 4 5 4H19C19.5304 4 20.0391 4.21071 20.4142 4.58579C20.7893 4.96086 21 5.46957 21 6M3 6L12 12L21 6M21 6V13.5M15 18H21M21 18L18 15M21 18L18 21",stroke:"#343434",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"})}),M6=Zi;var v=require("react/jsx-runtime");function N6({title:t,pay:e,date:o,offer:r,qualities:s,requirements:i,country:l,city:n,additional:f,slugs:u,classes:y,children:w,phone:B,email:b,manager:k,href:_}){let N=(0,eo.useTranslations)(),{setLocaleSlugs:H}=q2();return(0,oo.useEffect)(()=>(H(u,_||"/vacancies/"),()=>H()),[]),(0,v.jsxs)(Z.Container,{maxWidth:p,className:b1(y),children:[(0,v.jsx)(a1,{className:"normal-case",children:t}),(0,v.jsxs)(N7.default,{container:!0,columnSpacing:{md:7,xs:0},className:"mt-[30px] md:mt-[16px]",children:[(0,v.jsx)(N7.default,{size:{md:6.8,xs:12},children:(0,v.jsxs)(Z.Box,{className:"bg-white py-[30px] px-[40px] flex flex-col gap-[20px] md:px-[20px] md:py-[20px] sm:mx-[-30px]",children:[r&&(0,v.jsxs)(Z.Box,{children:[(0,v.jsxs)(Z.Typography,{component:"span",className:"text-20 font-extrabold uppercase md:text-14",children:[N("We offer"),":"]}),(0,v.jsx)(O2,{body:r})]}),f&&(0,v.jsxs)(Z.Box,{children:[(0,v.jsxs)(Z.Typography,{component:"span",className:"text-20 font-extrabold uppercase md:text-14",children:[N("Additional information"),":"]}),(0,v.jsx)(O2,{body:f})]}),i&&(0,v.jsxs)(Z.Box,{children:[(0,v.jsxs)(Z.Typography,{component:"span",className:"text-20 font-extrabold uppercase md:text-14",children:[N("Requirements"),":"]}),(0,v.jsx)(O2,{body:i})]}),s&&(0,v.jsxs)(Z.Box,{children:[(0,v.jsxs)(Z.Typography,{component:"span",className:"text-20 font-extrabold uppercase md:text-14",children:[N("Qualities"),":"]}),(0,v.jsx)(O2,{body:s})]})]})}),(0,v.jsxs)(N7.default,{size:{md:5.2,xs:12},children:[(0,v.jsx)(t4,{updatedAt:o,pay:e,country:l,city:n,classes:"md:mt-[30px]"}),(0,v.jsxs)(Z.Box,{className:"mt-[34px] flex flex-col gap-4",children:[(0,v.jsx)(Z.Typography,{component:"span",className:"font-extrabold text-gold2 uppercase",children:N("Write to us if you like the vacancy and see yourself in our team")}),(0,v.jsxs)(Z.Box,{className:"flex flex-row gap-4",children:[(0,v.jsx)(x,{src:k.photoCard.fields.file.url,classesImg:"rounded-full object-top bg-accent-silver-4",classesWrapper:"w-[108px] xs:w-[80px] h-[108px] xs:h-[80px] md:shrink-0 "}),(0,v.jsxs)(Z.Box,{className:"flex flex-col gap-3",children:[(0,v.jsxs)(Z.Box,{className:"flex flex-col gap-1",children:[(0,v.jsx)(Z.Typography,{className:"font-extrabold text-16",children:`${k.firstName} ${k.lastName}`}),(0,v.jsx)(Z.Typography,{className:"text-14",children:k.position})]}),(0,v.jsxs)(Z.Box,{className:"flex flex-col gap-2",children:[B?(0,v.jsx)(I,{classes:"flex gap-[7px] items-center group/phone",data:n1("dubai",B),type:"tel",blank:!1,title:(0,v.jsxs)(v.Fragment,{children:[(0,v.jsx)(k6,{className:"group-hover/phone:filter-gold2"}),(0,v.jsx)(Z.Typography,{component:"span",className:"text-14",children:n1("dubai",B)})]})}):null,b?(0,v.jsx)(I,{classes:"flex gap-[7px] items-center group/email",data:b,type:"mail",blank:!1,title:(0,v.jsxs)(v.Fragment,{children:[(0,v.jsx)(M6,{className:"group-hover/email:filter-gold2"}),(0,v.jsx)(Z.Typography,{component:"span",className:"text-14",children:b})]})}):null]})]})]}),w]})]})]})]})}var r2=require("@mui/material");var I7=g(require("@mui/material/Grid2"));var H1=require("react/jsx-runtime");function I6({title:t,sellerItems:e,buyerItems:o,imageUrl:r,classes:s}){return(0,H1.jsx)(r2.Box,{className:`bg-white mt-[52px] md:mt-[30px] sm:!mt-[0px] md:pb-[55px] sm:!pb-0${c(s)}`,children:(0,H1.jsx)(r2.Container,{maxWidth:p,children:(0,H1.jsxs)(I7.default,{container:!0,columnSpacing:{md:5,xs:0},children:[(0,H1.jsx)(I7.default,{size:{md:6,xs:12},children:(0,H1.jsxs)(r2.Box,{className:"pt-[89px] pb-[105px] md:pt-[33px] md:pb-[29px]",children:[(0,H1.jsx)(r2.Typography,{component:"h2",className:"uppercase font-extrabold text-34 md:text-14",children:t}),(0,H1.jsx)(r2.Box,{className:"flex flex-col gap-[20px] mt-[16px] md:mt-[10px] md:flex-row sm:!flex-col md:gap-[40px] sm:!gap-[28px]",children:[e,o].map((i,l)=>(0,H1.jsxs)(r2.Box,{className:"flex flex-col md:w-1/2 sm:!w-full",children:[(0,H1.jsx)(r2.Typography,{component:"span",className:"font-extrabold text-16 md:text-14",children:i?.title}),(0,H1.jsx)(r2.Box,{className:"flex flex-col mt-[16px] gap-[6px] md:mt-[10px]",children:i?.items?.map(n=>(0,H1.jsx)(r2.Typography,{className:"block py-[6px] px-[16px] w-fit bg-gray-light md:text-12",children:n?.text1},n?.text1))})]},l))})]})}),(0,H1.jsx)(I7.default,{size:{md:6,xs:12},className:"sm:mx-[-30px]",children:(0,H1.jsx)(x,{src:r,alt:"Back",classesWrapper:"w-[50vw] md:w-full sm:!w-[140%] h-full md:h-[390px] sm:!h-[550px]"})})]})})})}var O4=require("@mui/material"),_7=g(require("@mui/material/Grid2"));var Z2=require("react/jsx-runtime");function _6({classes:t,text:e,imgSrc:o,title:r,actionComponent:s}){return(0,Z2.jsx)(O4.Container,{maxWidth:p,className:c(t),children:(0,Z2.jsxs)(_7.default,{container:!0,columnSpacing:{xs:3,md:9},rowSpacing:5,children:[(0,Z2.jsx)(_7.default,{size:{xs:12,sm:6},children:(0,Z2.jsx)(x,{contentful:!1,src:o,classesWrapper:"h-[350px] sm:h-[194px] xs:h-[230px] xs:mx-[calc(50%-50vw)]"})}),(0,Z2.jsx)(_7.default,{size:{xs:12,sm:6},children:(0,Z2.jsxs)(O4.Box,{className:"flex flex-col justify-center h-full",children:[(0,Z2.jsx)(A2,{children:r}),(0,Z2.jsx)(O4.Typography,{component:"span",className:"text-gray mt-[12px] sm:mt-[10px]",children:e}),s||null]})})]})})}var Y2=require("@mui/material"),T7=g(require("@mui/material/Grid2"));var _1=require("react/jsx-runtime");function T6({classes:t,text3:e,text2:o,text1:r,title:s}){let{showModal:i}=f1();return(0,_1.jsx)(Y2.Box,{className:`bg-white py-[80px]${c(t)}`,children:(0,_1.jsx)(Y2.Container,{maxWidth:p,children:(0,_1.jsxs)(T7.default,{container:!0,columnSpacing:9,children:[(0,_1.jsx)(T7.default,{size:{xs:12,md:6},children:(0,_1.jsx)(x,{contentful:!1,src:"/images/pngs/whatis.png",classesWrapper:"w-full h-[350px]"})}),(0,_1.jsx)(T7.default,{size:{xs:12,md:6},children:(0,_1.jsxs)(Y2.Box,{className:"flex flex-col h-full justify-center",children:[(0,_1.jsx)(Y2.Typography,{component:"span",className:"font-extrabold text-18",children:s}),(0,_1.jsx)(Y2.Typography,{component:"span",className:"mt-[12px] text-gray",children:r}),(0,_1.jsx)(Y2.Typography,{component:"span",className:"mt-[16px] text-gray",children:o}),(0,_1.jsx)(Y2.Typography,{component:"span",className:"mt-[16px] text-gray font-extrabold",children:e}),(0,_1.jsx)(S,{title:"Request Valuation",classes:"mt-[10px]",onClick:()=>i("GENERAL")})]})})]})})})}var U4=require("@mui/material");var i4=g(require("@mui/material/Grid2"));var l1=require("react/jsx-runtime"),zi=({classes:t,title1:e,title2:o,text2:r,text1:s,images:i,actionComponent:l})=>(0,l1.jsx)(U4.Container,{maxWidth:p,className:c(t),children:(0,l1.jsxs)(U4.Stack,{gap:{xs:5,md:6},children:[(0,l1.jsxs)(i4.default,{container:!0,columnSpacing:2.5,children:[(0,l1.jsx)(i4.default,{size:{xs:12,sm:6},children:(0,l1.jsxs)(U4.Stack,{className:"flex-col pr-[70px] xs:pr-0 h-full justify-center md:pr-[30px] sm:!pr-0 gap-2.5",children:[(0,l1.jsx)(T,{children:e}),(0,l1.jsx)("div",{className:"text-gray sm:text-12/[20px] xs:text-14",dangerouslySetInnerHTML:{__html:s}}),l||null]})}),(0,l1.jsx)(i4.default,{size:{xs:12,sm:6},children:(0,l1.jsx)(x,{contentful:!1,src:i?.[0]||"/images/pngs/dubai2.png",classesWrapper:"h-[350px] sm:h-[200px] w-full xs:mt-[20px]"})})]}),(0,l1.jsxs)(i4.default,{container:!0,columnSpacing:2.5,children:[(0,l1.jsx)(i4.default,{size:{xs:12,sm:6},order:{xs:2,sm:1},children:(0,l1.jsx)(x,{contentful:!1,src:i?.[1]||"/images/pngs/dubai.png",classesWrapper:"w-full h-[350px] sm:h-[200px] xs:mt-[20px]"})}),(0,l1.jsx)(i4.default,{size:{xs:12,sm:6},order:{xs:1,sm:2},children:(0,l1.jsxs)(U4.Stack,{className:"sm:!pl-0 flex-col pl-[70px] md:pl-[30px] xs:pl-0 h-full justify-center",children:[(0,l1.jsx)(T,{children:o}),(0,l1.jsx)("div",{className:"text-gray mt-[12px] sm:text-12/[20px] xs:text-14",dangerouslySetInnerHTML:{__html:r}})]})})]})]})}),ro=zi;var c1=require("@mui/material"),A7=g(require("@mui/material/Grid2"));var Q=require("react/jsx-runtime");function ao({number:t,label:e,text:o}){return(0,Q.jsxs)(c1.Box,{className:"flex flex-col",children:[(0,Q.jsxs)(c1.Typography,{component:"span",className:"text-gold text-40 sm:text-30/[33px]",children:["0",t]}),(0,Q.jsx)(c1.Typography,{component:"span",className:"font-extrabold uppercase mt-[16px] text-16 sm:text-12/[19px] sm:mt-[6px] xs:text-14",children:e}),(0,Q.jsx)(c1.Typography,{component:"span",className:"text-gray mt-[10px] sm:text-12/[19px] xs:text-14",children:o})]})}function A6({classes:t,box:e,title:o,text:r,actionComponent:s}){return(0,Q.jsx)(c1.Box,{className:`bg-white py-[70px] sm:py-[40px]${c(t)}`,children:(0,Q.jsxs)(c1.Container,{maxWidth:p,children:[(0,Q.jsxs)(A7.default,{container:!0,columnSpacing:{xs:2.5,md:9},children:[(0,Q.jsxs)(A7.default,{size:{sm:6,xs:12},children:[(0,Q.jsxs)(c1.Box,{className:"flex flex-col",children:[(0,Q.jsx)(T,{className:"sm:pr-[20px]",children:o}),(0,Q.jsx)(c1.Typography,{component:"span",className:"text-gray mt-[10px] sm:text-12/[19px] xs:text-14",children:r})]}),(0,Q.jsx)(c1.Box,{className:"flex flex-col gap-[40px] mt-[40px] sm:mt-[20px] xs:gap-[20px]",children:e&&e.slice(0,2).map((i,l)=>(0,Q.jsx)(ao,{number:i.number,text:i.text,label:i.label},l))})]}),(0,Q.jsx)(A7.default,{size:{sm:6,xs:12},children:(0,Q.jsxs)(c1.Box,{className:"flex flex-col gap-[40px] relative xs:gap-[20px]",children:[(0,Q.jsx)(c1.Box,{className:"absolute left-[6px] top-[10px] bottom-[160px] bg-gold w-[1px] sm:hidden"}),e&&e.slice(2,5).map((i,l)=>(0,Q.jsxs)(c1.Box,{className:"pl-[47px] relative sm:pl-0",children:[(0,Q.jsx)(c1.Box,{className:"absolute left-0 top-[10px] bg-gold rounded-full w-[14px] h-[14px] sm:hidden"}),(0,Q.jsx)(ao,{number:i.number,text:i.text,label:i.label},l)]},l))]})})]}),(0,Q.jsx)(c1.Box,{className:"mt-[60px] flex justify-center",children:s||null})]})})}var N3=require("@mui/material");var S6=g(require("@mui/material/Grid2")),k2=require("react/jsx-runtime");function E6({items:t,title:e,classes:o,imageUrl:r}){return(0,k2.jsx)(N3.Box,{sx:{backgroundImage:`url(${r||"/images/pngs/no-photo.jpg"})`},className:`w-full pt-[80px] pb-[124px] bg-cover md:py-[30px]${c(o)}`,children:(0,k2.jsxs)(N3.Container,{maxWidth:p,children:[(0,k2.jsx)("h2",{className:"!text-28 normal-case font-extrabold text-gold md:text-16",children:e}),(0,k2.jsx)(S6.default,{container:!0,className:"mt-[10px]",spacing:{sm:6.75,md:3.75},children:t?.map((s,i)=>{let l=i%2===0?"gold":"simple";return(0,k2.jsx)(S6.default,{size:{xs:12,md:4,sm:6},children:(0,k2.jsxs)(N3.Box,{className:`box-border h-full p-[30px] flex flex-col sm:mx-[-30px] md:pb-[20px] ${l==="gold"?"bg-gold":"border-gold border-solid border-[1px] text-gold "}`,children:[(0,k2.jsx)(x,{src:s?.imageUrl,alt:s?.text1,objectFit:"object-contain",classesWrapper:"w-[18px] h-[20px]"}),(0,k2.jsx)(N3.Typography,{component:"span",className:"text-16 font-extrabold mt-[16px]",children:s?.text1}),(0,k2.jsx)(N3.Typography,{component:"span",className:"mt-[5px]",children:s?.text2})]})},s.text1)})})]})})}var P4=g(require("@mui/material/Grid2")),a2=require("@mui/material");var r1=require("react/jsx-runtime"),Ki=({title:t,text1:e,properties:o,classes:r,actionComponent:s})=>(0,r1.jsx)(a2.Container,{maxWidth:p,className:c(r),children:(0,r1.jsxs)(P4.default,{container:!0,columnSpacing:{sm:5,xs:0},rowSpacing:2.5,children:[(0,r1.jsx)(P4.default,{size:{xs:12,sm:7.6,md:6},children:(0,r1.jsxs)(a2.Stack,{gap:1,children:[(0,r1.jsx)(a1,{children:t}),(0,r1.jsx)("div",{className:"text-14 text-accent-silver-3 sm:text-12/[19px] xs:text-14",dangerouslySetInnerHTML:{__html:e}})]})}),(0,r1.jsx)(P4.default,{size:{xs:12,sm:4.4,md:6},children:(0,r1.jsxs)(a2.Stack,{className:"float-end gap-5 items-end sm:gap-2.5 xs:mx-[calc(50%-50vw)] xs:!float-none",children:[(0,r1.jsxs)(a2.Stack,{className:"bg-accent-white p-[30px] flex-row gap-4 w-full max-w-[500px] xs:max-w-[unset]",children:[(0,r1.jsx)(a2.Box,{className:"sm:hidden",children:(0,r1.jsx)(B6,{})}),(0,r1.jsx)(P4.default,{container:!0,spacing:{sm:2,xs:1},children:o.map((i,l)=>(0,r1.jsx)(P4.default,{size:{xs:6,sm:12,md:6},children:(0,r1.jsxs)(a2.Stack,{spacing:.5,children:[(0,r1.jsx)(a2.Typography,{className:"text-16 font-extrabold sm:text-12 xs:text-16",children:i.title}),i.href?(0,r1.jsx)(h,{className:"text-14 hover:text-accent-beige sm:text-12 xs:text-14",href:i.href,children:i.desc}):(0,r1.jsx)(a2.Typography,{className:"text-14 sm:text-12",children:i.desc})]})},l))})]}),s||null]})})]})}),so=Ki;var H2=require("@mui/material");var T1=require("react/jsx-runtime"),V6=({present:t,description:e})=>(0,T1.jsxs)(H2.Box,{className:"flex flex-col items-center",children:[(0,T1.jsx)(H2.Typography,{className:"font-extrabold text-50",children:`${t}%`}),(0,T1.jsx)(H2.Typography,{className:"text-14 mt-[-10px]",children:e})]}),Qi=()=>(0,T1.jsx)(H2.Container,{maxWidth:p,className:" w-[800px]",children:(0,T1.jsxs)(H2.Stack,{className:"bg-white py-[50px] px-[70px] items-center gap-3",children:[(0,T1.jsx)(H2.Typography,{className:"font-extrabold text-24",children:"Payment plan"}),(0,T1.jsxs)(H2.Stack,{direction:"row",gap:4,alignItems:"baseline",children:[(0,T1.jsx)(V6,{present:"20",description:"first installment"}),(0,T1.jsx)(z1,{}),(0,T1.jsx)(V6,{present:"40",description:"under construction"}),(0,T1.jsx)(z1,{}),(0,T1.jsx)(V6,{present:"40",description:"on key handover"})]})]})}),io=Qi;var R7=require("react"),F=require("@mui/material");var R=require("react/jsx-runtime");function S7(t,e,o){return{name:t,calories:e,fat:o}}var qi=[S7("Studio with pool","from 2,521 sq. ft.","from 1,421 sq. ft."),S7("1 bedroom Apartments with pool","from 2,521 sq. ft.","from 1,421 sq. ft."),S7("2 bedroom Apartments with pool","from 10,540 sq. ft.","from 10,421 sq. ft."),S7("2 bedroom Duplex with pool","from 4,600 sq. ft.","from 1,821 sq. ft.")],E7=({children:t})=>(0,R.jsx)(F.TableCell,{className:"text-14 text-gray border-0 py-[10px] px-[20px]",children:t}),V7=t=>{let{children:e,...o}=t;return(0,R.jsx)(F.TableCell,{component:"th",className:"border-accent-silver-3 text-16",...o,children:e})},Xi=()=>{let[t,e]=(0,R7.useState)(0),{showModal:o}=f1();return(0,R.jsxs)(F.Container,{maxWidth:p,className:"my-[50px] w-[800px] flex flex-col items-center gap-5",children:[(0,R.jsx)(F.Typography,{className:"font-extrabold text-28",children:"Floor Plans"}),(0,R.jsx)(F.TableContainer,{children:(0,R.jsxs)(F.Table,{sx:{minWidth:650},"aria-label":"simple table",children:[(0,R.jsx)(F.TableHead,{className:"bg-white",children:(0,R.jsxs)(F.TableRow,{children:[(0,R.jsx)(E7,{children:"Type"}),(0,R.jsx)(E7,{children:"Total area"}),(0,R.jsx)(E7,{children:"Living area"}),(0,R.jsx)(E7,{})]})}),(0,R.jsx)(F.TableBody,{children:qi.map((r,s)=>(0,R.jsxs)(R7.Fragment,{children:[(0,R.jsxs)(F.TableRow,{className:"cursor-pointer",onClick:()=>e(s),sx:{"& th":{borderWidth:t===s?0:1},"&:last-child td, &:last-child th":{border:0}},children:[(0,R.jsx)(V7,{sx:{fontWeight:t===s?800:400},children:r.name}),(0,R.jsx)(V7,{children:r.calories}),(0,R.jsx)(V7,{children:r.fat}),(0,R.jsx)(V7,{children:(0,R.jsx)(Q1,{"aria-label":"expand row",size:"small",children:t!==s?(0,R.jsx)(_2,{style:{transform:"scale(0.7)"}}):null})})]}),(0,R.jsx)(F.TableRow,{children:(0,R.jsx)(F.TableCell,{className:`${t===s?"border-accent-dark border-b-[3px]":"border-0"}`,style:{paddingBottom:0,paddingTop:0},colSpan:4,children:(0,R.jsx)(F.Collapse,{in:t===s,timeout:"auto",unmountOnExit:!0,children:(0,R.jsxs)(F.Box,{className:"flex flex-col items-end pb-8",children:[(0,R.jsx)(x,{src:"/pngs/top-view-house.png",classesWrapper:"w-full h-[275px]",objectFit:"object-contain",contentful:!1}),(0,R.jsx)(S,{title:"Ask for price",onClick:()=>o("GENERAL")})]})})})})]},s))})]})})]})},lo=Xi;var G7=require("@mui/material");var W4=require("react/jsx-runtime"),ji=({src:t,tags:e,classes:o})=>(0,W4.jsxs)(G7.Box,{className:`relative flex justify-center${c(o)}`,children:[(0,W4.jsx)(x,{contentful:!1,src:t,alt:"img",classesWrapper:"overflow-hidden h-[480px] w-screen sm:h-[274px] xs:h-[200px]",sizes:"1401px"}),e?(0,W4.jsx)(G7.Container,{maxWidth:p,className:"absolute bottom-0 flex gap-3 flex-row py-10",children:e.map(r=>(0,W4.jsx)(C5,{view:"accent",label:r},r))}):null]}),no=ji;var po=require("@mui/material");var D4=require("react/jsx-runtime"),Ji=({classes:t,title:e,images:o})=>(0,D4.jsxs)(po.Box,{className:c(t),children:[(0,D4.jsx)(T,{className:"mb-[20px] sm:mb-[16px] block w-fit mx-auto",children:e}),(0,D4.jsx)(O1,{dots:!1,preLoaded:2,options:{slides:{origin:"center",perView:2,spacing:15},loop:!0},children:o&&o.map((r,s)=>(0,D4.jsx)(x,{src:r,classesWrapper:"w-full h-[440px] sm:h-[300px] xs:h-[186px]",objectFit:"object-cover",contentful:!1},s))})]}),Co=Ji;var I3=require("@mui/material"),mo=require("next-intl"),co=g(require("@mui/material/Avatar"));var z2=require("react/jsx-runtime"),$i=({classes:t,actionComponent:e})=>{let o=(0,mo.useTranslations)();return(0,z2.jsxs)(I3.Box,{className:b1("px-[60px] py-[30px] relative flex flex-row gap-8 sm:pb-[45px] xs:flex-col xs:p-[35px]",t),children:[(0,z2.jsx)(I3.Box,{className:"absolute inset-0 bg-custom-gradient z-10 xs:bg-custom-gradient-bottom"}),(0,z2.jsx)(co.default,{src:"/pngs/person2.png",className:"h-[220px] w-[220px] z-20 bg-accent-white sm:h-[160px] sm:w-[160px] xs:h-[219px] xs:w-[219px] xs:mx-auto"}),(0,z2.jsx)(x,{src:"/pngs/back-dubai-contact.png",classesWrapper:"!absolute right-0 bottom-0 w-[60%] h-full xs:left-0 xs:w-full",contentful:!1}),(0,z2.jsxs)(I3.Stack,{className:"z-20 gap-5 justify-center sm:gap-2.5 sm:justify-start sm:pt-[15px]",children:[(0,z2.jsxs)(I3.Stack,{className:"gap-3 sm:gap-1.5 xs:gap-1",children:[(0,z2.jsx)(A2,{className:"text-accent-white w-[335px] xs:w-full",children:o("Our Specialist is Here to Assist You")}),(0,z2.jsx)(I3.Typography,{className:"text-16 text-accent-white font-extrabold xs:text-14",children:o("Feel Free to Reach Out Anytime\u2014We're Available 24/7")})]}),e||null]})]})},fo=$i;var xo=require("@mui/material");var go=require("next-intl");var k5=g(require("@mui/material/Grid2"));var s2=require("react/jsx-runtime");function R6({title:t,areas:e,classes:o,href:r,children:s}){let i=(0,go.useTranslations)();return(0,s2.jsxs)(xo.Container,{maxWidth:p,className:c(o),children:[t&&(0,s2.jsx)(a1,{children:i(t)}),(0,s2.jsxs)(k5.default,{container:!0,columnSpacing:{md:3,sm:2.5,xs:0},rowSpacing:{md:4,sm:2.5,xs:3},className:"mt-[20px] md:!mt-[15px]",children:[e?.map((l,n)=>(0,s2.jsxs)(s2.Fragment,{children:[(0,s2.jsx)(k5.default,{size:{md:4,xs:12,sm:6},children:(0,s2.jsx)(b5,{whiteBottom:!0,title:l?.title,price:l?.price,imageUrl:l?.imageUrl,slug:l?.slug,href:r})},l?.slug),n+1===6?(0,s2.jsx)(k5.default,{size:12,children:s},`contact-block-${n}`):null]})),e&&e?.length<6?(0,s2.jsx)(k5.default,{size:12,children:s},"contact-block-end"):null]})]})}var O7=require("@mui/material");var G6=g(require("@mui/material/Grid2"));var F4=require("react/jsx-runtime");function O6({classes:t,href:e,newProjects:o}){return(0,F4.jsx)(O7.Container,{maxWidth:p,className:c(t),children:o?.length?(0,F4.jsx)(G6.default,{container:!0,spacing:3,children:o?.map((r,s)=>(0,F4.jsx)(G6.default,{size:{md:4,xs:12},children:(0,F4.jsx)(w5,{slug:r.slug,imgSrc:r.imgSrc,title:r.title,address:r.address,price:r.price,developer:r.developer,houseTypes:r.houseTypes,href:e})},s))}):(0,F4.jsx)(O7.Box,{children:"No new projects"})})}var U7=require("@mui/material");var ho=require("next-intl");var L1=require("react"),uo=require("keen-slider/react"),Z4=require("@mui/material");var y1=require("react/jsx-runtime");function l4({children:t,slides:e=3,spacing:o=24,title:r,linkComponent:s,options:i,dots:l=!0,preLoaded:n}){let[f,u]=(0,L1.useState)(0),[y,w]=(0,L1.useState)([]),B=(0,L1.useRef)([]);(0,L1.useEffect)(()=>{B.current=y},[y]);let b=1,[k,_]=(0,uo.useKeenSlider)({slideChanged(N){let H=N.track.details.rel,j=n?H:H-(e-b)!==L1.Children.count(t)?H+(e-b):H,m3=L1.Children.count(t),V3=[...B.current];V3[j]=!0,j>0&&(V3[j-b]=!0),j<m3-b&&(V3[j+b]=!0),u(j),w(V3)},...i||{slides:{perView:e,spacing:o},mode:"snap"}});return(0,L1.useEffect)(()=>{let N=L1.Children.count(t),H=Array(N).fill(!1);if(n){for(let j=0;j<n;j++)H[j]=!0;H[N-b]=!0}else for(let j=0;j<e;j++)H[j]=!0;w(H)},[e]),(0,y1.jsxs)(Z4.Stack,{children:[r?(0,y1.jsxs)(Z4.Stack,{justifyContent:"space-between",alignItems:"center",direction:"row",className:"mb-[20px] sm:mb-[10px]",children:[(0,y1.jsx)(T,{children:r}),(0,y1.jsxs)(Z4.Box,{className:"flex gap-[26px] items-center flex-row",children:[s||null,(0,y1.jsxs)(Z4.Box,{className:"flex gap-[10px] items-center",children:[(0,y1.jsx)(Q1,{isblack:"true",className:"p-0",onClick:N=>{N.preventDefault(),_.current?.prev()},children:(0,y1.jsx)(Q2,{style:{transform:"scale(0.5) "}})}),(0,y1.jsx)(Q1,{isblack:"true",className:"p-0",onClick:N=>{N.preventDefault(),_.current?.next()},children:(0,y1.jsx)(Q2,{style:{transform:"scale(0.5) rotate(180deg)"}})})]})]})]}):null,(0,y1.jsx)("div",{children:(0,y1.jsx)("div",{ref:k,className:"keen-slider",children:L1.Children.map(t,(N,H)=>(0,y1.jsx)("div",{className:"keen-slider__slide",children:y[H]?N:null}))})}),l&&_.current&&L1.Children.count(t)>e?(0,y1.jsx)("div",{className:"flex justify-center gap-[16px] mt-[30px] md:mt-[20px]",children:Array.from({length:Math.ceil(L1.Children.count(t)/e)}).map((N,H)=>(0,y1.jsx)("div",{onClick:()=>{if(!_.current)return;let j=Math.min(H*e,L1.Children.count(t)-e);_.current.moveToIdx(j)},className:"dot-slider"+(f>=H*e&&f<(H+1)*e?" dot-slider_active":"")},H))}):null]})}var W1=require("react/jsx-runtime");function U6({classes:t,projects:e,title:o,href:r}){let s=(0,ho.useTranslations)(),{xs:i,md:l}=A();return e?.length?(0,W1.jsxs)(U7.Container,{maxWidth:p,className:c(t),children:[(0,W1.jsx)(l4,{slides:i?1:l?2:3,dots:!1,linkComponent:i?null:(0,W1.jsx)(h,{href:r,children:(0,W1.jsx)(V1,{border:!0,children:s("All Projects")})}),title:s(o),children:e.map((n,f)=>(0,W1.jsx)(w5,{slug:n.slug,imgSrc:n.imgSrc,title:n.title,address:n.address,price:n.price,developer:n.developer,houseTypes:n.houseTypes,href:n.href},f))}),i?(0,W1.jsx)(U7.Box,{className:"flex my-3.5 justify-center",children:(0,W1.jsx)(h,{href:r,children:(0,W1.jsx)(V1,{border:!0,children:s("All Projects")})})}):null]}):(0,W1.jsx)(W1.Fragment,{})}var P7=require("@mui/material");var yo=require("next-intl"),D1=require("react/jsx-runtime");function P6({classes:t,areas:e,title:o,href:r}){let s=(0,yo.useTranslations)(),{xs:i}=A();return e?.length?(0,D1.jsxs)(P7.Container,{maxWidth:p,className:c(t),children:[(0,D1.jsx)(l4,{slides:i?1:3,dots:!1,linkComponent:i?null:(0,D1.jsx)(h,{href:r,children:(0,D1.jsx)(V1,{border:!0,children:s("All Areas")})}),title:s(o),children:e.map((l,n)=>(0,D1.jsx)(b5,{title:l?.title,price:l?.price,imageUrl:l?.imageUrl,slug:l?.slug,href:r},n))}),i?(0,D1.jsx)(P7.Box,{className:"flex my-3.5 justify-center",children:(0,D1.jsx)(h,{href:r,children:(0,D1.jsx)(V1,{border:!0,children:s("All Areas")})})}):null]}):(0,D1.jsx)(D1.Fragment,{})}var W7=require("@mui/material");var Lo=require("@mui/material"),W6=g(require("@mui/material/Typography"));var wo=require("next-intl"),n4=require("react/jsx-runtime");function H5({classes:t,slug:e,price:o,title:r,img:s,href:i}){let l=(0,wo.useTranslations)();return(0,n4.jsxs)(h,{href:i+"/"+e,className:`flex flex-col bg-white noHover${c(t)}`,children:[(0,n4.jsx)(x,{contentful:!1,src:s,classesWrapper:"h-[160px] border-b-[1px] border-gold",objectFit:"object-contain",objectPosition:"object-bottom"}),(0,n4.jsxs)(Lo.Box,{className:"flex flex-col pt-[20px] pb-[30px] justify-center text-center",children:[(0,n4.jsx)(W6.default,{component:"span",className:"text-18 font-extrabold sm:text-16",children:r}),(0,n4.jsx)(W6.default,{component:"span",className:"text-12 text-gray mt-[5px] sm:mt-0",children:`${l("Price from")}: ${C2(Number(o))}`})]})]})}var bo=require("next-intl"),F1=require("react/jsx-runtime");function D6({classes:t,developers:e,title:o,href:r}){let s=(0,bo.useTranslations)(),{md:i,xs:l}=A();return e?.length?(0,F1.jsxs)(W7.Container,{maxWidth:p,className:c(t),children:[(0,F1.jsx)(l4,{slides:l?1:i?2:3,dots:!1,linkComponent:l?null:(0,F1.jsx)(h,{href:r,children:(0,F1.jsx)(V1,{border:!0,children:s("All Developers")})}),title:s(o),children:e.map((n,f)=>(0,F1.jsx)(H5,{title:n.title,price:n.price,slug:n.slug,img:n.img,href:r},f))}),l?(0,F1.jsx)(W7.Box,{className:"flex my-3.5 justify-center",children:(0,F1.jsx)(h,{href:r,children:(0,F1.jsx)(V1,{border:!0,children:s("All Developers")})})}):null]}):(0,F1.jsx)(F1.Fragment,{})}var Bo=require("@mui/material");var vo=require("next-intl");var M5=g(require("@mui/material/Grid2"));var i2=require("react/jsx-runtime");function F6({title:t,devs:e,classes:o,href:r,children:s}){let i=(0,vo.useTranslations)();return(0,i2.jsxs)(Bo.Container,{maxWidth:p,className:c(o),children:[t&&(0,i2.jsx)(a1,{children:i(t)}),(0,i2.jsxs)(M5.default,{container:!0,columnSpacing:{md:3,sm:2.5,xs:0},rowSpacing:{md:4,sm:2.5,xs:3},className:"mt-[20px] md:!mt-[15px]",children:[e?.map((l,n)=>(0,i2.jsxs)(i2.Fragment,{children:[(0,i2.jsx)(M5.default,{size:{md:4,xs:12,sm:6},children:(0,i2.jsx)(H5,{title:l.title,price:l.text,slug:l.slug,img:l.img,href:r})},l?.slug),n+1===6?(0,i2.jsx)(M5.default,{size:12,children:s},`contact-block-${n}`):null]})),e&&e?.length<6?(0,i2.jsx)(M5.default,{size:12,children:s},"contact-block-end"):null]})]})}var Y4=require("@mui/material");var ko=require("next-intl");var l2=require("react/jsx-runtime");function Z6({title:t,services:e,classes:o,href:r,totalServices:s}){let i=(0,ko.useTranslations)();return console.log("totalServices",s),(0,l2.jsxs)(Y4.Container,{maxWidth:p,className:c(o),children:[t?(0,l2.jsx)(a1,{children:i(t)}):null,(0,l2.jsx)(Y4.Box,{className:"mt-[20px] xs:mt-[10px] flex flex-col gap-y-[65px] sm:gap-y-[40px]",children:e?.map((l,n)=>(console.log("idx",n),(0,l2.jsxs)(Y4.Box,{className:"grid grid-cols-2 gap-x-[20px] xs:grid-cols-1 xs:gap-y-[20px]",children:[(0,l2.jsxs)(Y4.Box,{className:`justify-center flex flex-col gap-y-3 ${n%2===0?"order-1 pr-[50px] sm:pr-[20px]":"order-2 pl-[50px] sm:pl-[20px]"} xs:!order-1 xs:p-0`,children:[(0,l2.jsx)(T,{children:l.title}),(0,l2.jsx)("span",{className:"sm:text-12/[19px] xs:text-14",children:l.text}),(0,l2.jsx)(B1,{title:i("Show more"),icon:(0,l2.jsx)(z1,{}),href:`${r}/${l.slug}`,color:"dark"})]}),(0,l2.jsx)(x,{src:l.imageUrl,classesWrapper:`w-full h-[348px] sm:h-[194px] ${n%2===0?"order-2":"order-1"} xs:!order-2`,objectFit:"object-cover"})]},l?.slug)))})]})}var z4=require("@mui/material");var _3=require("react/jsx-runtime");function Y6({classes:t,imgBanner:e,imgLogo:o}){return(0,_3.jsxs)(z4.Box,{className:`${c(t)} h-[480px] sm:h-[274px] xs:h-[200px] relative`,children:[(0,_3.jsx)(x,{contentful:!1,src:e,classesWrapper:"absolute h-full w-full left-0 top-0 z-[1] overflow-hidden h-[480px] w-screen sm:h-[274px] xs:h-[200px]"}),(0,_3.jsx)(z4.Container,{maxWidth:p,className:"absolute bottom-0 left-0 right-0 mx-auto h-[160px] sm:h-[82px]",children:(0,_3.jsxs)(z4.Box,{className:"h-full w-[179px] relative py-[20px] px-[35px] sm:w-[92px] sm:p-[10px]",children:[(0,_3.jsx)(z4.Box,{className:"bg-white h-full w-full absolute left-0 top-0 z-[2] opacity-[0.9]"}),(0,_3.jsx)(x,{contentful:!1,src:o,classesWrapper:"h-full w-full z-[3]",objectFit:"object-contain"})]})})]})}var M2=require("@mui/material");var D7=g(require("@mui/material/Grid2")),T3=g(require("@mui/material/Typography"));var Ho=require("next-intl"),U=require("react/jsx-runtime");function z6({classes:t,block:e,text:o,title:r}){let s=(0,Ho.useTranslations)(),{showModal:i}=f1();return(0,U.jsx)(M2.Container,{maxWidth:p,className:c(t),children:(0,U.jsxs)(D7.default,{container:!0,columnSpacing:13,children:[(0,U.jsx)(D7.default,{size:{md:6,xs:12},children:(0,U.jsxs)(M2.Box,{className:"flex flex-col",children:[(0,U.jsx)(T3.default,{component:"h1",className:"text-32 font-extrabold",children:r}),(0,U.jsx)("div",{className:"mt-[10px] text-gray",dangerouslySetInnerHTML:{__html:o}}),(0,U.jsx)(B1,{title:s("Show more"),icon:(0,U.jsx)(_2,{}),href:"/",classes:"mt-[20px]",color:"dark"})]})}),(0,U.jsx)(D7.default,{size:{md:6,xs:12},children:e&&(0,U.jsxs)(M2.Box,{className:"flex flex-col gap-[20px]",children:[(0,U.jsxs)(M2.Box,{className:"bg-white p-[30px] flex flex-col gap-[8px]",children:[(0,U.jsxs)(M2.Box,{className:"flex gap-[200px]",children:[(0,U.jsxs)(M2.Box,{className:"flex gap-[14px]",children:[(0,U.jsx)(o8,{}),(0,U.jsxs)(M2.Box,{className:"flex flex-col",children:[(0,U.jsx)(T3.default,{component:"span",className:"font-extrabold text-16",children:s("Projects")}),(0,U.jsx)(T3.default,{component:"span",children:e.projects})]})]}),(0,U.jsxs)(M2.Box,{className:"flex flex-col",children:[(0,U.jsx)(T3.default,{component:"span",className:"font-extrabold text-16",children:s("Price from")}),(0,U.jsx)(T3.default,{component:"span",children:C2(Number(e.priceFrom))})]})]}),(0,U.jsxs)(M2.Box,{className:"flex flex-col pl-[38px]",children:[(0,U.jsx)(T3.default,{component:"span",className:"font-extrabold text-16",children:s("Construction began")}),(0,U.jsx)(T3.default,{component:"span",children:e.begin})]})]}),(0,U.jsx)(S,{title:s("Consult with Expert"),classes:"self-end",onClick:()=>i("GENERAL")})]})})]})})}var Mo=require("@mui/material"),F7=g(require("@mui/material/Grid2"));var p4=require("react/jsx-runtime"),tl=t=>{let{classes:e,imgSrc:o,children:r}=t;return(0,p4.jsx)(Mo.Container,{maxWidth:p,className:c(e),children:(0,p4.jsxs)(F7.default,{container:!0,columnSpacing:9,children:[(0,p4.jsx)(F7.default,{size:{xs:12,md:6},children:(0,p4.jsx)(x,{contentful:!1,src:o,classesWrapper:"h-[350px]"})}),(0,p4.jsx)(F7.default,{size:{xs:12,md:6},children:r})]})})},No=tl;var c4=require("@mui/material"),X7=require("next-intl");var l3=require("@mui/material"),Eo=require("react");var N5=require("react/jsx-runtime"),el=({classes:t,small:e=!1,locale:o,homePage:r})=>{let s=()=>{let i=e?"transform scale-[0.68] absolute left-[-14px] top-[-9px]":"md:transform md:scale-[0.68] md:absolute md:left-[-14px] md:top-[-9px]";switch(o){case"ru":return(0,N5.jsx)(U9,{className:i});case"en":return(0,N5.jsx)(L9,{className:i});default:return(0,N5.jsx)(A9,{className:i})}};return(0,N5.jsx)(h,{href:r,className:`flex ${e?"relative w-[85px] h-[40px] block":"md:relative md:w-[85px] md:h-[40px] md:block"}${c(t)}`,children:s()})},A3=el;var Io=require("next-intl");var I5=require("react/jsx-runtime"),ol=({classes:t})=>{let e=(0,Io.useLocale)(),o=()=>{switch(e){case"ru":return(0,I5.jsx)($4,{});case"en":return(0,I5.jsx)($4,{});default:return(0,I5.jsx)($4,{})}};return(0,I5.jsx)(h,{href:L.HOME.path,className:`${t||""}`,children:o()})},Z7=ol;var _o=require("@mui/material/styles"),To=g(require("@mui/material/ToggleButton")),Ao=require("next-intl");var So=g(require("@mui/material/ToggleButtonGroup"));var Y7=require("react/jsx-runtime"),rl=(0,_o.styled)(To.default)(()=>({"&.Mui-selected, &.Mui-selected:hover":{backgroundColor:"white !important",color:"#C8BCA1 !important"}})),al=({locales:t,defLocale:e})=>{let o=(0,Ao.useLocale)(),r=x3(),{slugs:s,hrefPrefix:i}=q2();return(0,Y7.jsx)(So.default,{value:o,exclusive:!0,"aria-label":"language toggle",className:"flex flex-row gap-3",children:t.map(l=>(0,Y7.jsx)(h,{style:l.locale===o?{fontWeight:"bold"}:{},href:`${s?`${i}${s[`slug_${l.locale}`]}`:r}`,as:`${l.locale!==e?`/${l.locale}`:""}${s?`${i}${s[`slug_${l.locale}`]}`:r}`,locale:l.locale,children:(0,Y7.jsx)(rl,{value:l.locale,"aria-label":l.locale,className:"rounded-none !border-white min-w-10 py-1 px-5 uppercase text-accent-white",children:l.label})},l.locale))})},z7=al;var d1=require("react/jsx-runtime");function _5({menuItems:t,mainPhone:e,locales:o,site:r,homePage:s,children:i}){let[l,n]=(0,Eo.useState)(!1),f=u=>y=>{y.type==="keydown"&&(y.key==="Tab"||y.key==="Shift")||n(u)};return(0,d1.jsxs)(d1.Fragment,{children:[(0,d1.jsx)(l3.IconButton,{className:"hidden md:block md:h-[40px]",onClick:f(!0),children:(0,d1.jsx)(N9,{})}),(0,d1.jsx)(l3.Drawer,{anchor:"right",open:l,onClose:f(!1),children:(0,d1.jsxs)(l3.Box,{className:"w-[500px] h-full bg-gold-gradient px-[30px] pb-[30px] pt-[20px] text-14 text-white sm:w-[320px]",role:"presentation",onClick:f(!1),onKeyDown:f(!1),children:[(0,d1.jsxs)(l3.Box,{className:"flex items-center justify-between mb-5",children:[(0,d1.jsx)(Z7,{}),(0,d1.jsx)(l3.IconButton,{onClick:f(!1),children:(0,d1.jsx)(I9,{})})]}),(0,d1.jsx)(z7,{locales:o,homePage:s,defLocale:"en"}),(0,d1.jsx)(l3.Box,{className:"mt-[30px] flex flex-col gap-[20px]",children:t.map(u=>(0,d1.jsx)(h,{href:u.path,className:"hover:text-white",children:u.title},u.title))}),(0,d1.jsx)(I,{data:e,type:"tel",title:n1(r,e),classes:"hover:text-white font-extrabold mt-[30px] block mb-[18px]"}),i]})})]})}var n3=require("@mui/material"),K4=require("react/jsx-runtime"),sl=(0,n3.styled)(n3.Switch)(({theme:t})=>({width:60,height:30,padding:0,display:"flex","&:active":{"& .MuiSwitch-thumb":{width:20},"& .MuiSwitch-switchBase.Mui-checked":{transform:"translateX(12px)"}},"& .MuiSwitch-switchBase":{padding:5.1,color:"#C8BCA1",transform:"translateX(2px)","&.Mui-checked":{transform:"translateX(30px)",color:"#C8BCA1","& + .MuiSwitch-track":{opacity:1,backgroundColor:"#343434"}}},"& .MuiSwitch-thumb":{width:20,height:20,borderRadius:"100%",transition:t.transitions.create(["width"],{duration:200})},"& .MuiSwitch-track":{borderRadius:"22px",opacity:1,backgroundColor:"#343434",boxSizing:"border-box"}})),il=t=>{let{beforeText:e,afterText:o,...r}=t;return(0,K4.jsxs)(n3.Stack,{direction:"row",spacing:1,alignItems:"center",children:[e?(0,K4.jsx)(n3.Typography,{className:"text-base",children:e}):null,(0,K4.jsx)(sl,{defaultChecked:!0,...r,disableRipple:!0}),o?(0,K4.jsx)(n3.Typography,{className:"text-base",children:o}):null]})},Vo=il;var Go=require("@mui/material"),Oo=require("next-intl");var n2=require("react"),Y1=require("@mui/material");var Z1=require("react/jsx-runtime"),ll=({children:t,placeholder:e,childTitle:o,colorBorder:r=!1,clickComponent:s,fullContainerWidth:i=!1,overButton:l=!1,small:n=!1,fullWidth:f=!1,freeChildWidth:u=!1,btnStyles:y,btnStartIcon:w,whiteArrow:B=!1,intermediateChild:b,actionsComponent:k,childContainerSx:_,paperSx:N,openUp:H,disableCloseButton:j=!1,startIcon:m3,controlled:V3})=>{let[c3,e9]=(0,n2.useState)(null),[d3,o9]=(0,n2.useState)(!1),a0=E5=>{E5.persist(),V3||o9(!d3),d3?setTimeout(()=>{e9(null)},200):e9(E5.currentTarget)};(0,n2.useEffect)(()=>{V3&&o9(!!H)},[H]);let q4=()=>{o9(!1),setTimeout(()=>{e9(null)},200)},Br=(0,n2.isValidElement)(t)?(0,n2.cloneElement)(t,{collapseParent:q4}):t,vr=(0,n2.isValidElement)(k)?(0,n2.cloneElement)(k,{collapseParent:q4}):k;return(0,Z1.jsx)(Y1.ClickAwayListener,{onClickAway:q4,children:(0,Z1.jsxs)(Y1.Box,{width:f?"100%":"inherit",children:[s?(0,n2.cloneElement)(s,{ref:c3,onClick:a0,onClose:q4,collapse:d3?"true":void 0}):(0,Z1.jsxs)(Y1.Button,{ref:c3,"aria-controls":d3?"basic-menu":void 0,"aria-haspopup":"true","aria-expanded":d3?"true":void 0,onClick:a0,disableRipple:!0,fullWidth:!0,sx:{height:n?"34px":"38px",padding:n?"0 10px 0 6px":"0 20px 0 19px"},className:`border rounded-none border-solid normal-case text-accent-dark hover:bg-white ${r?"border-accent-beige flex-row-reverse justify-end gap-x-2":"justify-between border-accent-dark"} ${y||""} ${d3?"bg-white border-transparent":"border-accent-dark"}`,startIcon:m3,children:[(0,Z1.jsxs)(Y1.Box,{className:"flex flex-row gap-1 items-center w-[90%]",children:[w,(0,Z1.jsx)(Y1.Typography,{style:{top:"1px"},className:"text-sm truncate relative text-left",children:e})]}),r?null:(0,Z1.jsx)(v5,{style:{filter:B?"brightness(0) saturate(100%) invert(99%) sepia(75%) saturate(2%) hue-rotate(28deg) brightness(111%) contrast(100%)":"none",transform:d3?" scaleY(-1) rotateX(180deg)":"scaleY(1) rotateX(180deg)",transition:"0.3s ease-in-out"}})]}),c3?(0,Z1.jsxs)(Y1.Paper,{sx:E5=>({position:"absolute",minWidth:c3.offsetWidth,width:u?"fit-content":!i&&c3?c3.offsetWidth:"100%",left:i?0:"initial",right:i?0:"initial",top:l?0:"initial",[E5.breakpoints.up("md")]:{width:u?"fit-content":!i&&c3?c3.offsetWidth:"115%"},...N}),className:`transform ${d3?"animate-selectOpen":"animate-selectClose"} transition-none z-50 rounded-none shadow-sm ${b?"mt-[1px]":"m-0"}`,children:[b||null,(0,Z1.jsxs)(Y1.Box,{className:"flex flex-col py-3 px-4 gap-2 shadow-sm",sx:_,children:[!j&&l?(0,Z1.jsx)(Q1,{className:"bg-accent-silver p-1 self-end absolute",onClick:q4,children:(0,Z1.jsx)(W3,{})}):null,o?(0,Z1.jsx)(Y1.Typography,{className:"text-sm font-normal text-accent-silver-2",children:o}):null,Br,vr]})]}):null]})})},Ro=ll;var C4=require("react"),N2=require("@mui/material"),p3=require("react/jsx-runtime"),nl=({children:t,placeholder:e,fullContainerWidth:o=!1,overButton:r=!1,small:s=!1,upperCase:i=!1,bold:l=!1})=>{let[n,f]=(0,C4.useState)(null),[u,y]=(0,C4.useState)(!1),w=k=>{k.persist(),u?setTimeout(()=>{f(null)},200):f(k.currentTarget),y(!u)},B=()=>{y(!1),f(null)},b=(0,C4.isValidElement)(t)?(0,C4.cloneElement)(t,{collapseParent:B}):t;return(0,p3.jsx)(N2.ClickAwayListener,{onClickAway:B,children:(0,p3.jsxs)(N2.Box,{onMouseLeave:B,className:"relative",children:[(0,p3.jsxs)(N2.Button,{onMouseEnter:w,ref:n,"aria-controls":u?"basic-menu":void 0,"aria-haspopup":"true","aria-expanded":u?"true":void 0,onClick:w,disableRipple:!0,fullWidth:!0,sx:{height:s?"34px":"38px",padding:1},className:`rounded-none text-accent-dark hover:bg-white ${u?" bg-white":""} justify-between border-accent-dark gap-x-1 ${i?"upper-case":"normal-case"} `,children:[(0,p3.jsx)(N2.Typography,{className:`text-sm leading-4 ${l?"font-bold":"font-normal"}`,children:`${e}`}),(0,p3.jsx)(v5,{style:{transform:u?"scaleY(1)":"scaleY(-1)",transition:"0.3s ease-in-out"}})]}),n?(0,p3.jsx)(N2.Paper,{sx:{boxShadow:"none",position:"absolute",minWidth:n.offsetWidth,left:o?0:"initial",right:0,top:r?0:"initial"},className:"z-50 rounded-none",children:(0,p3.jsx)(N2.Box,{className:"flex flex-col p-3 gap-3",children:b})}):null]})})},K7=nl;var Q7=require("react/jsx-runtime"),pl=({locales:t,homePage:e,defLocale:o})=>{let r=(0,Oo.useLocale)(),s=x3(),{slugs:i,hrefPrefix:l}=q2();return(0,Q7.jsx)(Go.Box,{className:p2(s,e)?"homeLocaleSwitcher":"",children:(0,Q7.jsx)(K7,{placeholder:r,upperCase:!0,children:t.map(n=>(0,Q7.jsx)(h,{className:"uppercase",style:n.locale===r?{fontWeight:"bold"}:{},href:`${i?`${l}${i[`slug_${n.locale}`]}`:s}`,as:`${n.locale!==o?`/${n.locale}`:""}${i?`${l}${i[`slug_${n.locale}`]}`:s}`,locale:n.locale,children:n.label},n.locale))})})},q7=pl;var Zo=g(require("@mui/material/ToggleButtonGroup"));var gR=require("react"),m4=require("react/jsx-runtime"),Cl=t=>(0,m4.jsxs)("svg",{width:18,height:18,viewBox:"0 0 18 18",fill:"none",xmlns:"http://www.w3.org/2000/svg",...t,children:[(0,m4.jsx)("path",{d:"M1 2C1 1.73478 1.10536 1.48043 1.29289 1.29289C1.48043 1.10536 1.73478 1 2 1H6C6.26522 1 6.51957 1.10536 6.70711 1.29289C6.89464 1.48043 7 1.73478 7 2V6C7 6.26522 6.89464 6.51957 6.70711 6.70711C6.51957 6.89464 6.26522 7 6 7H2C1.73478 7 1.48043 6.89464 1.29289 6.70711C1.10536 6.51957 1 6.26522 1 6V2Z",stroke:"#343434",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"}),(0,m4.jsx)("path",{d:"M11 2C11 1.73478 11.1054 1.48043 11.2929 1.29289C11.4804 1.10536 11.7348 1 12 1H16C16.2652 1 16.5196 1.10536 16.7071 1.29289C16.8946 1.48043 17 1.73478 17 2V6C17 6.26522 16.8946 6.51957 16.7071 6.70711C16.5196 6.89464 16.2652 7 16 7H12C11.7348 7 11.4804 6.89464 11.2929 6.70711C11.1054 6.51957 11 6.26522 11 6V2Z",stroke:"#343434",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"}),(0,m4.jsx)("path",{d:"M1 12C1 11.7348 1.10536 11.4804 1.29289 11.2929C1.48043 11.1054 1.73478 11 2 11H6C6.26522 11 6.51957 11.1054 6.70711 11.2929C6.89464 11.4804 7 11.7348 7 12V16C7 16.2652 6.89464 16.5196 6.70711 16.7071C6.51957 16.8946 6.26522 17 6 17H2C1.73478 17 1.48043 16.8946 1.29289 16.7071C1.10536 16.5196 1 16.2652 1 16V12Z",stroke:"#343434",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"}),(0,m4.jsx)("path",{d:"M11 12C11 11.7348 11.1054 11.4804 11.2929 11.2929C11.4804 11.1054 11.7348 11 12 11H16C16.2652 11 16.5196 11.1054 16.7071 11.2929C16.8946 11.4804 17 11.7348 17 12V16C17 16.2652 16.8946 16.5196 16.7071 16.7071C16.5196 16.8946 16.2652 17 16 17H12C11.7348 17 11.4804 16.8946 11.2929 16.7071C11.1054 16.5196 11 16.2652 11 16V12Z",stroke:"#343434",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"})]}),Uo=Cl;var yR=require("react"),K6=require("react/jsx-runtime"),ml=t=>(0,K6.jsx)("svg",{width:21,height:20,viewBox:"0 0 21 20",fill:"none",xmlns:"http://www.w3.org/2000/svg",...t,children:(0,K6.jsx)("path",{d:"M9 15L7 14M7 14L1 17V4L7 1M7 14V1M7 1L13 4M13 4L19 1V8.5M13 4V9M18.1992 17.1992L19.9992 18.9992M13 15C13 15.7956 13.3161 16.5587 13.8787 17.1213C14.4413 17.6839 15.2044 18 16 18C16.7956 18 17.5587 17.6839 18.1213 17.1213C18.6839 16.5587 19 15.7956 19 15C19 14.2044 18.6839 13.4413 18.1213 12.8787C17.5587 12.3161 16.7956 12 16 12C15.2044 12 14.4413 12.3161 13.8787 12.8787C13.3161 13.4413 13 14.2044 13 15Z",stroke:"#343434",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"})}),Po=ml;var Yo=require("react-hook-form");var Wo=require("react"),Do=require("@mui/material"),Fo=g(require("@mui/material/ToggleButton")),Q6=require("react/jsx-runtime"),cl=(0,Do.styled)(Fo.default)(()=>({"&.Mui-selected, &.Mui-selected:hover":{backgroundColor:"inherit !important"}})),dl=t=>{let{value:e,selected:o,IconComponent:r}=t,[s,i]=(0,Wo.useState)(!1);function l(n){i(n)}return(0,Q6.jsx)(cl,{disableRipple:!0,className:"border-none normal-case p-0",value:e,onMouseEnter:()=>l(!0),onMouseLeave:()=>l(!1),children:(0,Q6.jsx)(r,{style:{transition:"transform 0.3s ease",filter:o||s?"brightness(0) saturate(100%) invert(61%) sepia(30%) saturate(334%) hue-rotate(4deg) brightness(90%) contrast(85%)":"unset"}})})},q6=dl;var T5=require("react/jsx-runtime"),xl=()=>{let{setValue:t,watch:e}=(0,Yo.useFormContext)(),o=e("view")||"card";return(0,T5.jsxs)(Zo.default,{value:o,exclusive:!0,onChange:(s,i)=>{i!==null&&t("view",i)},"aria-label":"catalog view",className:"gap-3 ml-5",children:[(0,T5.jsx)(q6,{value:"card",selected:o==="card",IconComponent:Uo}),(0,T5.jsx)(q6,{value:"map",selected:o==="map",IconComponent:Po})]})},zo=xl;var M1=require("react/jsx-runtime");function X6({menuItems:t,mainPhone:e,locales:o,site:r,homePage:s,whatsUp:i,defLocale:l,children:n}){let f=x3(),u=(0,X7.useLocale)(),y=(0,X7.useTranslations)();return(0,M1.jsx)(c4.Box,{component:"header",className:`z-[100]${p2(f,s)?" absolute w-full":""}`,children:(0,M1.jsxs)(c4.Container,{maxWidth:"lg",className:"flex justify-between items-center py-[24px] md:py-[20px]",children:[(0,M1.jsx)(A3,{locale:u,classes:"self-end",homePage:s}),(0,M1.jsxs)(c4.Box,{className:"flex flex-col gap-5 md:hidden",children:[(0,M1.jsxs)(c4.Box,{className:"flex gap-[30px] justify-end items-center",children:[e&&(0,M1.jsx)(I,{data:n1(r,e),type:"tel",title:n1(r,e),blank:!1,classes:p2(f,s)?"text-white hover:text-gold":""}),i&&(0,M1.jsx)(I,{type:"whatsapp",title:p2(f,s)?(0,M1.jsx)(J4,{}):(0,M1.jsx)(Y9,{}),data:e,classes:`flex ${p2(f,s)?"hover:filter-gold":"hover:filter-gold2"}`}),n,(0,M1.jsx)(q7,{locales:o,homePage:s,defLocale:l})]}),(0,M1.jsx)(c4.Box,{className:"flex gap-[30px]",children:t.map(w=>(0,M1.jsx)(h,{href:w.path,className:`
7
7
  uppercase font-extrabold text-11${f===w.path?" text-gold2":""}
8
8
  ${p2(f,s)?" text-white hover:text-gold":""}
9
- `,children:y(w.title)},w.title))})]}),(0,M1.jsx)(_5,{locales:o,menuItems:t,mainPhone:e,site:r,homePage:s,defLocale:l,children:n})]})})}var Ko=require("react");var qo=require("react/jsx-runtime"),gl=t=>{let{md:e}=A(),o=x3(),{onClick:r,title:s,homePage:i}=t;return(0,qo.jsx)(S,{title:s,onClick:r,classes:e||p2(o,i)?"hover:bg-gold hover:text-white px-[30px]":"",view:p2(o,i)||e?"transparent":"dark"})},Qo=(0,Ko.memo)(gl);var I2=require("@mui/material");var S3=g(require("@mui/material/Grid2"));var j7=require("next-intl");var P=require("react/jsx-runtime");function j6({instagram:t,facebook:e,youtube:o,linkedIn:r,menuItems:s,mainPhone:i,site:l,homePage:n}){let f=(0,j7.useLocale)(),u=(0,j7.useTranslations)();return(0,P.jsx)(I2.Box,{component:"footer",className:"bg-white pt-[60px] pb-[45px] md:pt-[40px] md:pb-[45px] sm:!pt-[33px] sm:!pb-[30px]",children:(0,P.jsxs)(I2.Container,{maxWidth:p,children:[(0,P.jsxs)(S3.default,{container:!0,columnSpacing:{md:3.5,xs:2.5},rowSpacing:{sm:0,xs:2.5},children:[(0,P.jsx)(S3.default,{size:{sm:3,xs:12},children:(0,P.jsxs)(I2.Box,{className:"flex flex-col",children:[(0,P.jsx)(A3,{small:!0,locale:f,homePage:n}),(0,P.jsx)(r4,{facebook:e,youtube:o,linkedIn:r,instagram:t,classes:"mt-[22px] md:mt-[12px] md:gap-[9px] sm:hidden"}),(0,P.jsx)(I,{data:i,type:"tel",title:n1(l,i),classes:"mt-[12px] md:hidden text-12"})]})}),(0,P.jsx)(S3.default,{size:{sm:3,xs:6},children:(0,P.jsx)(I2.Box,{className:"flex flex-col gap-[7px] text-12 !leading-[21px]",children:s.slice(0,4).map(y=>(0,P.jsx)(h,{href:y.path,children:u(y.title)},y.title))})}),(0,P.jsx)(S3.default,{size:{sm:3,xs:6},children:(0,P.jsx)(I2.Box,{className:"flex flex-col gap-[7px] text-12 !leading-[21px]",children:s.slice(4,8).map(y=>(0,P.jsx)(h,{href:y.path,children:u(y.title)},y.title))})}),(0,P.jsx)(S3.default,{size:6,className:"hidden sm:block",children:(0,P.jsx)(I,{data:i,type:"tel",title:n1(l,i),classes:"text-12"})}),(0,P.jsx)(S3.default,{size:6,className:"hidden sm:block",children:(0,P.jsx)(r4,{facebook:e,youtube:o,linkedIn:r,instagram:t,classes:"xs:gap-[5px]"})}),(0,P.jsx)(S3.default,{size:{sm:3,xs:12},children:(0,P.jsxs)(I2.Box,{className:"flex flex-col gap-[35px] items-end md:gap-[0px] sm:items-start sm:gap-[20px]",children:[(0,P.jsx)(S,{title:u("Write to us"),classes:"!w-[200px]"}),(0,P.jsx)(I,{data:i,type:"tel",title:n1(l,i),classes:"hidden md:block sm:!hidden text-12"})]})})]}),(0,P.jsx)(I2.Box,{className:"mt-[47px] text-center md:mt-[31px] sm:!mt-[17px] sm:text-start",children:(0,P.jsxs)(I2.Typography,{component:"span",className:"text-10",children:["\xA9 ",new Date().getFullYear()," ",u("Mayak real estate agency"),"."," ",u("All rights reserved")]})})]})})}var A1=require("@mui/material");var E3=g(require("@mui/material/Grid2"));var J7=require("next-intl");var G=require("react/jsx-runtime");function J6({instagram:t,facebook:e,youtube:o,linkedIn:r,menuItems:s,mainPhone:i,site:l,homePage:n,additionalMenu:f}){let u=(0,J7.useLocale)(),y=(0,J7.useTranslations)(),{sm:w,xs:B}=A();return(0,G.jsx)(A1.Box,{component:"footer",className:"bg-white py-[60px] md:pt-[40px] md:pb-[45px] sm:!pt-[33px] sm:!pb-[30px]",children:(0,G.jsxs)(A1.Container,{maxWidth:p,children:[(0,G.jsxs)(E3.default,{container:!0,columnSpacing:{md:7.5,xs:2.5},rowSpacing:{md:0,xs:2.5},children:[(0,G.jsx)(E3.default,{size:{md:2.4,sm:4,xs:12},children:(0,G.jsxs)(A1.Box,{className:"flex flex-col",children:[(0,G.jsx)(A3,{small:!0,locale:u,homePage:n,classes:"sm:hidden xs:block"}),(0,G.jsx)(I,{data:i,type:"tel",title:n1(l,i),classes:"mt-[16px] sm:mt-0 xs:mt-[20px]"}),(0,G.jsxs)(A1.Box,{className:"mt-[10px] xs:w-3/4",children:[(0,G.jsx)("strong",{children:"Dubai"}),", Business Bay, Single Business Tower, office 1801/1802"]}),(0,G.jsx)(r4,{facebook:e,youtube:o,linkedIn:r,instagram:t,classes:"mt-[16px] md:mt-[12px] md:gap-[9px]"})]})}),(0,G.jsx)(E3.default,{size:{md:2.4,sm:4,xs:6},children:(0,G.jsx)(A1.Box,{className:"flex flex-col gap-[7px] xs:gap-[4px] text-12 !leading-[21px]",children:s.slice(0,5).map(b=>(0,G.jsx)(h,{href:b.path,className:"w-fit",children:y(b.title)},b.title))})}),(0,G.jsx)(E3.default,{size:{md:2.4,sm:4,xs:6},children:(0,G.jsx)(A1.Box,{className:"flex flex-col gap-[7px] xs:gap-[4px] text-12 !leading-[21px]",children:s.slice(5,10).map(b=>(0,G.jsx)(h,{href:b.path,className:"w-fit",children:y(b.title)},b.title))})}),w&&!B&&(0,G.jsx)(E3.default,{size:{md:0,sm:4,xs:0}}),(0,G.jsx)(E3.default,{size:{md:2.4,sm:4,xs:6},children:(0,G.jsx)(A1.Box,{className:"flex flex-col gap-[7px] xs:gap-[4px] text-12 !leading-[21px]",children:f.items.slice(0,6).map((b,k)=>(0,G.jsx)(h,{href:b.path,className:"w-fit",children:y(b.title)},k))})}),(0,G.jsx)(E3.default,{size:{md:2.4,sm:4,xs:6},children:(0,G.jsx)(A1.Box,{className:"flex flex-col gap-[7px] xs:gap-[4px] text-12 !leading-[21px]",children:f.items.slice(6,12).map((b,k)=>(0,G.jsx)(h,{href:b.path,className:"w-fit",children:y(b.title)},k))})})]}),(0,G.jsxs)(A1.Box,{className:"mt-[65px] flex justify-between items-center md:mt-[31px] sm:!mt-[20px] sm:flex-col sm:items-start xs:gap-[10px]",children:[(0,G.jsxs)(A1.Typography,{component:"span",className:"text-10",children:["\xA9 ",new Date().getFullYear()," ",y("Mayak real estate agency"),"."," ",y("All rights reserved")]}),(0,G.jsx)(A1.Typography,{component:"span",className:"text-10",children:y("Site promotion by Digital Kitchen Agency")})]})]})})}var Xo=require("@mui/material");var jo=require("react/jsx-runtime");function $6({children:t,classes:e}){return(0,jo.jsx)(Xo.Box,{component:"main",className:`bg-gray-light${c(e)}`,children:t})}var t0=require("@mui/material/styles"),e0=require("@mui/material"),Jo=(0,t0.styled)(e0.Badge)(({})=>({"& .MuiBadge-badge":{right:4,top:4,background:"#343434",color:"white"}})),$o=(0,t0.styled)(e0.Badge)(({})=>({"& .MuiBadge-badge":{right:-10,background:"#343434",color:"white"}}));var ul=g(require("@mui/material/Checkbox")),$7=require("@mui/material"),hl=g(require("@mui/material/Typography")),tr=require("react/jsx-runtime"),yl=(0,$7.styled)("span")(()=>({width:16,height:16,backgroundColor:"white"})),OG=(0,$7.styled)(yl)({"&::before":{width:16,height:16,display:"flex",alignItems:"center",justifyContent:"center",content:`url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.66667L4.82353 8L11 1' stroke='%23343434' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")`}});var er=require("@mui/material"),rr=require("react/jsx-runtime"),Ll=t=>{let{children:e}=t;return(0,rr.jsx)(er.List,{disablePadding:!0,...t,children:e})},or=Ll;var ar=require("@mui/material"),sr=g(require("@mui/material/ListItemButton")),ir=g(require("@mui/material/ListItemIcon")),lr=g(require("@mui/material/ListItemText")),nr=g(require("@mui/material/Typography")),d4=require("react/jsx-runtime"),wl=({icon:t,title:e,bold:o,value:r,onClick:s})=>(0,d4.jsx)(ar.ListItem,{disablePadding:!0,disableGutters:!0,children:(0,d4.jsxs)(sr.default,{className:"p-0 hover:bg-transparent hover:text-accent-beige transition-all",onClick:()=>s&&s(r),disableRipple:!0,children:[t?(0,d4.jsx)(ir.default,{sx:{minWidth:"24px"},children:t}):null,(0,d4.jsx)(lr.default,{sx:{margin:"5px 0"},children:(0,d4.jsx)(nr.default,{className:`text-xs ${o?"font-extrabold":"font-normal"}`,children:e})})]})}),pr=wl;var t9=require("@mui/material/styles"),Cr=g(require("@mui/material/Accordion")),Q4=g(require("@mui/material/AccordionSummary")),mr=g(require("@mui/material/AccordionDetails")),o0=require("react/jsx-runtime"),cr=(0,t9.styled)(t=>(0,o0.jsx)(Cr.default,{disableGutters:!0,elevation:0,square:!0,...t}))(({theme:t,isFirst:e})=>({backgroundColor:"transparent",border:"none",[t.breakpoints.up("sm")]:{"&::before":{opacity:"0 !important"},"&::after":{opacity:"0 !important"}},"&::first-of-type":{"&::before":{opacity:"1 !important",top:"-2px",backgroundColor:"#DBDBDB"}},"&::before":{opacity:"0",top:"-2px",backgroundColor:"#DBDBDB"},"&::after":{position:"absolute",left:0,top:"36px",right:0,height:"1px",content:'""',opacity:1,backgroundColor:"#DBDBDB",transition:" opacity 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms"},[`&.${Q4.accordionSummaryClasses.expanded}`]:{"&::before":{opacity:"1",backgroundColor:"#99835F"},"&::after":{backgroundColor:"#99835F"}},...e&&{"&::before":{opacity:"1",backgroundColor:"#DBDBDB"}}})),dr=(0,t9.styled)(t=>(0,o0.jsx)(Q4.default,{...t}))(()=>({[`& .${Q4.accordionSummaryClasses.content}`]:{margin:0},[`& .${Q4.accordionSummaryClasses.expanded}`]:{filter:"brightness(0) saturate(100%) invert(64%) sepia(4%) saturate(3237%) hue-rotate(358deg) brightness(82%) contrast(84%)"}})),fr=(0,t9.styled)(mr.default)(({theme:t})=>({border:"none",padding:"0",[t.breakpoints.down("sm")]:{padding:" 10px 0 "}}));var ur=require("@mui/material"),hr=require("react-hook-form");var aO=require("react"),r0=require("react/jsx-runtime"),bl=t=>(0,r0.jsx)("svg",{width:8,height:12,viewBox:"0 0 8 12",fill:"none",xmlns:"http://www.w3.org/2000/svg",...t,children:(0,r0.jsx)("path",{d:"M1.75 1.5L6.25 6L1.75 10.5",stroke:"#343434",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"})}),A5=bl;var S5=require("react"),xr=require("zustand");var Bl=require("zustand/vanilla");var kl=require("react/jsx-runtime"),vl=(0,S5.createContext)(void 0);var gr=t=>{let e=(0,S5.useContext)(vl);if(!e)throw new Error("useDeviceStore must be used within DeviceStoreProvider");return(0,xr.useStore)(e,t)};var yr=require("next/navigation");var C3=require("react/jsx-runtime"),Hl=t=>{let{setValue:e,watch:o}=(0,hr.useFormContext)(),r=(0,yr.useSearchParams)(),{isMobile:s}=gr(n=>n),{total:i}=t,l=(n,f)=>{e("page",f)};return i&&i<v4||o("view")==="map"&&s?null:(0,C3.jsx)(ur.Pagination,{boundaryCount:1,siblingCount:s?0:1,renderItem:n=>{if(n.page&&n.page<=Math.ceil(i/v4)){let f=new URLSearchParams(r.toString());return f.set("page",n.page?.toString()),(0,C3.jsx)(h,{href:`?${f.toString()}`,passHref:!0,children:(0,C3.jsx)(y3,{...n,slots:{next:()=>(0,C3.jsx)(A5,{}),previous:()=>(0,C3.jsx)(A5,{style:{transform:"rotate(180deg)"}})}})})}return(0,C3.jsx)(y3,{...n,slots:{next:()=>(0,C3.jsx)(A5,{}),previous:()=>(0,C3.jsx)(A5,{style:{transform:"rotate(180deg)"}})}})},count:i?Math.ceil(i/v4):0,size:"small",page:Number(r.get("page"))||1,onChange:l,className:"mt-[40px] w-fit mx-auto"})},Lr=Hl;var f4=require("@mui/material");var wr=require("@mui/material/styles");var K2=require("react/jsx-runtime"),Ml=(0,wr.styled)(f4.Breadcrumbs)(({})=>({"& .MuiBreadcrumbs-li":{display:"inline-flex",alignItems:"end",whiteSpace:"nowrap"},ol:{display:"flex",flexWrap:"nowrap",overflowX:"auto",overflowY:"hidden",scrollBehavior:"smooth","-webkit-overflow-scrolling":"touch",width:"100%",paddingLeft:0,paddingRight:0,"li:last-child":{pointerEvents:"none"}}})),Nl=({breadCrumbsList:t})=>(0,K2.jsx)(f4.Container,{maxWidth:p,children:(0,K2.jsxs)(Ml,{sx:{marginBottom:2},"aria-label":"breadcrumb",separator:(0,K2.jsx)(i8,{}),className:"breadcrumbs",children:[(0,K2.jsx)(h,{href:"/",className:"h-[16px] mt-[-2px]",children:(0,K2.jsx)(n8,{})}),t?t.map((e,o)=>o===t.length-1?(0,K2.jsx)(f4.Typography,{className:"text-10 text-accent-silver-3 h-[11px]",children:e.name},e.name||o):(0,K2.jsx)(h,{href:e.path,children:(0,K2.jsx)(f4.Typography,{className:"text-10 text-accent-silver-3 h-[11px]",children:e.name})},e.name||o)):null]})}),br=Nl;0&&(module.exports={AboutCompanyMain,AboutUsFirstBlock,Accordion,AccordionDetails,AccordionSummary,AmenitiesBlock,AnyLevelBlock,AnyQuestionsBlock,AreasFull,AreasSlider,ArticleContent,ArticlesBlock,ArticlesFull,BannerBlock,BannerBlock2,BannerReferralProgram,BecomePartner,BenefitsBlock,BenefitsVacanciesBlock,BlockAboutCareer,BlockChoiceLinkGoToCatalog,BlockContacts,BlockGroupLinks,BlockImages,BlockOurTeam,BlockTabsGroupLinks,BreadCrumbs,Button,ButtonDark,CallConsult,CallMeBlock,CasesBlock,CatalogNewProjects,CatalogRealtiesBlock,CatalogViewSwitch,ClientTransferProcess,ContactDubaiBlock,ContactUsBlock,DeveloperBanner,DeveloperTwoBlocks,DevelopersFull,DevelopersSlider,ErrorMessage,ExpertiseBlock,FAQ,FancyBox,FloorPlansBlock,Footer,Footer2,FormBlock,FormInput,FullScreenImage,GalleryBlock,GalleryRealty,H1,H1Big,H2,H3,H4,H5,H6,Header,HeaderContactButton,HeaderMob,IconButton,ImageAndTextBlock,Input,JoinTeamBlock,LegalSupport,LinkIconBorder,LinkOut,List,ListItem,LocaleSwitch,LocaleSwitchToggle,LogoBlock,LogoBlockWhite,MODAL_COMPONENT,MODAL_COMPONENTS,MODAL_TITLES,Main,ObjectInfoBlock,Offices,OfficesBlock,OpenVacancies,OtherVacancies,OurAdvantages,OurServices,Paginator,PaginatorItem,PaginatorSimple,PaymentPlanBlock,PhoneNumberInput,PopularAreas,Portfolios,ProjectsSlider,ReferralProgramFirstBlock,SearchInput,Select,ServicesFull,ServicesTexts,SimpleSelect,SliderDefault,SliderObject,SocialBlock,SocialBlockMain,SortToggle,StyledBadge,StyledBadgeDesc,StyledButton,SubmitSelectButton,Switch,TeamWorkerBlock,TextBlock,TextImageTileBlock,ThanksBlock,TitleBlock,ToggleButton,ToggleButtonGroup,ToggleButtonsMultiple,ToggleButtonsWithLabel,TopDevelopers,TrustUs,VacancyBoxInfo,VacancyContent,WeOffer,WeTakeFull,WhatIsYour,WhyShouldWork,WhyWe,createLocaleSlugSlice,createModalSlice,hrefSlugPrefix,useLayoutStore,useLocaleSlugStore,useWindowSize});
9
+ `,children:y(w.title)},w.title))})]}),(0,M1.jsx)(_5,{locales:o,menuItems:t,mainPhone:e,site:r,homePage:s,defLocale:l,children:n})]})})}var Ko=require("react");var qo=require("react/jsx-runtime"),gl=t=>{let{md:e}=A(),o=x3(),{onClick:r,title:s,homePage:i}=t;return(0,qo.jsx)(S,{title:s,onClick:r,classes:e||p2(o,i)?"hover:bg-gold hover:text-white px-[30px]":"",view:p2(o,i)||e?"transparent":"dark"})},Qo=(0,Ko.memo)(gl);var I2=require("@mui/material");var S3=g(require("@mui/material/Grid2"));var j7=require("next-intl");var P=require("react/jsx-runtime");function j6({instagram:t,facebook:e,youtube:o,linkedIn:r,menuItems:s,mainPhone:i,site:l,homePage:n}){let f=(0,j7.useLocale)(),u=(0,j7.useTranslations)();return(0,P.jsx)(I2.Box,{component:"footer",className:"bg-white pt-[60px] pb-[45px] md:pt-[40px] md:pb-[45px] sm:!pt-[33px] sm:!pb-[30px]",children:(0,P.jsxs)(I2.Container,{maxWidth:p,children:[(0,P.jsxs)(S3.default,{container:!0,columnSpacing:{md:3.5,xs:2.5},rowSpacing:{sm:0,xs:2.5},children:[(0,P.jsx)(S3.default,{size:{sm:3,xs:12},children:(0,P.jsxs)(I2.Box,{className:"flex flex-col",children:[(0,P.jsx)(A3,{small:!0,locale:f,homePage:n}),(0,P.jsx)(r4,{facebook:e,youtube:o,linkedIn:r,instagram:t,classes:"mt-[22px] md:mt-[12px] md:gap-[9px] sm:hidden"}),(0,P.jsx)(I,{data:i,type:"tel",title:n1(l,i),classes:"mt-[12px] md:hidden text-12"})]})}),(0,P.jsx)(S3.default,{size:{sm:3,xs:6},children:(0,P.jsx)(I2.Box,{className:"flex flex-col gap-[7px] text-12 !leading-[21px]",children:s.slice(0,4).map(y=>(0,P.jsx)(h,{href:y.path,children:u(y.title)},y.title))})}),(0,P.jsx)(S3.default,{size:{sm:3,xs:6},children:(0,P.jsx)(I2.Box,{className:"flex flex-col gap-[7px] text-12 !leading-[21px]",children:s.slice(4,8).map(y=>(0,P.jsx)(h,{href:y.path,children:u(y.title)},y.title))})}),(0,P.jsx)(S3.default,{size:6,className:"hidden sm:block",children:(0,P.jsx)(I,{data:i,type:"tel",title:n1(l,i),classes:"text-12"})}),(0,P.jsx)(S3.default,{size:6,className:"hidden sm:block",children:(0,P.jsx)(r4,{facebook:e,youtube:o,linkedIn:r,instagram:t,classes:"xs:gap-[5px]"})}),(0,P.jsx)(S3.default,{size:{sm:3,xs:12},children:(0,P.jsxs)(I2.Box,{className:"flex flex-col gap-[35px] items-end md:gap-[0px] sm:items-start sm:gap-[20px]",children:[(0,P.jsx)(S,{title:u("Write to us"),classes:"!w-[200px]"}),(0,P.jsx)(I,{data:i,type:"tel",title:n1(l,i),classes:"hidden md:block sm:!hidden text-12"})]})})]}),(0,P.jsx)(I2.Box,{className:"mt-[47px] text-center md:mt-[31px] sm:!mt-[17px] sm:text-start",children:(0,P.jsxs)(I2.Typography,{component:"span",className:"text-10",children:["\xA9 ",new Date().getFullYear()," ",u("Mayak real estate agency"),"."," ",u("All rights reserved")]})})]})})}var A1=require("@mui/material");var E3=g(require("@mui/material/Grid2"));var J7=require("next-intl");var G=require("react/jsx-runtime");function J6({instagram:t,facebook:e,youtube:o,linkedIn:r,menuItems:s,mainPhone:i,site:l,homePage:n,additionalMenu:f}){let u=(0,J7.useLocale)(),y=(0,J7.useTranslations)(),{sm:w,xs:B}=A();return(0,G.jsx)(A1.Box,{component:"footer",className:"bg-white py-[60px] md:pt-[40px] md:pb-[45px] sm:!pt-[33px] sm:!pb-[30px]",children:(0,G.jsxs)(A1.Container,{maxWidth:p,children:[(0,G.jsxs)(E3.default,{container:!0,columnSpacing:{md:7.5,xs:2.5},rowSpacing:{md:0,xs:2.5},children:[(0,G.jsx)(E3.default,{size:{md:2.4,sm:4,xs:12},children:(0,G.jsxs)(A1.Box,{className:"flex flex-col",children:[(0,G.jsx)(A3,{small:!0,locale:u,homePage:n,classes:"sm:hidden xs:block"}),(0,G.jsx)(I,{data:i,type:"tel",title:n1(l,i),classes:"mt-[16px] sm:mt-0 xs:mt-[20px]"}),(0,G.jsxs)(A1.Box,{className:"mt-[10px] xs:w-3/4",children:[(0,G.jsx)("strong",{children:"Dubai"}),", Business Bay, Single Business Tower, office 1801/1802"]}),(0,G.jsx)(r4,{facebook:e,youtube:o,linkedIn:r,instagram:t,classes:"mt-[16px] md:mt-[12px] md:gap-[9px]"})]})}),(0,G.jsx)(E3.default,{size:{md:2.4,sm:4,xs:6},children:(0,G.jsx)(A1.Box,{className:"flex flex-col gap-[7px] xs:gap-[4px] text-12 !leading-[21px]",children:s.slice(0,5).map(b=>(0,G.jsx)(h,{href:b.path,className:"w-fit",children:y(b.title)},b.title))})}),(0,G.jsx)(E3.default,{size:{md:2.4,sm:4,xs:6},children:(0,G.jsx)(A1.Box,{className:"flex flex-col gap-[7px] xs:gap-[4px] text-12 !leading-[21px]",children:s.slice(5,10).map(b=>(0,G.jsx)(h,{href:b.path,className:"w-fit",children:y(b.title)},b.title))})}),w&&!B&&(0,G.jsx)(E3.default,{size:{md:0,sm:4,xs:0}}),(0,G.jsx)(E3.default,{size:{md:2.4,sm:4,xs:6},children:(0,G.jsx)(A1.Box,{className:"flex flex-col gap-[7px] xs:gap-[4px] text-12 !leading-[21px]",children:f.items.slice(0,6).map((b,k)=>(0,G.jsx)(h,{href:b.path,className:"w-fit",children:y(b.title)},k))})}),(0,G.jsx)(E3.default,{size:{md:2.4,sm:4,xs:6},children:(0,G.jsx)(A1.Box,{className:"flex flex-col gap-[7px] xs:gap-[4px] text-12 !leading-[21px]",children:f.items.slice(6,12).map((b,k)=>(0,G.jsx)(h,{href:b.path,className:"w-fit",children:y(b.title)},k))})})]}),(0,G.jsxs)(A1.Box,{className:"mt-[65px] flex justify-between items-center md:mt-[31px] sm:!mt-[20px] sm:flex-col sm:items-start xs:gap-[10px]",children:[(0,G.jsxs)(A1.Typography,{component:"span",className:"text-10",children:["\xA9 ",new Date().getFullYear()," ",y("Mayak real estate agency"),"."," ",y("All rights reserved")]}),(0,G.jsx)(A1.Typography,{component:"span",className:"text-10",children:y("Site promotion by Digital Kitchen Agency")})]})]})})}var Xo=require("@mui/material");var jo=require("react/jsx-runtime");function $6({children:t,classes:e}){return(0,jo.jsx)(Xo.Box,{component:"main",className:`bg-gray-light${c(e)}`,children:t})}var t0=require("@mui/material/styles"),e0=require("@mui/material"),Jo=(0,t0.styled)(e0.Badge)(({})=>({"& .MuiBadge-badge":{right:4,top:4,background:"#343434",color:"white"}})),$o=(0,t0.styled)(e0.Badge)(({})=>({"& .MuiBadge-badge":{right:-10,background:"#343434",color:"white"}}));var ul=g(require("@mui/material/Checkbox")),$7=require("@mui/material"),hl=g(require("@mui/material/Typography")),tr=require("react/jsx-runtime"),yl=(0,$7.styled)("span")(()=>({width:16,height:16,backgroundColor:"white"})),OG=(0,$7.styled)(yl)({"&::before":{width:16,height:16,display:"flex",alignItems:"center",justifyContent:"center",content:`url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.66667L4.82353 8L11 1' stroke='%23343434' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")`}});var er=require("@mui/material"),rr=require("react/jsx-runtime"),Ll=t=>{let{children:e}=t;return(0,rr.jsx)(er.List,{disablePadding:!0,...t,children:e})},or=Ll;var ar=require("@mui/material"),sr=g(require("@mui/material/ListItemButton")),ir=g(require("@mui/material/ListItemIcon")),lr=g(require("@mui/material/ListItemText")),nr=g(require("@mui/material/Typography")),d4=require("react/jsx-runtime"),wl=({icon:t,title:e,bold:o,value:r,onClick:s})=>(0,d4.jsx)(ar.ListItem,{disablePadding:!0,disableGutters:!0,children:(0,d4.jsxs)(sr.default,{className:"p-0 hover:bg-transparent hover:text-accent-beige transition-all",onClick:()=>s&&s(r),disableRipple:!0,children:[t?(0,d4.jsx)(ir.default,{sx:{minWidth:"24px"},children:t}):null,(0,d4.jsx)(lr.default,{sx:{margin:"5px 0"},children:(0,d4.jsx)(nr.default,{className:`text-xs ${o?"font-extrabold":"font-normal"}`,children:e})})]})}),pr=wl;var t9=require("@mui/material/styles"),Cr=g(require("@mui/material/Accordion")),Q4=g(require("@mui/material/AccordionSummary")),mr=g(require("@mui/material/AccordionDetails")),o0=require("react/jsx-runtime"),cr=(0,t9.styled)(t=>(0,o0.jsx)(Cr.default,{disableGutters:!0,elevation:0,square:!0,...t}))(({theme:t,isFirst:e})=>({backgroundColor:"transparent",border:"none",[t.breakpoints.up("sm")]:{"&::before":{opacity:"0 !important"},"&::after":{opacity:"0 !important"}},"&::first-of-type":{"&::before":{opacity:"1 !important",top:"-2px",backgroundColor:"#DBDBDB"}},"&::before":{opacity:"0",top:"-2px",backgroundColor:"#DBDBDB"},"&::after":{position:"absolute",left:0,top:"36px",right:0,height:"1px",content:'""',opacity:1,backgroundColor:"#DBDBDB",transition:" opacity 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms"},[`&.${Q4.accordionSummaryClasses.expanded}`]:{"&::before":{opacity:"1",backgroundColor:"#99835F"},"&::after":{backgroundColor:"#99835F"}},...e&&{"&::before":{opacity:"1",backgroundColor:"#DBDBDB"}}})),dr=(0,t9.styled)(t=>(0,o0.jsx)(Q4.default,{...t}))(()=>({[`& .${Q4.accordionSummaryClasses.content}`]:{margin:0},[`& .${Q4.accordionSummaryClasses.expanded}`]:{filter:"brightness(0) saturate(100%) invert(64%) sepia(4%) saturate(3237%) hue-rotate(358deg) brightness(82%) contrast(84%)"}})),fr=(0,t9.styled)(mr.default)(({theme:t})=>({border:"none",padding:"0",[t.breakpoints.down("sm")]:{padding:" 10px 0 "}}));var ur=require("@mui/material"),hr=require("react-hook-form");var aO=require("react"),r0=require("react/jsx-runtime"),bl=t=>(0,r0.jsx)("svg",{width:8,height:12,viewBox:"0 0 8 12",fill:"none",xmlns:"http://www.w3.org/2000/svg",...t,children:(0,r0.jsx)("path",{d:"M1.75 1.5L6.25 6L1.75 10.5",stroke:"#343434",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"})}),A5=bl;var S5=require("react"),xr=require("zustand");var Bl=require("zustand/vanilla");var kl=require("react/jsx-runtime"),vl=(0,S5.createContext)(void 0);var gr=t=>{let e=(0,S5.useContext)(vl);if(!e)throw new Error("useDeviceStore must be used within DeviceStoreProvider");return(0,xr.useStore)(e,t)};var yr=require("next/navigation");var C3=require("react/jsx-runtime"),Hl=t=>{let{setValue:e,watch:o}=(0,hr.useFormContext)(),r=(0,yr.useSearchParams)(),{isMobile:s}=gr(n=>n),{total:i}=t,l=(n,f)=>{e("page",f)};return i&&i<v4||o("view")==="map"&&s?null:(0,C3.jsx)(ur.Pagination,{boundaryCount:1,siblingCount:s?0:1,renderItem:n=>{if(n.page&&n.page<=Math.ceil(i/v4)){let f=new URLSearchParams(r.toString());return f.set("page",n.page?.toString()),(0,C3.jsx)(h,{href:`?${f.toString()}`,passHref:!0,children:(0,C3.jsx)(y3,{...n,slots:{next:()=>(0,C3.jsx)(A5,{}),previous:()=>(0,C3.jsx)(A5,{style:{transform:"rotate(180deg)"}})}})})}return(0,C3.jsx)(y3,{...n,slots:{next:()=>(0,C3.jsx)(A5,{}),previous:()=>(0,C3.jsx)(A5,{style:{transform:"rotate(180deg)"}})}})},count:i?Math.ceil(i/v4):0,size:"small",page:Number(r.get("page"))||1,onChange:l,className:"mt-[40px] w-fit mx-auto"})},Lr=Hl;var f4=require("@mui/material");var wr=require("@mui/material/styles");var K2=require("react/jsx-runtime"),Ml=(0,wr.styled)(f4.Breadcrumbs)(({})=>({"& .MuiBreadcrumbs-li":{display:"inline-flex",alignItems:"end",whiteSpace:"nowrap"},ol:{display:"flex",flexWrap:"nowrap",overflowX:"auto",overflowY:"hidden",scrollBehavior:"smooth","-webkit-overflow-scrolling":"touch",width:"100%",paddingLeft:0,paddingRight:0,"li:last-child":{pointerEvents:"none"}}})),Nl=({breadCrumbsList:t})=>(0,K2.jsx)(f4.Container,{maxWidth:p,children:(0,K2.jsxs)(Ml,{sx:{marginBottom:2},"aria-label":"breadcrumb",separator:(0,K2.jsx)(i8,{}),className:"breadcrumbs",children:[(0,K2.jsx)(h,{href:"/",className:"h-[16px] mt-[-2px]",children:(0,K2.jsx)(n8,{})}),t.map((e,o)=>o===t.length-1?(0,K2.jsx)(f4.Typography,{className:"text-10 text-accent-silver-3 h-[11px]",children:e.name},e.name||o):(0,K2.jsx)(h,{href:e.path,children:(0,K2.jsx)(f4.Typography,{className:"text-10 text-accent-silver-3 h-[11px]",children:e.name})},e.name||o))]})}),br=Nl;0&&(module.exports={AboutCompanyMain,AboutUsFirstBlock,Accordion,AccordionDetails,AccordionSummary,AmenitiesBlock,AnyLevelBlock,AnyQuestionsBlock,AreasFull,AreasSlider,ArticleContent,ArticlesBlock,ArticlesFull,BannerBlock,BannerBlock2,BannerReferralProgram,BecomePartner,BenefitsBlock,BenefitsVacanciesBlock,BlockAboutCareer,BlockChoiceLinkGoToCatalog,BlockContacts,BlockGroupLinks,BlockImages,BlockOurTeam,BlockTabsGroupLinks,BreadCrumbs,Button,ButtonDark,CallConsult,CallMeBlock,CasesBlock,CatalogNewProjects,CatalogRealtiesBlock,CatalogViewSwitch,ClientTransferProcess,ContactDubaiBlock,ContactUsBlock,DeveloperBanner,DeveloperTwoBlocks,DevelopersFull,DevelopersSlider,ErrorMessage,ExpertiseBlock,FAQ,FancyBox,FloorPlansBlock,Footer,Footer2,FormBlock,FormInput,FullScreenImage,GalleryBlock,GalleryRealty,H1,H1Big,H2,H3,H4,H5,H6,Header,HeaderContactButton,HeaderMob,IconButton,ImageAndTextBlock,Input,JoinTeamBlock,LegalSupport,LinkIconBorder,LinkOut,List,ListItem,LocaleSwitch,LocaleSwitchToggle,LogoBlock,LogoBlockWhite,MODAL_COMPONENT,MODAL_COMPONENTS,MODAL_TITLES,Main,ObjectInfoBlock,Offices,OfficesBlock,OpenVacancies,OtherVacancies,OurAdvantages,OurServices,Paginator,PaginatorItem,PaginatorSimple,PaymentPlanBlock,PhoneNumberInput,PopularAreas,Portfolios,ProjectsSlider,ReferralProgramFirstBlock,SearchInput,Select,ServicesFull,ServicesTexts,SimpleSelect,SliderDefault,SliderObject,SocialBlock,SocialBlockMain,SortToggle,StyledBadge,StyledBadgeDesc,StyledButton,SubmitSelectButton,Switch,TeamWorkerBlock,TextBlock,TextImageTileBlock,ThanksBlock,TitleBlock,ToggleButton,ToggleButtonGroup,ToggleButtonsMultiple,ToggleButtonsWithLabel,TopDevelopers,TrustUs,VacancyBoxInfo,VacancyContent,WeOffer,WeTakeFull,WhatIsYour,WhyShouldWork,WhyWe,createLocaleSlugSlice,createModalSlice,hrefSlugPrefix,useLayoutStore,useLocaleSlugStore,useWindowSize});
package/dist/index.mjs CHANGED
@@ -6,4 +6,4 @@ import{Box as t2,Container as Ho,Typography as b2}from"@mui/material";import"rea
6
6
  `,onClick:()=>l(p),children:n},n))}),G3(I4,{className:"flex gap-[128px] md:gap-[19px] sm:flex-wrap sm:mt-[10px] sm:gap-x-0 sm:gap-y-[20px]",children:s[i].map(n=>G3(N4,{title:n.title,links:n.links},n.title))})]})}import{jsx as k7,jsxs as Vs}from"react/jsx-runtime";function D6({classes:t}){let e=Es();return k7(As,{className:`bg-gray2 mt-[80px] py-[50px] md:mt-[40px] md:pt-[30px] md:pb-[45px]${m(t)}`,children:Vs(Ss,{maxWidth:C,children:[k7(O3,{title:e("\u041F\u0440\u043E\u0434\u0430\u0436 \u043D\u0435\u0440\u0443\u0445\u043E\u043C\u043E\u0441\u0442\u0456"),tabs:["\u041A\u0432\u0430\u0440\u0442\u0438\u0440\u0438","\u0411\u0443\u0434\u0438\u043D\u043A\u0438","\u041A\u043E\u043C\u0435\u0440\u0446\u0456\u044F","\u0417\u0435\u043C\u043B\u044F"],contents:[b7,B7,v7,P6]}),k7(O3,{title:e("\u041E\u0440\u0435\u043D\u0434\u0430 \u043D\u0435\u0440\u0443\u0445\u043E\u043C\u043E\u0441\u0442\u0456"),tabs:["\u041A\u0432\u0430\u0440\u0442\u0438\u0440\u0438","\u0411\u0443\u0434\u0438\u043D\u043A\u0438","\u041A\u043E\u043C\u0435\u0440\u0446\u0456\u044F"],contents:[b7,B7,v7],classes:"mt-[20px] md:mt-[16px] sm:!mt-[30px]"})]})})}import{Box as Ws,Container as Ds}from"@mui/material";import M7 from"@mui/material/Grid2";import{Box as Z6,Typography as Y6}from"@mui/material";import{Box as i2,Typography as a3}from"@mui/material";import{Box as Os}from"@mui/material";import Rs from"next/link";import{jsx as Gs}from"react/jsx-runtime";function N({data:t,type:e,title:o,classes:s,blank:i=!0}){return Gs(Rs,{href:U8(t,e)||"/public",target:i?"_blank":"_self",className:s||"",children:o})}import{jsx as r3,jsxs as Us}from"react/jsx-runtime";function _4({classes:t,telegram:e,whatsapp:o,instagram:s}){return Us(Os,{className:`flex gap-[16px]${t?" "+t:""}`,children:[s&&r3(N,{data:s,type:"link",title:r3(L2,{className:"hover:filter-gold2"})}),o&&r3(N,{data:o,type:"link",title:r3(A5,{className:"hover:filter-gold2"})}),e&&r3(N,{data:e,type:"link",title:r3(T5,{className:"hover:filter-gold2"})})]})}import{useTranslations as Ps}from"next-intl";import{Fragment as F6,jsx as K,jsxs as H1}from"react/jsx-runtime";function T4({classes:t,offices:e}){let o=Ps();return K(i2,{className:`flex flex-col gap-[26px] md:gap-[22px]${m(t)}`,children:e?.map(s=>H1(i2,{className:"flex justify-between gap-[45px] relative text-dark sm:flex-wrap md:gap-[11px] md:pb-[18px]",children:[H1(i2,{className:"flex flex-col gap-[20px]",children:[H1(i2,{className:"flex gap-[10px] pl-[35px] relative",children:[K(N,{data:`${s.city}, ${s.address}`,type:"googleMaps",title:K(G5,{className:"hover:filter-gold2"}),classes:"absolute left-0 top-0"}),H1(i2,{className:"flex flex-col gap-[10px]",children:[H1(a3,{component:"span",className:"text-14",children:[K(a3,{component:"span",className:"font-extrabold",children:s?.city}),", ",s?.address]}),s?.site&&K(N,{data:s.site,type:"link",title:O8(s.site),classes:"font-extrabold"})]})]}),H1(i2,{className:"flex gap-[10px] pl-[35px] relative",children:[K(N,{data:`${s.city}, ${s.address}`,type:"googleMaps",title:K(O5,{className:"hover:filter-gold2"}),classes:"absolute left-0 top-0"}),H1(i2,{className:"flex flex-col gap-[10px]",children:[K(a3,{component:"span",className:"font-extrabold",children:o("Working time")}),K(a3,{component:"span",className:"text-gray",children:s.workTime})]})]})]}),H1(i2,{className:"flex flex-col max-w-[200px] w-full sm:max-w-[unset] md:gap-[11px]",children:[s?.phone&&K(N,{classes:"flex gap-[7px] items-center group/phone",data:s.phone,type:"tel",blank:!1,title:H1(F6,{children:[K(N5,{className:"group-hover/phone:filter-gold2"}),K(a3,{component:"span",className:"text-14",children:F("kyiv",s.phone)})]})}),s?.email&&K(N,{classes:"flex gap-[7px] items-center group/email mt-[11px]",data:s.email,type:"mail",blank:!1,title:H1(F6,{children:[K(M5,{className:"group-hover/email:filter-gold2"}),K(a3,{component:"span",className:"text-14",children:s.email})]})}),K(_4,{classes:"mt-[30px] !gap-[12px] md:!gap-[10px]",instagram:s?.instagram,telegram:s?.telegram,whatsapp:s?.whatsapp})]})]},s?.address))})}import{jsx as H7,jsxs as z6}from"react/jsx-runtime";function A4({text:t,offices:e,classes:o,title:s}){return z6(Z6,{className:`flex flex-col gap-[28px] md:gap-[20px]${m(o)}`,children:[z6(Z6,{className:"flex flex-col gap-[10px]",children:[H7(Y6,{component:"span",className:"!text-32 font-extrabold",children:s}),H7(Y6,{component:"span",className:"text-14 text-gray",children:t})]}),H7(T4,{offices:e})]})}import{jsx as U3,jsxs as Fs}from"react/jsx-runtime";function K6({classes:t,offices:e,title:o,text:s,children:i}){return U3(Ds,{maxWidth:C,className:`${m(t)}`,children:Fs(M7,{container:!0,columnSpacing:10,children:[U3(M7,{size:{md:6,xs:12},children:U3(A4,{text:s,offices:e,title:o})}),U3(M7,{size:{md:6,xs:12},children:U3(Ws,{className:"bg-white p-[40px] flex flex-col gap-4 md:py-[30px] sm:mx-[-30px] md:px-[60px] sm:px-[30px]",children:i})})]})})}import{Box as Ks}from"@mui/material";import{Children as A2,useEffect as Q6,useRef as Zs,useState as q6}from"react";import{useKeenSlider as Ys}from"keen-slider/react";import{Box as X6,Stack as j6,Typography as zs}from"@mui/material";import{jsx as M1,jsxs as S4}from"react/jsx-runtime";function n1({children:t,slides:e=3,spacing:o=24,title:s,linkComponent:i,options:l,dots:n=!0,preLoaded:p}){let[c,g]=q6(0),[y,w]=q6([]),B=Zs([]);Q6(()=>{B.current=y},[y]);let[b,v]=Ys({slideChanged(M){let H=M.track.details.rel,k=p?H:H-(e-1)!==A2.count(t)?H+(e-1):H,G=A2.count(t),Q1=[...B.current];Q1[k]=!0,k>0&&(Q1[k-1]=!0),k<G-1&&(Q1[k+1]=!0),g(k),w(Q1)},...l||{slides:{perView:e,spacing:o},mode:"snap"}});return Q6(()=>{let M=A2.count(t),H=Array(M).fill(!1);if(p){for(let k=0;k<p;k++)H[k]=!0;H[M-1]=!0}else for(let k=0;k<e;k++)H[k]=!0;w(H)},[e]),S4(j6,{children:[s?S4(j6,{justifyContent:"space-between",alignItems:"center",direction:"row",className:"mb-[20px]",children:[M1(zs,{className:"!text-28 font-extrabold",children:s}),S4(X6,{className:"flex gap-[26px] items-center flex-row",children:[i||null,S4(X6,{className:"flex gap-[10px] items-center",children:[M1(x1,{isblack:"true",className:"p-0",onClick:M=>{M.preventDefault(),v.current?.prev()},children:M1(V1,{style:{transform:"scale(0.5) "}})}),M1(x1,{isblack:"true",className:"p-0",onClick:M=>{M.preventDefault(),v.current?.next()},children:M1(V1,{style:{transform:"scale(0.5) rotate(180deg)"}})})]})]})]}):null,M1("div",{children:M1("div",{ref:b,className:"keen-slider",children:A2.map(t,(M,H)=>M1("div",{className:"keen-slider__slide",children:y[H]?M:null}))})}),n&&v.current&&A2.count(t)>e?M1("div",{className:"flex justify-center gap-[16px] mt-[30px] md:mt-[20px]",children:Array.from({length:Math.ceil(A2.count(t)/e)}).map((M,H)=>M1("div",{onClick:()=>{if(!v.current)return;let k=Math.min(H*e,A2.count(t)-e);v.current.moveToIdx(k)},className:"dot-slider"+(c>=H*e&&c<(H+1)*e?" dot-slider_active":"")},H))}):null]})}import{jsx as N7,jsxs as Qs}from"react/jsx-runtime";function J6({classes:t,images:e,title:o}){let{md:s,xs:i}=S();return Qs(Ks,{className:`bg-white py-[54px] text-center md:py-[40px]${m(t)}`,children:[N7(I,{className:"block w-fit mb-[30px] mx-auto",children:o}),N7(n1,{dots:!1,slides:s?s&&!i?3:2:6,spacing:20,children:e?.map((l,n)=>N7(x,{src:l,alt:"Image",classesWrapper:"h-[80px] md:h-[60px]",objectFit:"object-contain"},n))})]})}import{Box as A7,Container as ai,Typography as si}from"@mui/material";import{useState as ii}from"react";import o0 from"@mui/material/Grid2";import{Box as P3,Typography as W3}from"@mui/material";import{jsx as S2,jsxs as E4}from"react/jsx-runtime";function D3({image_url:t,name:e,position:o,text:s}){return E4(P3,{className:"group/card",children:[E4(P3,{className:"relative h-[300px] md:h-[220px] xs:!h-[295px]",children:[S2(P3,{className:"w-full h-full bg-gray-medium group-hover/card:brightness-[50%] duration-500",children:S2(x,{src:t,alt:e,objectFit:"object-contain",objectPosition:"object-bottom"})}),E4(P3,{className:"transition-opacity duration-500 opacity-0 absolute top-[20px] left-[30px] right-[30px] group-hover/card:opacity-100 flex flex-col text-white",children:[S2(W3,{component:"span",className:"text-16 font-extrabold sm:text-12",children:e}),S2(W3,{component:"span",className:"mt-[4px] sm:text-12",children:o}),S2(W3,{component:"span",className:"mt-[11px] text-12 !leading-[16px] sm:text-12",children:s})]})]}),E4(P3,{className:"mt-[20px] text-center mx-auto flex flex-col w-10/12 gap-[4px]",children:[S2(W3,{component:"span",className:"text-16 font-extrabold sm:text-12 xs:!text-16",children:e}),S2(W3,{component:"span",className:"text-gray sm:text-12 xs:!text-14",children:o})]})]})}import{Box as l2,Typography as t0}from"@mui/material";import"react";import{jsx as $6}from"react/jsx-runtime";var qs=t=>$6("svg",{width:16,height:17,viewBox:"0 0 16 17",fill:"none",xmlns:"http://www.w3.org/2000/svg",...t,children:$6("path",{d:"M12.2427 3.54717C13.3443 4.64859 13.9743 6.13524 13.9995 7.69278C14.0248 9.25031 13.4433 10.7566 12.378 11.8932L12.2427 12.0332L9.41404 14.8612C9.05512 15.2199 8.57329 15.4287 8.06614 15.4454C7.55899 15.4621 7.06445 15.2854 6.6827 14.9512L6.5867 14.8612L3.75737 12.0325C2.63215 10.9073 2 9.38114 2 7.78983C2 6.19852 2.63215 4.67239 3.75737 3.54717C4.8826 2.42194 6.40873 1.78979 8.00004 1.78979C9.59135 1.78979 11.1175 2.42194 12.2427 3.54717ZM8.00004 5.78983C7.73739 5.78983 7.47732 5.84156 7.23467 5.94207C6.99202 6.04258 6.77154 6.1899 6.58582 6.37562C6.40011 6.56134 6.25279 6.78181 6.15228 7.02447C6.05177 7.26712 6.00004 7.52719 6.00004 7.78983C6.00004 8.05248 6.05177 8.31255 6.15228 8.5552C6.25279 8.79785 6.40011 9.01833 6.58582 9.20405C6.77154 9.38976 6.99202 9.53708 7.23467 9.63759C7.47732 9.7381 7.73739 9.78983 8.00004 9.78983C8.53047 9.78983 9.03918 9.57912 9.41425 9.20405C9.78932 8.82897 10 8.32026 10 7.78983C10 7.2594 9.78932 6.75069 9.41425 6.37562C9.03918 6.00055 8.53047 5.78983 8.00004 5.78983Z",stroke:"#757575",strokeLinecap:"round",strokeLinejoin:"round"})}),I7=qs;import{useTranslations as Xs}from"next-intl";import{jsx as n2,jsxs as W1}from"react/jsx-runtime";var js=({slug:t,imgSrc:e,title:o,address:s,developer:i,price:l,houseTypes:n,href:p})=>{let c=Xs();return W1(h,{href:`${p}/${t}`,className:"flex flex-col noHover",children:[n2(x,{contentful:!1,src:e,classesWrapper:"h-[260px] w-full",sizes:"400px"}),W1(l2,{className:"pt-[20px] p-[30px] flex flex-col bg-white gap-2",children:[W1(l2,{className:"flex flex-col gap-1",children:[n2(t0,{className:"text-18 font-extrabold xs:text-16 overflow-hidden text-ellipsis whitespace-nowrap max-w-full",children:o}),W1(l2,{className:"flex items-center flex-row gap-1 ",children:[n2(I7,{}),n2(t0,{className:"text-12 text-gray mt-[2px]",children:s})]})]}),W1(l2,{className:"flex flex-col gap-1",children:[W1(l2,{className:"text-12",children:[W1("span",{className:"font-extrabold",children:[c("Price from"),":"]}),n2("span",{className:"text-gray ml-[5px]",children:f1(Number(l))})]}),W1(l2,{className:"text-12",children:[W1("span",{className:"font-extrabold",children:[c("Developer"),":"]}),n2("span",{className:"text-gray ml-[5px]",children:i})]})]}),n2(l2,{className:"flex gap-[6px]",children:n?.map((g,y)=>n2(l2,{className:"border-[1px] border-custom-gray-medium border-solid py-[2.5px] px-[10px] text-[12px] leading-[19px]",children:g},y))})]})]})},F3=js;import{Box as Js,Stack as $s,Typography as _7}from"@mui/material";import{useTranslations as ti}from"next-intl";import{jsx as Z3,jsxs as T7}from"react/jsx-runtime";var ei=({imageUrl:t,classes:e,title:o,price:s,slug:i,whiteBottom:l=!1,href:n})=>{let p=ti();return T7(h,{href:i?`${n}/${i}`:n,className:`block group/card bg-gray-light relative ${e?" "+e:""}`,children:[Z3(x,{contentful:!1,src:t,alt:o,classesImg:"simpleZoomImg group-hover/card:simpleZoomImgHover",classesWrapper:"overflow-hidden h-[260px] sm:h-[240px] w-full xs:h-[260px]",sizes:"(max-width: 640px) 25vw,(max-width: 768px) 25vw, (max-width: 1024px) 25vw, 25vw"}),l?T7(Js,{className:"py-[24px] flex flex-col gap-[2px] md:pt-[16px] items-center bg-accent-white sm:pt-[20px] sm:pb-[30px]",children:[Z3(_7,{component:"span",className:"text-18 font-extrabold text-dark sm:text-16",children:o}),Z3(_7,{component:"span",className:"text-gray trim-4 text-12",children:`${p("Price from")}: ${f1(Number(s))}`})]}):T7($s,{className:"absolute p-[20px] bottom-0 bg-black-bottom-gradient w-full h-full justify-end",children:[Z3(r1,{smallerXs:!0,className:"text-accent-white",children:o}),Z3(_7,{className:"text-accent-white text-12 mt-[6px] sm:mt-[2px]",children:`${p("Price from")} ${f1(Number(s))}`})]})]})},Y3=ei;import{Box as y_,Typography as L_}from"@mui/material";import"react";import{jsx as p_}from"react/jsx-runtime";import"react";import{jsx as f_}from"react/jsx-runtime";import{useTranslations as k_}from"next-intl";import M_ from"next/image";import{jsx as S_,jsxs as E_}from"react/jsx-runtime";import{Box as e0}from"@mui/material";import{jsx as V4,jsxs as oi}from"react/jsx-runtime";function R4({link:t,title:e,image_url:o}){return V4(h,{href:t,className:"group/card",children:oi(e0,{className:"flex flex-col gap-[16px] sm:gap-[10px] sm:w-full",children:[V4(Y2,{src:o,alt:e,height:"h-[300px] md:h-[240px]",classesImg:"simpleZoomImg group-hover/card:simpleZoomImgHover",classesWrapper:"overflow-hidden"}),V4(e0,{className:"flex flex-col gap-[6px]",children:V4(r1,{smallerXs:!0,className:" text-16 group-hover/card:text-gold2 ",children:e})})]})})}import{Box as OT,Typography as UT}from"@mui/material";import"react";import{jsx as z_}from"react/jsx-runtime";import{useTranslations as DT}from"next-intl";import{useTranslations as wT}from"next-intl";import{Box as kT,Typography as HT}from"@mui/material";import"react";import{jsx as j_}from"react/jsx-runtime";import"react";import{jsx as oT}from"react/jsx-runtime";import"react";import{jsx as lT}from"react/jsx-runtime";import"react";import{jsx as cT,jsxs as dT}from"react/jsx-runtime";import{jsx as ST,jsxs as ET}from"react/jsx-runtime";import{jsx as qT,jsxs as XT}from"react/jsx-runtime";import{useTranslations as li}from"next-intl";import{Fragment as ni,jsx as g1,jsxs as r0}from"react/jsx-runtime";function a0({team:t,title:e,text:o,classes:s,full:i=!1}){let[l,n]=ii(1),{md:p,sm:c,xs:g}=S(),y=p?9:8,w=li(),B=()=>{n(l+1)};return t?.length?g1(A7,{className:`bg-gray-light mt-[80px] md:mt-[40px] sm:!mt-[30px]${s?" "+s:""}`,children:r0(ai,{maxWidth:C,children:[r0(A7,{className:"text-center w-3/4 mx-auto sm:w-full xs:text-start",children:[g1(I,{leftXs:!0,children:e}),g1(si,{className:"mt-[10px] text-gray sm:text-12/[19px] xs:!text-14",children:o})]}),g1(A7,{className:"mt-[14px] md:mt-[20px]",children:i?g1(o0,{container:!0,columnSpacing:{sm:2.25,xs:0},rowSpacing:{sm:2.5,xs:5},children:t.slice(0,l*y).map((b,v)=>g1(o0,{size:{lg:3,sm:4,xs:12},children:g1(D3,{image_url:b.imageUrl,name:_3(b.firstName,b.lastName),position:b.position,text:b.description})},v))}):g1(n1,{slides:g?1:c?3:4,spacing:18,children:t.map((b,v)=>g1(D3,{image_url:b.imageUrl,name:_3(b.firstName,b.lastName),position:b.position,text:b.description},v))})}),i&&l*y<t.length&&g1(E,{title:w("Show more"),onClick:B,classes:"mt-[30px] !mx-auto block"})]})}):g1(ni,{})}import{Box as ui,Container as hi,Typography as yi}from"@mui/material";import{Box as ci}from"@mui/material";import{useTranslations as di}from"next-intl";import{FormProvider as fi,useForm as xi}from"react-hook-form";import{Typography as s0}from"@mui/material";import{Fragment as Ci,jsx as i0,jsxs as mi}from"react/jsx-runtime";var pi=()=>mi(Ci,{children:[i0(s0,{component:"span",className:"!text-28 font-extrabold md:text-16 w-2/3",children:"Thank you"}),i0(s0,{component:"span",className:"mt-[20px] text-16 font-extrabold md:mt-[12px] md:text-12 sm:!text-16 sm:!mt-[18px]",children:"We will contact you shortly"})]}),z3=pi;import{jsx as G4,jsxs as gi}from"react/jsx-runtime";function s3({classes:t}){let e=di(),o=xi(q8),{handleSubmit:s,formState:{isSubmitSuccessful:i,isSubmitting:l}}=o,n=async p=>{await o2({...p,question:"\u0417\u0430\u0442\u0435\u043B\u0435\u0444\u043E\u043D\u0443\u0439\u0442\u0435 \u043C\u0435\u043D\u0456",name:""})};return G4(fi,{...o,children:i?G4(z3,{}):gi(ci,{className:`flex h-[38px] md:flex-wrap md:gap-[16px] md:w-full md:h-auto${t?" "+t:""}`,component:"form",onSubmit:s(n),children:[G4(v2,{name:"phoneNumber",border:!0,showError:!1,format:"",placeholder:""}),G4(E,{loading:l,type:"submit",title:e("Call me"),classes:"!w-[260px]"})]})})}import{jsx as S7,jsxs as Li}from"react/jsx-runtime";function l0({classes:t,title:e}){return S7(hi,{maxWidth:C,className:`mt-[55px] md:mt-[19px]${t?" "+t:""}`,children:Li(ui,{className:"flex flex-col gap-[20px] mx-auto w-fit items-center md:items-start",children:[S7(yi,{component:"span",className:"font-extrabold text-30 md:text-16",children:e}),S7(s3,{})]})})}import{Box as E7,Container as n0,Typography as p0}from"@mui/material";import{useState as V7}from"react";import{useKeenSlider as wi}from"keen-slider/react";import R7 from"@mui/material/Grid2";import{useTranslations as bi}from"next-intl";import{Fragment as Bi,jsx as p1,jsxs as K3}from"react/jsx-runtime";function C0({caseItems:t,classes:e}){let o=bi(),[s,i]=V7(0),[l,n]=V7(!1),[p,c]=V7([]),[g,y]=wi({slides:t?.length,loop:!0,detailsChanged(b){let v=b.track.details.slides.map(M=>M.portion);c(v)},slideChanged(b){i(b.track.details.rel)},created(){n(!0)}}),{windowSize:w,sm:B}=S();return t?.length?K3(E7,{className:`fader${e?" "+e:""}`,ref:g,children:[p1(n0,{maxWidth:C,children:p1("h2",{className:"font-extrabold !text-28 normal-case md:text-16 pt-[140px] md:py-[30px]",children:o("Cases")})}),t.map((b,v)=>K3(E7,{className:"fader__slide",style:{opacity:p[v]},children:[!B&&w<1700&&p1(x,{src:b.imageUrl,alt:"Image",classesWrapper:"!absolute top-0 right-0 bottom-0 !w-1/2 h-full"}),p1(n0,{maxWidth:C,children:K3(R7,{container:!0,children:[p1(R7,{size:{sm:12,xs:12,md:6},children:K3(E7,{className:"relative pt-[191px] pb-[236px] pr-[77px] flex flex-col gap-[20px] md:pt-[60px] md:pb-[30px] md:gap-[10px] sm:pr-0",children:[p1(p0,{component:"span",className:"font-extrabold",children:b.text1}),p1(p0,{component:"span",className:"text-gray",children:b.text2}),l&&y.current&&p1("div",{className:"flex gap-[10px] mt-[25px] md:mt-[16px] ",children:[...Array(y.current.track.details.slides.length).keys()].map(M=>p1("div",{onClick:()=>{y.current?.moveToIdx(M)},className:"dot-slider dot-slider_big"+(s===M?" dot-slider_active":"")},M))})]})}),K3(R7,{size:{sm:6,xs:12},className:"sm:w-full",children:[!B&&w>1700&&p1(x,{src:b.imageUrl,alt:"Image",classesWrapper:"w-[50vw] h-[738px]"}),B&&p1(x,{src:b.imageUrl,alt:"Image",classesWrapper:"md:mx-[-60px] sm:mx-[-30px] md:w-[unset] h-[413px]"})]})]})})]},v))]}):p1(Bi,{})}import{Box as vi,Container as ki}from"@mui/material";import m0 from"@mui/material/Grid2";import{jsx as Q3,jsxs as Hi}from"react/jsx-runtime";function c0({title:t,categories:e,classes:o=""}){return Q3(vi,{className:`my-[80px] bg-gray-light md:mt-[30px]${o&&" "+o}`,children:Hi(ki,{maxWidth:C,children:[Q3(I,{leftXs:!0,children:t}),Q3(m0,{container:!0,columnSpacing:2.25,rowSpacing:4,className:"mt-[20px] md:mt-[10px]",children:e?.map((s,i)=>Q3(m0,{size:{xs:12,sm:i+1===e?.length?12:4,lg:i+1===e?.length?6:3},children:Q3(R4,{image_url:s?.imageUrl||"",title:s?.title||"",link:s?.link||"/"})},s?.title))})]})})}import{Box as q3,Container as Mi,Typography as G7}from"@mui/material";import{Fragment as Ni,jsx as u1,jsxs as O4}from"react/jsx-runtime";function d0({classes:t,box:e,title:o,text:s,actionComponent:i}){return u1(q3,{className:`bg-white py-[70px] sm:py-[40px] xs:py-[30px]${m(t)}`,children:O4(Mi,{maxWidth:C,children:[O4(q3,{className:"flex flex-col w-1/2 sm:w-5/6 xs:w-full mx-auto text-center",children:[u1(I,{children:o}),u1(G7,{component:"span",className:"text-gray mt-[10px] sm:text-12 xs:text-14",children:s})]}),u1(q3,{className:"mt-[30px] grid-cols-4 grid gap-x-[20px] gap-y-[50px] md:grid-cols-2 md:gap-[20px] sm:mt-[20px] xs:grid-cols-1 xs:gap-[16px]",children:e&&e.map((l,n)=>O4(Ni,{children:[O4(q3,{className:`flex flex-col p-[20px] bg-gray-light2 ${n%2===0?"order-1":"order-2"}`,children:[l.icon?u1(x,{src:l.icon,alt:"Icon",classesWrapper:"w-[36px] h-[36px]"}):u1(y5,{}),u1(G7,{component:"span",className:"font-extrabold text-16 mt-[8px]",children:l.label}),u1(G7,{component:"span",className:"mt-[6px] sm:text-12 xs:text-14",children:l.text})]}),n%2===0?u1(u5,{className:"order-2 ml-[80px] md:hidden"}):u1(h5,{className:`order-1 ml-[80px] self-end md:hidden ${n===e.length-1?"invisible":""}`})]}))}),u1(q3,{className:"mt-[50px] flex justify-center sm:mt-[30px] xs:mt-[20px] xs:justify-start",children:i||null})]})})}import{Box as X3,Typography as j3}from"@mui/material";import{useTranslations as Ii}from"next-intl";import{jsx as $,jsxs as i3}from"react/jsx-runtime";function f0({classes:t,phone:e,manager:o}){let s=Ii();return i3(X3,{className:`mt-[40px] border-[1px] gap-[35px] border-gold border-solid sm:border-x-0 bg-white p-[30px] flex justify-between md:mt-[30px] sm:mx-[-30px] sm:flex-col sm:items-center${m(t)}`,children:[i3(X3,{className:"flex flex-col sm:text-center sm:items-center",children:[$(j3,{component:"span",className:"text-16 font-extrabold",children:s("Need help with real estate?")}),$(j3,{component:"span",className:"text-16 font-extrabold",children:s("Contact us!")}),i3(j3,{component:"span",className:"text-gray mt-[4px]",children:[s("Reach out to Mayak Real Estate Agency for a professional consultation on buying, selling, renting, or investing in property"),"."]}),i3(X3,{className:"mt-[16px] flex gap-[16px] md:flex-wrap sm:flex-col sm:items-center",children:[$(N,{data:`+${e}`,type:"telegram",title:$(E,{title:"Telegram",icon:$(b5,{})})}),$(N,{data:e,type:"whatsapp",title:$(E,{title:"Whatsapp",icon:$(k3,{})})}),$(N,{data:e,type:"viber",title:$(E,{title:"Viber",icon:$(w5,{})})})]})]}),i3(X3,{className:"flex flex-col items-center text-center max-w-[200px] w-full",children:[$(x,{src:o.imageUrl,classesImg:"rounded-full",classesWrapper:"md:shrink-0 w-[83px] h-[83px]"}),i3(X3,{className:"flex flex-col mt-[6px]",children:[$(j3,{component:"span",className:"font-extrabold md:text-12",children:o.name}),$(j3,{component:"span",className:"text-gray text-12",children:o.position})]})]})]})}import{Box as O7,Container as _i,Typography as U4}from"@mui/material";import U7 from"@mui/material/Grid2";import{jsx as D1,jsxs as P4}from"react/jsx-runtime";function x0({block1:t,block2:e,classes:o}){return D1(_i,{maxWidth:C,className:`${m(o)}`,children:P4(U7,{container:!0,columnSpacing:{sm:5,xs:0},className:"items-center mt-[80px] md:mt-[40px]",children:[D1(U7,{size:{xs:12,sm:6},children:P4(O7,{className:"flex flex-col",children:[D1("h2",{className:"!text-28 normal-case font-extrabold sm:text-14",children:t?.title}),D1(U4,{component:"p",className:"text-gray mt-[16px] md:mt-[10px]",children:t?.text1}),D1(U4,{component:"p",className:"text-gray mt-[16px] md:mt-[10px]",children:t?.text2})]})}),D1(U7,{size:{xs:12,sm:6},className:"md:mt-[28px]",children:P4(O7,{className:"sm:mx-[-30px]",children:[D1(x,{src:e?.imageUrl,alt:"Image",classesImg:"pl-[37px] md:p-[0px] h-[348px] md:h-[230px] w-full"}),P4(O7,{className:"block-gold md:py-[20px]",children:[D1(U4,{component:"span",className:"text-14",children:e?.text1}),D1(U4,{component:"span",className:"text-14-bold font-extrabold mt-[10px]",children:e?.text2})]})]})})]})})}import{Box as P7,Collapse as Ti,Container as Ai,Typography as g0}from"@mui/material";import{useState as Si}from"react";import{jsx as l3,jsxs as W7}from"react/jsx-runtime";function u0({classes:t,items:e,title:o}){let[s,i]=Si(0),l=n=>{i(s===n?null:n)};return W7(Ai,{maxWidth:C,className:`max-w-[990px]${m(t)}`,children:[l3(I,{leftXs:!0,children:o}),l3(P7,{className:"mt-[30px] flex flex-col gap-[20px] sm:gap-[4px] xs:mt-0",children:e?.map((n,p)=>W7(P7,{className:"py-[13px] border-solid border-b-[1px] border-dark border-0",children:[W7(P7,{onClick:()=>l(p),className:"flex justify-between items-center cursor-pointer",children:[l3(g0,{component:"span",className:"font-extrabold text-16",children:n.question}),l3(g5,{style:{transform:s===p?"rotateX(0deg)":"rotateX(180deg)",transition:"transform 0.3s ease"}})]}),l3(Ti,{in:s===p,className:"mt-[5px] pr-[30px]",children:l3(g0,{className:"text-gray",children:n.answer})})]},p))})]})}import{Box as h0,Typography as y0}from"@mui/material";import{FormProvider as Ei,useForm as Vi}from"react-hook-form";import{Fragment as Gi,jsx as N1,jsxs as Ri}from"react/jsx-runtime";function L0({classes:t}){let e=Vi(w4),{handleSubmit:o,formState:{isSubmitSuccessful:s,isSubmitting:i}}=e,l=async n=>{await o2(n)};return N1(Gi,{children:s?N1(h0,{className:`bg-white p-[40px] flex flex-col gap-4 md:py-[30px] sm:mx-[-30px] md:px-[60px] sm:px-[30px]${m(t)}`,children:N1(z3,{})}):N1(Ei,{...e,children:Ri(h0,{className:`bg-white p-[40px] flex flex-col md:py-[30px] sm:mx-[-30px] md:px-[60px] sm:px-[30px]${m(t)}`,component:"form",onSubmit:o(l),children:[N1(y0,{component:"span",className:"!text-28 normal-case font-extrabold md:text-16 w-2/3 mb-[20px]",children:"Write us"}),N1(B2,{placeholder:"Your name",name:"name",autoComplete:"name"}),N1(v2,{name:"phoneNumber",format:"",placeholder:""}),N1(B2,{name:"question",placeholder:"Your question",multiline:!0,className:"h-[202px] items-start",rows:9}),N1(y0,{component:"span",className:"pl-[30px] mt-[13px] text-12 md:pl-[0px]",children:"All fields are mandatory"}),N1(E,{loading:i,type:"submit",title:"Submit",classes:"self-end mt-[16px]"})]})})})}import{Container as zi}from"@mui/material";import{useRef as Oi,useEffect as Ui}from"react";import{Fancybox as D7}from"@fancyapps/ui";import"@fancyapps/ui/dist/fancybox/fancybox.css";import{jsx as Wi}from"react/jsx-runtime";function Pi(t){let e=Oi(null);return Ui(()=>{let o=e.current,s=t.delegate||"[data-fancybox]",i=t.options||{};return D7.bind(o,s,i),()=>{D7.unbind(o),D7.close()}}),Wi("div",{ref:e,children:t.children})}var F7=Pi;import{useEffect as Di,useState as Z7}from"react";import{useKeenSlider as w0}from"keen-slider/react";import{Box as W4}from"@mui/material";import Y7 from"@mui/material/Grid2";import b0 from"next/image";import{Fragment as Yi,jsx as h1,jsxs as z7}from"react/jsx-runtime";var Fi=t=>e=>{function o(){e.slides.forEach(l=>{l.classList.remove("active")})}function s(l){e.slides[l].classList.add("active")}function i(){e.slides.forEach((l,n)=>{l.addEventListener("click",()=>{t.current&&t.current.moveToIdx(n)})})}e.on("created",()=>{t.current&&(s(e.track.details.rel),i(),t.current.on("animationStarted",l=>{o();let n=l.animator.targetIdx||0;s(l.track.absToRel(n)),e.moveToIdx(Math.min(e.track.details.maxIdx,n))}))})},Zi=({images:t})=>{let[e,o]=Z7(0),{sm:s}=S(),[i,l]=Z7([]),[n,p]=Z7([!0,!0,!0]),[c,g]=w0({initial:0,slideChanged(w){o(w.track.details.rel)},animationEnded(w){o(w.track.details.rel)}}),[y]=w0({initial:0,slides:{perView:3,spacing:15},vertical:!0,slideChanged(w){o(w.track.details.rel)},animationEnded(w){o(w.track.details.rel)}},[Fi(g)]);return Di(()=>{let w=[...i];w[e]=!0,l(w);let B=[...n];B[e-2!==t.length?e+2:e]=!0,p(B)},[e]),z7(Y7,{container:!0,spacing:2,children:[z7(Y7,{size:s?12:9,className:"relative",children:[h1(W4,{ref:c,className:"keen-slider h-[600px] md:h-[338px] sm:!h-[230px]",children:t.map((w,B)=>h1(W4,{className:"keen-slider__slide lazy__slide relative w-full h-full",children:i[B]?h1(h,{"data-fancybox":"gallery",href:w.url,style:{position:"relative",display:"block",width:"100%",height:"100%"},children:h1(b0,{className:"object-cover object-center",src:i[B]?w.url:o1,alt:"image",fill:!0,sizes:"1201px",quality:100,priority:!0})}):null},B))}),i&&g.current&&z7(Yi,{children:[h1(V1,{className:`absolute top-1/2 left-[64px] md:left-[30px] sm:!left-[15px] transform -translate-y-1/2 cursor-pointer${e===0?" opacity-[0.5]":""}`,onClick:w=>w.stopPropagation()||g.current?.prev()}),h1(f5,{className:`absolute top-1/2 right-[64px] md:right-[30px] sm:!right-[15px] transform -translate-y-1/2 cursor-pointer${e===g.current.track.details.slides.length-1?" opacity-[0.5]":""}`,onClick:w=>w.stopPropagation()||g.current?.next()})]})]}),s?null:h1(Y7,{size:3,children:h1(W4,{ref:y,className:"keen-slider h-[600px] md:h-[338px]",children:t.map((w,B)=>h1(W4,{className:"keen-slider__slide h-[190px] md:h-[106px] cursor-pointer",children:n[B]?h1(h,{"data-fancybox":"gallery",href:w.url,style:{position:"relative",display:"block",width:"100%",height:"100%"},children:h1(b0,{className:"object-cover object-center",src:n[B]?w.url:o1,alt:"image",fill:!0,sizes:"20vw",priority:!0})}):null},B))})})]})},K7=Zi;import{jsx as Q7}from"react/jsx-runtime";function B0({images:t}){return Q7(zi,{maxWidth:C,children:Q7(F7,{options:{Carousel:{infinite:!1}},children:Q7(K7,{images:t})})})}import{Box as Ki,Container as Qi,Typography as qi}from"@mui/material";import{jsx as D4,jsxs as Xi}from"react/jsx-runtime";function v0({imageUrl:t,text:e,title:o,classes:s}){return D4(Qi,{maxWidth:C,className:m(s),children:Xi(Ki,{className:"flex flex-col mx-auto w-full max-w-[840px] text-center md:items-center",children:[D4(x,{src:t,alt:"Team",classesWrapper:"w-full h-[294px] md:h-[216px] sm:!h-[170px]",objectFit:"object-contain"}),D4("span",{className:"!text-32 normal-case font-extrabold block-white-wrapper md:w-fit sm:!w-full md:text-18 md:py-[14px] box-border",children:o}),D4(qi,{component:"span",className:"mt-[20px] px-[60px] md:px-[0px] sm:text-12/[19px]",children:e})]})})}import{Box as k0,Container as ji,Typography as q7}from"@mui/material";import X7 from"@mui/material/Grid2";import{jsx as F1,jsxs as H0}from"react/jsx-runtime";function M0({title2:t,title:e,items:o,text:s,imageUrl:i,classes:l}){return F1(ji,{maxWidth:C,className:m(l),children:H0(X7,{container:!0,className:"mt-[77px] md:mt-[40px] sm:!mt-[30px]",columnSpacing:{sm:5,xs:0},children:[F1(X7,{size:{sm:6,xs:12},children:H0(k0,{className:"pt-[32px] flex flex-col md:pt-[0px]",children:[F1("h2",{className:"!text-28 normal-case font-extrabold md:text-14",children:e}),F1(q7,{component:"span",className:"text-gray mt-[16px] md:mt-[10px]",children:s}),F1(q7,{component:"span",className:"font-extrabold mt-[20px] text-16 md:mt-[16px] md:text-14",children:t}),F1(k0,{className:"flex flex-col gap-[16px] mt-[20px] md:mt-[10px]",children:o?.map(n=>F1(q7,{component:"span",className:"block-simple-border block border-[1px] py-[16px] px-[24px] text-14 w-fit border-dark border-solid md:py-[6px] md:px-[16px] md:text-12",children:n.text1},n.text1))})]})}),F1(X7,{size:{sm:6,xs:12},className:"md:mt-[26px] sm:mx-[-30px]",children:F1(x,{src:i,alt:"Image",classesWrapper:"h-full md:h-[560px] sm:w-[140%]"})})]})})}import{Box as $7,Container as tl,Typography as N0}from"@mui/material";import{useTranslations as el}from"next-intl";import{Box as n3,Typography as j7}from"@mui/material";import{useLocale as Ji,useTranslations as $i}from"next-intl";import{jsx as p2,jsxs as E2}from"react/jsx-runtime";function J7({updatedAt:t,city:e,country:o,pay:s}){let i=Ji();return E2(n3,{className:"flex flex-col gap-[16px]",children:[E2(n3,{className:"flex gap-[10px] items-center",children:[p2(y2,{}),t&&p2(j7,{component:"span",className:"text-dark",children:R8(t,i)})]}),E2(n3,{className:"flex gap-[10px] items-center",children:[p2(V5,{}),E2(j7,{component:"span",className:"text-dark",children:[s," \u20B4"]})]}),E2(n3,{className:"flex gap-[10px] items-center",children:[p2(R5,{}),E2(j7,{component:"span",className:"text-dark",children:[o,", ",e]})]})]})}function p3({updatedAt:t,classes:e,pay:o,city:s,button:i=!1,country:l,slug:n,href:p}){let c=$i();return E2(n3,{className:`box-border border-[1px] border-gold border-solid py-[40px] px-[50px] flex flex-col justify-between w-fit md:px-[40px] md:py-[30px] gap-[15px] sm:w-full${m(e)}`,children:[p2(n3,{className:"flex flex-col gap-[16px]",children:p2(J7,{city:s,country:l,pay:o,updatedAt:t})}),i&&n&&p?p2(J,{title:c("Learn more"),href:`${p}/${n}`,icon:p2(i1,{}),color:"dark",classes:"w-full justify-center md:mt-[16px] box-border"}):null]})}import{jsx as C3,jsxs as F4}from"react/jsx-runtime";function I0({title:t,vacancies:e,classes:o,href:s}){let i=el();return F4(tl,{maxWidth:C,className:X(o),children:[C3(I,{children:t}),C3($7,{className:"mt-[18px] flex flex-col gap-[30px] md:mt-[20px] md:gap-[20px]",children:e?.length?e?.map(l=>F4($7,{className:"sm:mx-[calc(50%-50vw)] bg-white p-[30px] flex justify-between gap-[60px] sm:flex-col md:py-[30px] sm:!py-[20px] sm:px-[60px] xs:px-[30px] sm:gap-[20px]",children:[F4($7,{className:"flex flex-col max-w-[60%] sm:max-w-full",children:[C3(h,{href:`${s}/${l?.slug}`,className:"text-16 text-dark font-extrabold uppercase",children:l.position}),F4(N0,{component:"span",className:"mt-[10px] font-extrabold text-16",children:[i("We offer"),":"]}),l.offerText&&C3(k1,{body:l.offerText})]}),C3(p3,{updatedAt:l?.updated,pay:l?.pay,country:l?.country,city:l?.city,button:!0,slug:l?.slug,href:s,classes:"h-fit sm:!h-full"})]},l.slug)):C3(N0,{component:"span",className:"",children:i("No vacancies")})})]})}import{Container as ol,Typography as rl,Box as _0}from"@mui/material";import{useTranslations as al}from"next-intl";import{jsx as V2,jsxs as T0}from"react/jsx-runtime";function A0({vacancies:t,classes:e,href:o}){let s=al(),{sm:i,md:l}=S();return T0(ol,{maxWidth:C,className:X(e),children:[V2("h2",{className:"!text-28 normal-case font-extrabold md:text-16",children:s("Other vacancies")}),V2(_0,{className:"mt-[32px] md:mt-[24px]",children:V2(n1,{spacing:30,slides:l?i?1:2:3,children:t?.map(n=>T0(h,{href:`${o}/${n?.slug}`,className:"bg-white p-[40px] border-gold border-solid border-[1px] flex flex-col gap-[16px] relative md:py-[30px]",children:[V2(rl,{component:"span",className:"text-16 font-extrabold text-dark flex-auto",children:n?.position}),V2(J7,{updatedAt:n?.updated,pay:n?.pay,country:n?.country,city:n?.city}),V2(_0,{className:"absolute right-[25px] bottom-[25px]",children:V2(x5,{})})]},n?.slug))})})]})}import{Box as Z4,Container as sl,Typography as Y4}from"@mui/material";import J3 from"@mui/material/Grid2";import{jsx as s1,jsxs as $3}from"react/jsx-runtime";function S0({classes:t,block:e,title:o,text2:s,text1:i}){return s1(sl,{maxWidth:C,className:m(t),children:$3(J3,{container:!0,columnSpacing:2.5,rowSpacing:{xs:2.5,md:8},children:[s1(J3,{size:{xs:12,sm:6},children:$3(Z4,{className:"mt-[50px] flex flex-col pr-[50px] md:pr-[30px] sm:mt-0 sm:!pr-0 ",children:[s1(I,{children:o}),s1(Y4,{component:"span",className:"text-gray mt-[12px] sm:text-12/[19px] xs:text-14",children:i})]})}),s1(J3,{size:{xs:12,sm:6},children:s1(x,{contentful:!1,src:"/images/pngs/dubai.png",classesWrapper:"w-full h-[350px] sm:h-[194px]"})}),s1(J3,{size:{xs:12,sm:6},children:s1(x,{contentful:!1,src:"/images/pngs/dubai2.png",classesWrapper:"h-[350px] w-full sm:h-[194px]"})}),s1(J3,{size:{xs:12,sm:6},children:$3(Z4,{className:"mt-[20px] flex flex-col pl-[50px] md:pl-[30px] sm:mt-0 sm:!pl-0",children:[s1(Y4,{component:"span",className:"text-gray sm:text-12/[19px] xs:text-14",children:s}),e&&$3(Z4,{className:"bg-gold flex gap-[16px] px-[30px] py-[20px] mt-[20px]",children:[s1(B3,{className:"flex-shrink-0 sm:hidden"}),$3(Z4,{className:"text-white",children:[s1(Y4,{component:"span",className:"mr-[5px] font-extrabold sm:text-12/[19px] xs:text-14",children:e.strongText}),s1(Y4,{component:"span",className:"sm:text-12/[19px] xs:text-14",children:e.text})]})]})]})})]})})}import{Box as t9,Container as il,Typography as E0}from"@mui/material";import V0 from"@mui/material/Grid2";import{jsx as m3,jsxs as e9}from"react/jsx-runtime";function R0({title:t,items:e,classes:o}){return e9(il,{maxWidth:C,className:`mt-[80px] md:mt-[40px]${o?" "+o:""}`,children:[m3("h2",{className:"!text-28 normal-case font-extrabold md:text-16",children:t}),m3(V0,{container:!0,className:"mt-[20px]",spacing:{sm:5,xs:2.5},children:e?.map(s=>m3(V0,{size:{xs:12,md:4,sm:6},children:e9(t9,{className:"relative",children:[m3(t9,{className:"bg-white w-[66px] h-[66px] absolute left-[0px] top-[0px] z-[1] sm:hidden"}),e9(t9,{className:"flex flex-col gap-[10px] relative z-[2] pl-[33px] pt-[33px] sm:p-0",children:[m3(E0,{component:"span",className:"text-16 font-extrabold",children:s?.text1}),m3(E0,{component:"span",children:s?.text2})]})]})},s?.text1))})]})}import{Box as ll,Container as nl,Typography as G0}from"@mui/material";import pl from"@mui/material/ImageList";import Cl from"@mui/material/ImageListItem";import{useTranslations as ml}from"next-intl";import{jsx as c3,jsxs as o9}from"react/jsx-runtime";function O0({classes:t,items:e,title:o,href:s}){let i=ml(),{sm:l,xs:n}=S();return o9(nl,{maxWidth:C,className:m(t),children:[c3(E3,{title:o||"",buttonLabel:i("All Areas"),buttonHref:s}),!!e?.length&&c3(pl,{variant:"quilted",cols:l?n?1:3:4,rowHeight:l?n?300:240:300,gap:18,className:"mt-[20px] sm:mt-[10px]",children:e.map((p,c)=>c3(Cl,{cols:l?1:p.cols||1,rows:l?1:p.rows||1,children:o9(h,{href:`${s}/${p.slug}`,children:[c3(x,{contentful:!1,src:p.imgSrc}),o9(ll,{className:"absolute bottom-[25px] left-[30px] text-white flex flex-col gap-[6px] sm:bottom-[10px] sm:left-[20px] sm:gap-[2px] xs:bottom-[20px] xs:left-[25px]",children:[c3(G0,{component:"span",className:"font-extrabold text-16 sm:text-14",children:p.label}),c3(G0,{component:"span",className:"text-12",children:`${i("Price from")} ${f1(Number(p.text))}`})]})]})},c))})]})}import{Box as C1,Container as cl,Typography as C2}from"@mui/material";import{useTranslations as dl}from"next-intl";import{jsx as y1,jsxs as Q}from"react/jsx-runtime";function U0({classes:t,box:e,title:o,actionComponent:s}){let i=dl();return Q(cl,{maxWidth:C,className:`mt-[60px] xs:mt-[40px] ${m(t)}`,children:[y1(I,{children:o}),y1(C1,{className:"flex flex-col mt-[18px] gap-[30px] sm:gap-[20px]",children:e?.map((l,n)=>Q(C1,{className:"p-[40px] bg-white flex gap-[35px] sm:p-[20px] xs:mx-[calc(50%-50vw)] xs:p-[30px] xs:flex-col xs:gap-[20px]",children:[y1(x,{contentful:!1,src:l.img,classesWrapper:"w-[360px] h-auto flex-shrink-0 sm:w-[172px] sm:h-[106px] xs:w-full xs:h-[240px]"}),Q(C1,{className:"flex gap-[30px] justify-between w-full md:gap-[15px] xs:flex-col xs:gap-0",children:[Q(C1,{className:"flex flex-col gap-[15px] sm:gap-[10px]",children:[y1(C2,{component:"span",className:"font-extrabold text-18 sm:text-16",children:l.label}),Q(C1,{className:"flex gap-[20px] [@media(max-width:750px)]:flex-col [@media(max-width:750px)]:gap-[10px] xs:!flex-row xs:!gap-[25px]",children:[Q(C1,{className:"flex flex-col",children:[Q(C2,{component:"span",className:"text-gold sm:text-12 xs:text-14",children:[i("From"),":"]}),y1(C2,{component:"span",className:"sm:text-12 xs:text-14",children:l.from})]}),Q(C1,{className:"flex flex-col",children:[Q(C2,{component:"span",className:"text-gold sm:text-12 xs:text-14",children:[i("to"),":"]}),y1(C2,{component:"span",className:"font-extrabold sm:text-12 xs:text-14",children:l.to})]})]}),Q(C1,{children:[Q(C2,{component:"span",className:"font-extrabold sm:text-12 xs:text-14",children:[i("Description"),":"]}),y1("ul",{className:"mt-[6px] text-gray pl-[20px] sm:text-12/[19px] xs:text-14",children:l.description?.map(p=>y1("li",{children:p},p))})]})]}),Q(C1,{className:"flex flex-col justify-between items-end sm:gap-[26px] xs:gap-[15px]",children:[Q(C1,{className:"h-fit border-solid border-[1px] border-gold px-[50px] py-[40px] flex flex-col gap-[16px] md:p-[20px] sm:max-w-[170px] xs:max-w-[unset] xs:w-full xs:p-[30px]",children:[Q(C1,{className:"flex gap-[10px] items-center",children:[y1(y2,{className:"shrink-0"}),y1(C2,{component:"span",className:"sm:text-12 xs:text-14",children:l.date})]}),Q(C1,{className:"flex gap-[10px] items-center",children:[y1(P5,{className:"shrink-0"}),Q(C2,{component:"span",className:"sm:text-12 xs:text-14",children:[i("income"),": ",l.income]})]})]}),s||null]})]})]},n))})]})}import r9 from"@mui/material/Grid2";import{Box as t4,Container as fl,Typography as e4}from"@mui/material";import{Fragment as xl,jsx as t1,jsxs as z4}from"react/jsx-runtime";function P0(t){return!t.text1&&!t.text2?t1(xl,{}):z4(t4,{className:"flex flex-col",children:[t1(e4,{component:"span",className:"text-gold text-50 font-extrabold sm:text-26 xs:text-50",children:t.text1}),t1(e4,{component:"span",className:"text-gray text-16 sm:text-12 xs:text-16",children:t.text2})]})}function W0({title:t,box:e,text1:o,classes:s,subtitle:i,text2:l,actionComponent:n}){return t1(fl,{maxWidth:C,className:m(s),children:z4(r9,{container:!0,columnSpacing:15,rowSpacing:4,children:[t1(r9,{size:{xs:12,sm:6},children:z4(t4,{className:"flex flex-col gap-3 xs:gap-2",children:[t1(Z,{children:t}),i&&t1(e4,{className:"font-extrabold uppercase text-16 sm:text-12",children:i}),o&&t1(e4,{className:"text-gray text-14 sm:text-12/[19px]",children:o}),l&&t1(e4,{className:"text-gray text-14 sm:text-12/[19px]",children:l}),n||null]})}),t1(r9,{size:{xs:12,sm:6},children:e&&z4(t4,{className:"flex flex-col gap-y-[25px] mt-[10px] sm:gap-y-[14px] xs:gap-y-[10px]",children:[t1(t4,{className:"flex justify-between items-center gap-[50px] sm:gap-[30px] xs:flex-col xs:gap-[10px] xs:items-start",children:e.slice(0,2).map((p,c)=>{if(p?.text1&&p?.text2)return t1(P0,{text1:p.text1,text2:p.text2},c)})}),t1(t4,{className:"flex justify-between items-center gap-[50px] sm:gap-[30px] xs:flex-col xs:gap-[10px] xs:items-start",children:e.slice(2,4).map((p,c)=>{if(p?.text1&&p?.text2)return t1(P0,{text1:p.text1,text2:p.text2},c)})})]})})]})})}import{Box as a9,Container as gl,Typography as o4}from"@mui/material";import{useTranslations as ul}from"next-intl";import s9 from"@mui/material/Grid2";import{jsx as L1,jsxs as K4}from"react/jsx-runtime";function D0({text1:t,text2:e,text3:o,title2:s,title:i,subtitle:l,classes:n}){let p=ul(),{showModal:c}=q();return K4(gl,{maxWidth:C,className:n||"",children:[L1(a9,{className:"flex justify-between",children:L1("h1",{className:"normal-case font-extrabold !text-28 md:text-16 sm:text-18",children:i})}),K4(s9,{container:!0,columnSpacing:11,className:"mt-[16px] md:mt-[10px]",children:[L1(s9,{size:{xs:12,sm:6},children:K4(a9,{className:"flex flex-col",children:[L1(o4,{component:"span",className:"font-extrabold text-gray md:text-14",children:l}),L1(o4,{component:"p",className:"text-gray text-14 mt-[10px]",children:t}),L1(o4,{component:"p",className:"text-gray text-14 mt-[10px]",children:e})]})}),L1(s9,{size:{xs:12,sm:6},className:"md:mt-[30px]",children:K4(a9,{className:"p-[40px] !pt-[30px] bg-gold flex flex-col sm:!mx-[-30px] md:pb-[30px]",children:[L1(o4,{component:"span",className:"font-extrabold text-16",children:s}),L1(o4,{component:"span",className:"mt-[6px]",children:o}),L1(J,{title:p("Become part of our team"),onClick:()=>c("GENERAL"),icon:L1(i1,{}),classes:"self-end mt-[6px]",color:"dark"})]})})]})]})}import{Box as hl}from"@mui/material";import{jsx as d3,jsxs as Ll}from"react/jsx-runtime";var yl=({classes:t,instagram:e,facebook:o,youtube:s})=>Ll(hl,{className:`flex gap-[13px]${t?" "+t:""}`,children:[e&&d3(N,{data:e,type:"link",title:d3(L2,{className:"hover:filter-gold2"})}),o&&d3(N,{data:o,type:"link",title:d3(v3,{className:"hover:filter-gold2"})}),s&&d3(N,{data:s,type:"link",title:d3(N3,{className:"hover:filter-gold2"})})]}),f3=yl;import{Box as F0,Container as wl,Typography as bl}from"@mui/material";import{jsx as Q4,jsxs as Bl}from"react/jsx-runtime";function Z0({classes:t,text:e,title:o}){return Q4(F0,{className:`mt-[80px]${t?" "+t:""}`,children:Q4(wl,{maxWidth:C,children:Bl(F0,{className:"flex flex-col items-center gap-[16px] text-center max-w-[950px] w-full mx-auto",children:[Q4("h2",{className:"!text-28 normal-case font-extrabold",children:o}),Q4(bl,{component:"span",className:"text-gray text-14",children:e})]})})})}import{Typography as vl}from"@mui/material";import{jsx as kl}from"react/jsx-runtime";function Y0(t){let{title:e,classes:o,titlePosition:s="left",component:i="h1",...l}=t;return kl(vl,{...l,component:i,className:`!text-28 normal-case font-extrabold text-${s} block md:text-18${m(o)}`,children:e})}import{Box as Hl,Container as Ml}from"@mui/material";import{Fragment as Nl,jsx as x3,jsxs as Il}from"react/jsx-runtime";function z0({classes:t,title:e,developers:o}){let{md:s,xs:i}=S();return!o||o?.length<5?x3(Nl,{}):Il(Hl,{className:m(t),children:[x3(Ml,{maxWidth:C,children:x3(I,{className:"block w-fit mx-auto mb-[20px]",children:e})}),x3(n1,{slides:s?s&&!i?4:2:6,spacing:20,children:o?.map(l=>x3(h,{href:`${l.href}/${l.slug}`,className:"bg-white p-[25px] flex justify-center ",children:x3(x,{src:l.img,classesWrapper:"w-[135px] h-[90px] sm:h-[50px] xs:h-[40px]",objectFit:"object-contain",contentful:!1})},l.slug))})]})}import{Box as r4,Container as _l,Typography as i9}from"@mui/material";import{useTranslations as Tl}from"next-intl";import l9 from"@mui/material/Grid2";import{jsx as e1,jsxs as a4}from"react/jsx-runtime";function K0({classes:t,title:e,text:o,numbers:s,imageUrl:i}){let l=Tl(),{windowSize:n,sm:p}=S(),{showModal:c}=q();return a4(r4,{className:`relative bg-white${t?" "+t:""}`,children:[!p&&n<1500&&e1(x,{src:i,alt:"Image",classesWrapper:"!absolute top-0 right-0 bottom-0 !w-1/2 h-full"}),e1(_l,{maxWidth:C,children:a4(l9,{container:!0,children:[e1(l9,{size:{sm:6,xs:12},children:a4(r4,{className:"relative pt-20 pb-28 pr-28 flex flex-col gap-[22px] md:gap-[10px] md:pt-[32px] md:pb-[96px] sm:px-[0px] sm:w-[93vw]",children:[e1("h2",{className:"font-extrabold !text-28 normal-case md:text-16",children:e}),e1(i9,{component:"span",className:"text-gray",children:o}),e1(s3,{classes:"mt-[35px] md:mt-[26px]"}),!!s?.length&&e1(r4,{className:"flex flex-wrap gap-x-[103px] gap-y-[19px] md:gap-x-[82px] md:gap-y-[14px] sm:mt-[16px] sm:!gap-x-[56px] sm:!gap-y-[18px]",children:s?.map(g=>{if(g.number&&g.text)return a4(r4,{className:"flex flex-col",children:[e1(i9,{component:"span",className:"text-gold text-100 font-extrabold md:text-40 sm:!text-60",children:G8(g.number)}),e1(i9,{component:"span",className:"text-base text-gray mt-[-20px] md:text-12 md:mt-[-7px] sm:!text-14",children:g.text})]},g.text)})}),e1(r4,{className:"absolute right-[50px] bottom-[50px] sm:right-[0px] sm:bottom-[30px]",children:e1(J,{title:l("Write to us"),icon:e1(E5,{}),onClick:()=>c("GENERAL")})})]})}),a4(l9,{size:{xs:12,sm:6},className:"md:w-full",children:[!p&&n>1500&&e1(x,{src:i,alt:"Image",classesWrapper:"h-full w-[50vw]",classesImg:"object-top"}),p&&e1(x,{src:i,alt:"Image",classesWrapper:"sm:mx-[-30px] sm:h-[506px] sm:w-[unset]",classesImg:"sm:object-top"})]})]})})]})}import{Box as I1,Container as Gl,Typography as Z1}from"@mui/material";import{useTranslations as Ol}from"next-intl";import{useEffect as Ul}from"react";import m9 from"@mui/material/Grid2";import"react";import{jsx as LG}from"react/jsx-runtime";import"react";import{jsx as kG}from"react/jsx-runtime";import"react";import{jsx as _G}from"react/jsx-runtime";import"react";import{jsx as VG}from"react/jsx-runtime";import"react";import{jsx as PG}from"react/jsx-runtime";import"react";import{jsx as YG}from"react/jsx-runtime";import"react";import{jsx as XG}from"react/jsx-runtime";import"react";import{jsx as eO}from"react/jsx-runtime";import"react";import{jsx as Q0}from"react/jsx-runtime";var Al=t=>Q0("svg",{width:13,height:7,viewBox:"0 0 13 7",fill:"none",xmlns:"http://www.w3.org/2000/svg",...t,children:Q0("path",{d:"M12 6.25L6.5 0.75L1 6.25",stroke:"#343434",strokeLinecap:"round"})}),s4=Al;import"react";import{jsx as CO}from"react/jsx-runtime";import"react";import{jsx as xO}from"react/jsx-runtime";import"react";import{jsx as LO,jsxs as wO}from"react/jsx-runtime";import"react";import{jsx as HO}from"react/jsx-runtime";import"react";import{jsx as TO,jsxs as AO}from"react/jsx-runtime";import"react";import{jsx as GO,jsxs as OO}from"react/jsx-runtime";import"react";import{jsx as FO}from"react/jsx-runtime";import"react";import{jsx as QO}from"react/jsx-runtime";import"react";import{jsx as $O}from"react/jsx-runtime";import"react";import{jsx as aU}from"react/jsx-runtime";import"react";import{jsx as pU}from"react/jsx-runtime";import"react";import{jsx as fU}from"react/jsx-runtime";import"react";import{jsx as yU}from"react/jsx-runtime";import"react";import{jsx as vU,jsxs as kU}from"react/jsx-runtime";import"react";import{jsx as _U}from"react/jsx-runtime";import"react";import{jsx as VU,jsxs as RU}from"react/jsx-runtime";import"react";import{jsx as WU}from"react/jsx-runtime";import"react";import{jsx as zU}from"react/jsx-runtime";import"react";import{jsx as jU,jsxs as JU}from"react/jsx-runtime";import"react";import{jsx as rP,jsxs as aP}from"react/jsx-runtime";import"react";import{jsx as pP}from"react/jsx-runtime";import"react";import{jsx as fP}from"react/jsx-runtime";import"react";import{jsx as yP,jsxs as LP}from"react/jsx-runtime";import"react";import{jsx as kP}from"react/jsx-runtime";import"react";import{jsx as _P}from"react/jsx-runtime";import"react";import{jsx as VP}from"react/jsx-runtime";import"react";import{jsx as PP}from"react/jsx-runtime";import"react";import{jsx as YP}from"react/jsx-runtime";import"react";import{jsx as XP}from"react/jsx-runtime";import"react";import{jsx as eW,jsxs as oW}from"react/jsx-runtime";import"react";import{jsx as lW}from"react/jsx-runtime";import"react";import{jsx as cW,jsxs as dW}from"react/jsx-runtime";import"react";import{jsx as hW}from"react/jsx-runtime";import"react";import{jsx as BW}from"react/jsx-runtime";import"react";import{jsx as NW}from"react/jsx-runtime";import"react";import{jsx as SW}from"react/jsx-runtime";import"react";import{jsx as OW}from"react/jsx-runtime";import"react";import{jsx as FW}from"react/jsx-runtime";import"react";import{jsx as QW,jsxs as qW}from"react/jsx-runtime";import"react";import{jsx as tD}from"react/jsx-runtime";import"react";import{jsx as sD}from"react/jsx-runtime";import"react";import{jsx as q0}from"react/jsx-runtime";var Sl=t=>q0("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",...t,children:q0("path",{d:"M12 9H12.01M11 12H12V16H13M12 3C19.2 3 21 4.8 21 12C21 19.2 19.2 21 12 21C4.8 21 3 19.2 3 12C3 4.8 4.8 3 12 3Z",stroke:"#343434",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"})}),n9=Sl;import"react";import{jsx as X0}from"react/jsx-runtime";var El=t=>X0("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",...t,children:X0("path",{d:"M15 16V20C15 20.2652 14.8946 20.5196 14.7071 20.7071C14.5196 20.8946 14.2652 21 14 21H6C5.73478 21 5.48043 20.8946 5.29289 20.7071C5.10536 20.5196 5 20.2652 5 20V6C5 5.73478 5.10536 5.48043 5.29289 5.29289C5.48043 5.10536 5.73478 5 6 5H8M10 18V18.01M11 3H21V11H18L14 13V11H11V3Z",stroke:"#343434",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"})}),p9=El;import"react";import{jsx as j0}from"react/jsx-runtime";var Vl=t=>j0("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",...t,children:j0("path",{d:"M12 18H5C4.46957 18 3.96086 17.7893 3.58579 17.4142C3.21071 17.0391 3 16.5304 3 16V6M3 6C3 5.46957 3.21071 4.96086 3.58579 4.58579C3.96086 4.21071 4.46957 4 5 4H19C19.5304 4 20.0391 4.21071 20.4142 4.58579C20.7893 4.96086 21 5.46957 21 6M3 6L12 12L21 6M21 6V13.5M15 18H21M21 18L18 15M21 18L18 21",stroke:"#343434",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"})}),C9=Vl;import{Fragment as J0,jsx as Y,jsxs as P}from"react/jsx-runtime";function $0({title:t,pay:e,date:o,offer:s,qualities:i,requirements:l,country:n,city:p,additional:c,slugs:g,classes:y,children:w,phone:B,email:b,manager:v,href:M}){let H=Ol(),{setLocaleSlugs:k}=e2();return Ul(()=>(k(g,M||"/vacancies/"),()=>k()),[]),P(Gl,{maxWidth:C,className:X(y),children:[Y(Z,{className:"normal-case",children:t}),P(m9,{container:!0,columnSpacing:{md:7,xs:0},className:"mt-[30px] md:mt-[16px]",children:[Y(m9,{size:{md:6.8,xs:12},children:P(I1,{className:"bg-white py-[30px] px-[40px] flex flex-col gap-[20px] md:px-[20px] md:py-[20px] sm:mx-[-30px]",children:[s&&P(I1,{children:[P(Z1,{component:"span",className:"text-20 font-extrabold uppercase md:text-14",children:[H("We offer"),":"]}),Y(k1,{body:s})]}),c&&P(I1,{children:[P(Z1,{component:"span",className:"text-20 font-extrabold uppercase md:text-14",children:[H("Additional information"),":"]}),Y(k1,{body:c})]}),l&&P(I1,{children:[P(Z1,{component:"span",className:"text-20 font-extrabold uppercase md:text-14",children:[H("Requirements"),":"]}),Y(k1,{body:l})]}),i&&P(I1,{children:[P(Z1,{component:"span",className:"text-20 font-extrabold uppercase md:text-14",children:[H("Qualities"),":"]}),Y(k1,{body:i})]})]})}),P(m9,{size:{md:5.2,xs:12},children:[Y(p3,{updatedAt:o,pay:e,country:n,city:p,classes:"md:mt-[30px]"}),P(I1,{className:"mt-[34px] flex flex-col gap-4",children:[Y(Z1,{component:"span",className:"font-extrabold text-gold2 uppercase",children:H("Write to us if you like the vacancy and see yourself in our team")}),P(I1,{className:"flex flex-row gap-4",children:[Y(x,{src:v.photoCard.fields.file.url,classesImg:"rounded-full object-top bg-accent-silver-4",classesWrapper:"w-[108px] xs:w-[80px] h-[108px] xs:h-[80px] md:shrink-0 "}),P(I1,{className:"flex flex-col gap-3",children:[P(I1,{className:"flex flex-col gap-1",children:[Y(Z1,{className:"font-extrabold text-16",children:`${v.firstName} ${v.lastName}`}),Y(Z1,{className:"text-14",children:v.position})]}),P(I1,{className:"flex flex-col gap-2",children:[B?Y(N,{classes:"flex gap-[7px] items-center group/phone",data:F("dubai",B),type:"tel",blank:!1,title:P(J0,{children:[Y(p9,{className:"group-hover/phone:filter-gold2"}),Y(Z1,{component:"span",className:"text-14",children:F("dubai",B)})]})}):null,b?Y(N,{classes:"flex gap-[7px] items-center group/email",data:b,type:"mail",blank:!1,title:P(J0,{children:[Y(C9,{className:"group-hover/email:filter-gold2"}),Y(Z1,{component:"span",className:"text-14",children:b})]})}):null]})]})]}),w]})]})]})]})}import{Box as i4,Container as Pl,Typography as c9}from"@mui/material";import d9 from"@mui/material/Grid2";import{jsx as _1,jsxs as f9}from"react/jsx-runtime";function tt({title:t,sellerItems:e,buyerItems:o,imageUrl:s,classes:i}){return _1(i4,{className:`bg-white mt-[52px] md:mt-[30px] sm:!mt-[0px] md:pb-[55px] sm:!pb-0${m(i)}`,children:_1(Pl,{maxWidth:C,children:f9(d9,{container:!0,columnSpacing:{md:5,xs:0},children:[_1(d9,{size:{md:6,xs:12},children:f9(i4,{className:"pt-[89px] pb-[105px] md:pt-[33px] md:pb-[29px]",children:[_1(c9,{component:"h2",className:"uppercase font-extrabold text-34 md:text-14",children:t}),_1(i4,{className:"flex flex-col gap-[20px] mt-[16px] md:mt-[10px] md:flex-row sm:!flex-col md:gap-[40px] sm:!gap-[28px]",children:[e,o].map((l,n)=>f9(i4,{className:"flex flex-col md:w-1/2 sm:!w-full",children:[_1(c9,{component:"span",className:"font-extrabold text-16 md:text-14",children:l?.title}),_1(i4,{className:"flex flex-col mt-[16px] gap-[6px] md:mt-[10px]",children:l?.items?.map(p=>_1(c9,{className:"block py-[6px] px-[16px] w-fit bg-gray-light md:text-12",children:p?.text1},p?.text1))})]},n))})]})}),_1(d9,{size:{md:6,xs:12},className:"sm:mx-[-30px]",children:_1(x,{src:s,alt:"Back",classesWrapper:"w-[50vw] md:w-full sm:!w-[140%] h-full md:h-[390px] sm:!h-[550px]"})})]})})})}import{Box as Wl,Container as Dl,Typography as Fl}from"@mui/material";import x9 from"@mui/material/Grid2";import{jsx as g3,jsxs as et}from"react/jsx-runtime";function ot({classes:t,text:e,imgSrc:o,title:s,actionComponent:i}){return g3(Dl,{maxWidth:C,className:m(t),children:et(x9,{container:!0,columnSpacing:{xs:3,md:9},rowSpacing:5,children:[g3(x9,{size:{xs:12,sm:6},children:g3(x,{contentful:!1,src:o,classesWrapper:"h-[350px] sm:h-[194px] xs:h-[230px] xs:mx-[calc(50%-50vw)]"})}),g3(x9,{size:{xs:12,sm:6},children:et(Wl,{className:"flex flex-col justify-center h-full",children:[g3(R1,{children:s}),g3(Fl,{component:"span",className:"text-gray mt-[12px] sm:mt-[10px]",children:e}),i||null]})})]})})}import{Box as rt,Container as Zl,Typography as q4}from"@mui/material";import g9 from"@mui/material/Grid2";import{jsx as T1,jsxs as at}from"react/jsx-runtime";function st({classes:t,text3:e,text2:o,text1:s,title:i}){let{showModal:l}=q();return T1(rt,{className:`bg-white py-[80px]${m(t)}`,children:T1(Zl,{maxWidth:C,children:at(g9,{container:!0,columnSpacing:9,children:[T1(g9,{size:{xs:12,md:6},children:T1(x,{contentful:!1,src:"/images/pngs/whatis.png",classesWrapper:"w-full h-[350px]"})}),T1(g9,{size:{xs:12,md:6},children:at(rt,{className:"flex flex-col h-full justify-center",children:[T1(q4,{component:"span",className:"font-extrabold text-18",children:i}),T1(q4,{component:"span",className:"mt-[12px] text-gray",children:s}),T1(q4,{component:"span",className:"mt-[16px] text-gray",children:o}),T1(q4,{component:"span",className:"mt-[16px] text-gray font-extrabold",children:e}),T1(E,{title:"Request Valuation",classes:"mt-[10px]",onClick:()=>l("GENERAL")})]})})]})})})}import{Container as Yl,Stack as u9}from"@mui/material";import u3 from"@mui/material/Grid2";import{jsx as w1,jsxs as l4}from"react/jsx-runtime";var zl=({classes:t,title1:e,title2:o,text2:s,text1:i,images:l,actionComponent:n})=>w1(Yl,{maxWidth:C,className:m(t),children:l4(u9,{gap:{xs:5,md:6},children:[l4(u3,{container:!0,columnSpacing:2.5,children:[w1(u3,{size:{xs:12,sm:6},children:l4(u9,{className:"flex-col pr-[70px] xs:pr-0 h-full justify-center md:pr-[30px] sm:!pr-0 gap-2.5",children:[w1(I,{children:e}),w1("div",{className:"text-gray sm:text-12/[20px] xs:text-14",dangerouslySetInnerHTML:{__html:i}}),n||null]})}),w1(u3,{size:{xs:12,sm:6},children:w1(x,{contentful:!1,src:l?.[0]||"/images/pngs/dubai2.png",classesWrapper:"h-[350px] sm:h-[200px] w-full xs:mt-[20px]"})})]}),l4(u3,{container:!0,columnSpacing:2.5,children:[w1(u3,{size:{xs:12,sm:6},order:{xs:2,sm:1},children:w1(x,{contentful:!1,src:l?.[1]||"/images/pngs/dubai.png",classesWrapper:"w-full h-[350px] sm:h-[200px] xs:mt-[20px]"})}),w1(u3,{size:{xs:12,sm:6},order:{xs:1,sm:2},children:l4(u9,{className:"sm:!pl-0 flex-col pl-[70px] md:pl-[30px] xs:pl-0 h-full justify-center",children:[w1(I,{children:o}),w1("div",{className:"text-gray mt-[12px] sm:text-12/[20px] xs:text-14",dangerouslySetInnerHTML:{__html:s}})]})})]})]})}),Kl=zl;import{Box as Y1,Container as Ql,Typography as X4}from"@mui/material";import h9 from"@mui/material/Grid2";import{jsx as m1,jsxs as m2}from"react/jsx-runtime";function it({number:t,label:e,text:o}){return m2(Y1,{className:"flex flex-col",children:[m2(X4,{component:"span",className:"text-gold text-40 sm:text-30/[33px]",children:["0",t]}),m1(X4,{component:"span",className:"font-extrabold uppercase mt-[16px] text-16 sm:text-12/[19px] sm:mt-[6px] xs:text-14",children:e}),m1(X4,{component:"span",className:"text-gray mt-[10px] sm:text-12/[19px] xs:text-14",children:o})]})}function lt({classes:t,box:e,title:o,text:s,actionComponent:i}){return m1(Y1,{className:`bg-white py-[70px] sm:py-[40px]${m(t)}`,children:m2(Ql,{maxWidth:C,children:[m2(h9,{container:!0,columnSpacing:{xs:2.5,md:9},children:[m2(h9,{size:{sm:6,xs:12},children:[m2(Y1,{className:"flex flex-col",children:[m1(I,{className:"sm:pr-[20px]",children:o}),m1(X4,{component:"span",className:"text-gray mt-[10px] sm:text-12/[19px] xs:text-14",children:s})]}),m1(Y1,{className:"flex flex-col gap-[40px] mt-[40px] sm:mt-[20px] xs:gap-[20px]",children:e&&e.slice(0,2).map((l,n)=>m1(it,{number:l.number,text:l.text,label:l.label},n))})]}),m1(h9,{size:{sm:6,xs:12},children:m2(Y1,{className:"flex flex-col gap-[40px] relative xs:gap-[20px]",children:[m1(Y1,{className:"absolute left-[6px] top-[10px] bottom-[160px] bg-gold w-[1px] sm:hidden"}),e&&e.slice(2,5).map((l,n)=>m2(Y1,{className:"pl-[47px] relative sm:pl-0",children:[m1(Y1,{className:"absolute left-0 top-[10px] bg-gold rounded-full w-[14px] h-[14px] sm:hidden"}),m1(it,{number:l.number,text:l.text,label:l.label},n)]},n))]})})]}),m1(Y1,{className:"mt-[60px] flex justify-center",children:i||null})]})})}import{Box as nt,Container as ql,Typography as pt}from"@mui/material";import Ct from"@mui/material/Grid2";import{jsx as R2,jsxs as mt}from"react/jsx-runtime";function ct({items:t,title:e,classes:o,imageUrl:s}){return R2(nt,{sx:{backgroundImage:`url(${s||"/images/pngs/no-photo.jpg"})`},className:`w-full pt-[80px] pb-[124px] bg-cover md:py-[30px]${m(o)}`,children:mt(ql,{maxWidth:C,children:[R2("h2",{className:"!text-28 normal-case font-extrabold text-gold md:text-16",children:e}),R2(Ct,{container:!0,className:"mt-[10px]",spacing:{sm:6.75,md:3.75},children:t?.map((i,l)=>{let n=l%2===0?"gold":"simple";return R2(Ct,{size:{xs:12,md:4,sm:6},children:mt(nt,{className:`box-border h-full p-[30px] flex flex-col sm:mx-[-30px] md:pb-[20px] ${n==="gold"?"bg-gold":"border-gold border-solid border-[1px] text-gold "}`,children:[R2(x,{src:i?.imageUrl,alt:i?.text1,objectFit:"object-contain",classesWrapper:"w-[18px] h-[20px]"}),R2(pt,{component:"span",className:"text-16 font-extrabold mt-[16px]",children:i?.text1}),R2(pt,{component:"span",className:"mt-[5px]",children:i?.text2})]})},i.text1)})})]})})}import n4 from"@mui/material/Grid2";import{Box as Xl,Container as jl,Stack as j4,Typography as dt}from"@mui/material";import{jsx as c1,jsxs as p4}from"react/jsx-runtime";var Jl=({title:t,text1:e,properties:o,classes:s,actionComponent:i})=>c1(jl,{maxWidth:C,className:m(s),children:p4(n4,{container:!0,columnSpacing:{sm:5,xs:0},rowSpacing:2.5,children:[c1(n4,{size:{xs:12,sm:7.6,md:6},children:p4(j4,{gap:1,children:[c1(Z,{children:t}),c1("div",{className:"text-14 text-accent-silver-3 sm:text-12/[19px] xs:text-14",dangerouslySetInnerHTML:{__html:e}})]})}),c1(n4,{size:{xs:12,sm:4.4,md:6},children:p4(j4,{className:"float-end gap-5 items-end sm:gap-2.5 xs:mx-[calc(50%-50vw)] xs:!float-none",children:[p4(j4,{className:"bg-accent-white p-[30px] flex-row gap-4 w-full max-w-[500px] xs:max-w-[unset]",children:[c1(Xl,{className:"sm:hidden",children:c1(n9,{})}),c1(n4,{container:!0,spacing:{sm:2,xs:1},children:o.map((l,n)=>c1(n4,{size:{xs:6,sm:12,md:6},children:p4(j4,{spacing:.5,children:[c1(dt,{className:"text-16 font-extrabold sm:text-12 xs:text-16",children:l.title}),l.href?c1(h,{className:"text-14 hover:text-accent-beige sm:text-12 xs:text-14",href:l.href,children:l.desc}):c1(dt,{className:"text-14 sm:text-12",children:l.desc})]})},n))})]}),i||null]})})]})}),$l=Jl;import{Box as tn,Container as en,Stack as ft,Typography as L9}from"@mui/material";import{jsx as z1,jsxs as w9}from"react/jsx-runtime";var y9=({present:t,description:e})=>w9(tn,{className:"flex flex-col items-center",children:[z1(L9,{className:"font-extrabold text-50",children:`${t}%`}),z1(L9,{className:"text-14 mt-[-10px]",children:e})]}),on=()=>z1(en,{maxWidth:C,className:" w-[800px]",children:w9(ft,{className:"bg-white py-[50px] px-[70px] items-center gap-3",children:[z1(L9,{className:"font-extrabold text-24",children:"Payment plan"}),w9(ft,{direction:"row",gap:4,alignItems:"baseline",children:[z1(y9,{present:"20",description:"first installment"}),z1(i1,{}),z1(y9,{present:"40",description:"under construction"}),z1(i1,{}),z1(y9,{present:"40",description:"on key handover"})]})]})}),rn=on;import{Fragment as an,useState as sn}from"react";import{Box as ln,Collapse as nn,Container as pn,Table as Cn,TableBody as mn,TableCell as B9,TableContainer as cn,TableHead as dn,TableRow as b9,Typography as fn}from"@mui/material";import{jsx as R,jsxs as h3}from"react/jsx-runtime";function J4(t,e,o){return{name:t,calories:e,fat:o}}var xn=[J4("Studio with pool","from 2,521 sq. ft.","from 1,421 sq. ft."),J4("1 bedroom Apartments with pool","from 2,521 sq. ft.","from 1,421 sq. ft."),J4("2 bedroom Apartments with pool","from 10,540 sq. ft.","from 10,421 sq. ft."),J4("2 bedroom Duplex with pool","from 4,600 sq. ft.","from 1,821 sq. ft.")],$4=({children:t})=>R(B9,{className:"text-14 text-gray border-0 py-[10px] px-[20px]",children:t}),t5=t=>{let{children:e,...o}=t;return R(B9,{component:"th",className:"border-accent-silver-3 text-16",...o,children:e})},gn=()=>{let[t,e]=sn(0),{showModal:o}=q();return h3(pn,{maxWidth:C,className:"my-[50px] w-[800px] flex flex-col items-center gap-5",children:[R(fn,{className:"font-extrabold text-28",children:"Floor Plans"}),R(cn,{children:h3(Cn,{sx:{minWidth:650},"aria-label":"simple table",children:[R(dn,{className:"bg-white",children:h3(b9,{children:[R($4,{children:"Type"}),R($4,{children:"Total area"}),R($4,{children:"Living area"}),R($4,{})]})}),R(mn,{children:xn.map((s,i)=>h3(an,{children:[h3(b9,{className:"cursor-pointer",onClick:()=>e(i),sx:{"& th":{borderWidth:t===i?0:1},"&:last-child td, &:last-child th":{border:0}},children:[R(t5,{sx:{fontWeight:t===i?800:400},children:s.name}),R(t5,{children:s.calories}),R(t5,{children:s.fat}),R(t5,{children:R(x1,{"aria-label":"expand row",size:"small",children:t!==i?R(b1,{style:{transform:"scale(0.7)"}}):null})})]}),R(b9,{children:R(B9,{className:`${t===i?"border-accent-dark border-b-[3px]":"border-0"}`,style:{paddingBottom:0,paddingTop:0},colSpan:4,children:R(nn,{in:t===i,timeout:"auto",unmountOnExit:!0,children:h3(ln,{className:"flex flex-col items-end pb-8",children:[R(x,{src:"/pngs/top-view-house.png",classesWrapper:"w-full h-[275px]",objectFit:"object-contain",contentful:!1}),R(E,{title:"Ask for price",onClick:()=>o("GENERAL")})]})})})})]},i))})]})})]})},un=gn;import{Box as hn,Container as yn}from"@mui/material";import{jsx as v9,jsxs as bn}from"react/jsx-runtime";var Ln=({src:t,tags:e,classes:o})=>bn(hn,{className:`relative flex justify-center${m(o)}`,children:[v9(x,{contentful:!1,src:t,alt:"img",classesWrapper:"overflow-hidden h-[480px] w-screen sm:h-[274px] xs:h-[200px]",sizes:"1401px"}),e?v9(yn,{maxWidth:C,className:"absolute bottom-0 flex gap-3 flex-row py-10",children:e.map(s=>v9(S3,{view:"accent",label:s},s))}):null]}),wn=Ln;import{Box as Bn}from"@mui/material";import{jsx as k9,jsxs as Hn}from"react/jsx-runtime";var vn=({classes:t,title:e,images:o})=>Hn(Bn,{className:m(t),children:[k9(I,{className:"mb-[20px] sm:mb-[16px] block w-fit mx-auto",children:e}),k9(n1,{dots:!1,preLoaded:2,options:{slides:{origin:"center",perView:2,spacing:15},loop:!0},children:o&&o.map((s,i)=>k9(x,{src:s,classesWrapper:"w-full h-[440px] sm:h-[300px] xs:h-[186px]",objectFit:"object-cover",contentful:!1},i))})]}),kn=vn;import{Box as xt,Stack as gt,Typography as Mn}from"@mui/material";import{useTranslations as Nn}from"next-intl";import In from"@mui/material/Avatar";import{jsx as C4,jsxs as H9}from"react/jsx-runtime";var _n=({classes:t,actionComponent:e})=>{let o=Nn();return H9(xt,{className:X("px-[60px] py-[30px] relative flex flex-row gap-8 sm:pb-[45px] xs:flex-col xs:p-[35px]",t),children:[C4(xt,{className:"absolute inset-0 bg-custom-gradient z-10 xs:bg-custom-gradient-bottom"}),C4(In,{src:"/pngs/person2.png",className:"h-[220px] w-[220px] z-20 bg-accent-white sm:h-[160px] sm:w-[160px] xs:h-[219px] xs:w-[219px] xs:mx-auto"}),C4(x,{src:"/pngs/back-dubai-contact.png",classesWrapper:"!absolute right-0 bottom-0 w-[60%] h-full xs:left-0 xs:w-full",contentful:!1}),H9(gt,{className:"z-20 gap-5 justify-center sm:gap-2.5 sm:justify-start sm:pt-[15px]",children:[H9(gt,{className:"gap-3 sm:gap-1.5 xs:gap-1",children:[C4(R1,{className:"text-accent-white w-[335px] xs:w-full",children:o("Our Specialist is Here to Assist You")}),C4(Mn,{className:"text-16 text-accent-white font-extrabold xs:text-14",children:o("Feel Free to Reach Out Anytime\u2014We're Available 24/7")})]}),e||null]})]})},Tn=_n;import{Container as An}from"@mui/material";import{useTranslations as Sn}from"next-intl";import e5 from"@mui/material/Grid2";import{Fragment as En,jsx as m4,jsxs as M9}from"react/jsx-runtime";function ut({title:t,areas:e,classes:o,href:s,children:i}){let l=Sn();return M9(An,{maxWidth:C,className:m(o),children:[t&&m4(Z,{children:l(t)}),M9(e5,{container:!0,columnSpacing:{md:3,sm:2.5,xs:0},rowSpacing:{md:4,sm:2.5,xs:3},className:"mt-[20px] md:!mt-[15px]",children:[e?.map((n,p)=>M9(En,{children:[m4(e5,{size:{md:4,xs:12,sm:6},children:m4(Y3,{whiteBottom:!0,title:n?.title,price:n?.price,imageUrl:n?.imageUrl,slug:n?.slug,href:s})},n?.slug),p+1===6?m4(e5,{size:12,children:i},`contact-block-${p}`):null]})),e&&e?.length<6?m4(e5,{size:12,children:i},"contact-block-end"):null]})]})}import{Box as Vn,Container as Rn}from"@mui/material";import ht from"@mui/material/Grid2";import{jsx as c4}from"react/jsx-runtime";function yt({classes:t,href:e,newProjects:o}){return c4(Rn,{maxWidth:C,className:m(t),children:o?.length?c4(ht,{container:!0,spacing:3,children:o?.map((s,i)=>c4(ht,{size:{md:4,xs:12},children:c4(F3,{slug:s.slug,imgSrc:s.imgSrc,title:s.title,address:s.address,price:s.price,developer:s.developer,houseTypes:s.houseTypes,href:e})},i))}):c4(Vn,{children:"No new projects"})})}import{Box as Un,Container as Pn}from"@mui/material";import{useTranslations as Wn}from"next-intl";import{Children as G2,useEffect as Lt,useRef as Gn,useState as wt}from"react";import{useKeenSlider as On}from"keen-slider/react";import{Box as bt,Stack as Bt}from"@mui/material";import{jsx as A1,jsxs as o5}from"react/jsx-runtime";function O2({children:t,slides:e=3,spacing:o=24,title:s,linkComponent:i,options:l,dots:n=!0,preLoaded:p}){let[c,g]=wt(0),[y,w]=wt([]),B=Gn([]);Lt(()=>{B.current=y},[y]);let b=1,[v,M]=On({slideChanged(H){let k=H.track.details.rel,G=p?k:k-(e-b)!==G2.count(t)?k+(e-b):k,Q1=G2.count(t),h2=[...B.current];h2[G]=!0,G>0&&(h2[G-b]=!0),G<Q1-b&&(h2[G+b]=!0),g(G),w(h2)},...l||{slides:{perView:e,spacing:o},mode:"snap"}});return Lt(()=>{let H=G2.count(t),k=Array(H).fill(!1);if(p){for(let G=0;G<p;G++)k[G]=!0;k[H-b]=!0}else for(let G=0;G<e;G++)k[G]=!0;w(k)},[e]),o5(Bt,{children:[s?o5(Bt,{justifyContent:"space-between",alignItems:"center",direction:"row",className:"mb-[20px] sm:mb-[10px]",children:[A1(I,{children:s}),o5(bt,{className:"flex gap-[26px] items-center flex-row",children:[i||null,o5(bt,{className:"flex gap-[10px] items-center",children:[A1(x1,{isblack:"true",className:"p-0",onClick:H=>{H.preventDefault(),M.current?.prev()},children:A1(V1,{style:{transform:"scale(0.5) "}})}),A1(x1,{isblack:"true",className:"p-0",onClick:H=>{H.preventDefault(),M.current?.next()},children:A1(V1,{style:{transform:"scale(0.5) rotate(180deg)"}})})]})]})]}):null,A1("div",{children:A1("div",{ref:v,className:"keen-slider",children:G2.map(t,(H,k)=>A1("div",{className:"keen-slider__slide",children:y[k]?H:null}))})}),n&&M.current&&G2.count(t)>e?A1("div",{className:"flex justify-center gap-[16px] mt-[30px] md:mt-[20px]",children:Array.from({length:Math.ceil(G2.count(t)/e)}).map((H,k)=>A1("div",{onClick:()=>{if(!M.current)return;let G=Math.min(k*e,G2.count(t)-e);M.current.moveToIdx(G)},className:"dot-slider"+(c>=k*e&&c<(k+1)*e?" dot-slider_active":"")},k))}):null]})}import{Fragment as Dn,jsx as c2,jsxs as Fn}from"react/jsx-runtime";function vt({classes:t,projects:e,title:o,href:s}){let i=Wn(),{xs:l,md:n}=S();return e?.length?Fn(Pn,{maxWidth:C,className:m(t),children:[c2(O2,{slides:l?1:n?2:3,dots:!1,linkComponent:l?null:c2(h,{href:s,children:c2(l1,{border:!0,children:i("All Projects")})}),title:i(o),children:e.map((p,c)=>c2(F3,{slug:p.slug,imgSrc:p.imgSrc,title:p.title,address:p.address,price:p.price,developer:p.developer,houseTypes:p.houseTypes,href:p.href},c))}),l?c2(Un,{className:"flex my-3.5 justify-center",children:c2(h,{href:s,children:c2(l1,{border:!0,children:i("All Projects")})})}):null]}):c2(Dn,{})}import{Box as Zn,Container as Yn}from"@mui/material";import{useTranslations as zn}from"next-intl";import{Fragment as Kn,jsx as d2,jsxs as Qn}from"react/jsx-runtime";function kt({classes:t,areas:e,title:o,href:s}){let i=zn(),{xs:l}=S();return e?.length?Qn(Yn,{maxWidth:C,className:m(t),children:[d2(O2,{slides:l?1:3,dots:!1,linkComponent:l?null:d2(h,{href:s,children:d2(l1,{border:!0,children:i("All Areas")})}),title:i(o),children:e.map((n,p)=>d2(Y3,{title:n?.title,price:n?.price,imageUrl:n?.imageUrl,slug:n?.slug,href:s},p))}),l?d2(Zn,{className:"flex my-3.5 justify-center",children:d2(h,{href:s,children:d2(l1,{border:!0,children:i("All Areas")})})}):null]}):d2(Kn,{})}import{Box as jn,Container as Jn}from"@mui/material";import{Box as qn}from"@mui/material";import Ht from"@mui/material/Typography";import{useTranslations as Xn}from"next-intl";import{jsx as N9,jsxs as Mt}from"react/jsx-runtime";function d4({classes:t,slug:e,price:o,title:s,img:i,href:l}){let n=Xn();return Mt(h,{href:l+"/"+e,className:`flex flex-col bg-white noHover${m(t)}`,children:[N9(x,{contentful:!1,src:i,classesWrapper:"h-[160px] border-b-[1px] border-gold",objectFit:"object-contain",objectPosition:"object-bottom"}),Mt(qn,{className:"flex flex-col pt-[20px] pb-[30px] justify-center text-center",children:[N9(Ht,{component:"span",className:"text-18 font-extrabold sm:text-16",children:s}),N9(Ht,{component:"span",className:"text-12 text-gray mt-[5px] sm:mt-0",children:`${n("Price from")}: ${f1(Number(o))}`})]})]})}import{useTranslations as $n}from"next-intl";import{Fragment as tp,jsx as f2,jsxs as ep}from"react/jsx-runtime";function Nt({classes:t,developers:e,title:o,href:s}){let i=$n(),{md:l,xs:n}=S();return e?.length?ep(Jn,{maxWidth:C,className:m(t),children:[f2(O2,{slides:n?1:l?2:3,dots:!1,linkComponent:n?null:f2(h,{href:s,children:f2(l1,{border:!0,children:i("All Developers")})}),title:i(o),children:e.map((p,c)=>f2(d4,{title:p.title,price:p.price,slug:p.slug,img:p.img,href:s},c))}),n?f2(jn,{className:"flex my-3.5 justify-center",children:f2(h,{href:s,children:f2(l1,{border:!0,children:i("All Developers")})})}):null]}):f2(tp,{})}import{Container as op}from"@mui/material";import{useTranslations as rp}from"next-intl";import r5 from"@mui/material/Grid2";import{Fragment as ap,jsx as f4,jsxs as I9}from"react/jsx-runtime";function It({title:t,devs:e,classes:o,href:s,children:i}){let l=rp();return I9(op,{maxWidth:C,className:m(o),children:[t&&f4(Z,{children:l(t)}),I9(r5,{container:!0,columnSpacing:{md:3,sm:2.5,xs:0},rowSpacing:{md:4,sm:2.5,xs:3},className:"mt-[20px] md:!mt-[15px]",children:[e?.map((n,p)=>I9(ap,{children:[f4(r5,{size:{md:4,xs:12,sm:6},children:f4(d4,{title:n.title,price:n.text,slug:n.slug,img:n.img,href:s})},n?.slug),p+1===6?f4(r5,{size:12,children:i},`contact-block-${p}`):null]})),e&&e?.length<6?f4(r5,{size:12,children:i},"contact-block-end"):null]})]})}import{Box as _9,Container as sp}from"@mui/material";import{useTranslations as ip}from"next-intl";import{jsx as U2,jsxs as T9}from"react/jsx-runtime";function _t({title:t,services:e,classes:o,href:s,totalServices:i}){let l=ip();return console.log("totalServices",i),T9(sp,{maxWidth:C,className:m(o),children:[t?U2(Z,{children:l(t)}):null,U2(_9,{className:"mt-[20px] xs:mt-[10px] flex flex-col gap-y-[65px] sm:gap-y-[40px]",children:e?.map((n,p)=>(console.log("idx",p),T9(_9,{className:"grid grid-cols-2 gap-x-[20px] xs:grid-cols-1 xs:gap-y-[20px]",children:[T9(_9,{className:`justify-center flex flex-col gap-y-3 ${p%2===0?"order-1 pr-[50px] sm:pr-[20px]":"order-2 pl-[50px] sm:pl-[20px]"} xs:!order-1 xs:p-0`,children:[U2(I,{children:n.title}),U2("span",{className:"sm:text-12/[19px] xs:text-14",children:n.text}),U2(J,{title:l("Show more"),icon:U2(i1,{}),href:`${s}/${n.slug}`,color:"dark"})]}),U2(x,{src:n.imageUrl,classesWrapper:`w-full h-[348px] sm:h-[194px] ${p%2===0?"order-2":"order-1"} xs:!order-2`,objectFit:"object-cover"})]},n?.slug)))})]})}import{Box as A9,Container as lp}from"@mui/material";import{jsx as a5,jsxs as Tt}from"react/jsx-runtime";function At({classes:t,imgBanner:e,imgLogo:o}){return Tt(A9,{className:`${m(t)} h-[480px] sm:h-[274px] xs:h-[200px] relative`,children:[a5(x,{contentful:!1,src:e,classesWrapper:"absolute h-full w-full left-0 top-0 z-[1] overflow-hidden h-[480px] w-screen sm:h-[274px] xs:h-[200px]"}),a5(lp,{maxWidth:C,className:"absolute bottom-0 left-0 right-0 mx-auto h-[160px] sm:h-[82px]",children:Tt(A9,{className:"h-full w-[179px] relative py-[20px] px-[35px] sm:w-[92px] sm:p-[10px]",children:[a5(A9,{className:"bg-white h-full w-full absolute left-0 top-0 z-[2] opacity-[0.9]"}),a5(x,{contentful:!1,src:o,classesWrapper:"h-full w-full z-[3]",objectFit:"object-contain"})]})})]})}import{Box as x2,Container as np}from"@mui/material";import S9 from"@mui/material/Grid2";import P2 from"@mui/material/Typography";import{useTranslations as pp}from"next-intl";import{jsx as j,jsxs as K1}from"react/jsx-runtime";function St({classes:t,block:e,text:o,title:s}){let i=pp(),{showModal:l}=q();return j(np,{maxWidth:C,className:m(t),children:K1(S9,{container:!0,columnSpacing:13,children:[j(S9,{size:{md:6,xs:12},children:K1(x2,{className:"flex flex-col",children:[j(P2,{component:"h1",className:"text-32 font-extrabold",children:s}),j("div",{className:"mt-[10px] text-gray",dangerouslySetInnerHTML:{__html:o}}),j(J,{title:i("Show more"),icon:j(b1,{}),href:"/",classes:"mt-[20px]",color:"dark"})]})}),j(S9,{size:{md:6,xs:12},children:e&&K1(x2,{className:"flex flex-col gap-[20px]",children:[K1(x2,{className:"bg-white p-[30px] flex flex-col gap-[8px]",children:[K1(x2,{className:"flex gap-[200px]",children:[K1(x2,{className:"flex gap-[14px]",children:[j(U5,{}),K1(x2,{className:"flex flex-col",children:[j(P2,{component:"span",className:"font-extrabold text-16",children:i("Projects")}),j(P2,{component:"span",children:e.projects})]})]}),K1(x2,{className:"flex flex-col",children:[j(P2,{component:"span",className:"font-extrabold text-16",children:i("Price from")}),j(P2,{component:"span",children:f1(Number(e.priceFrom))})]})]}),K1(x2,{className:"flex flex-col pl-[38px]",children:[j(P2,{component:"span",className:"font-extrabold text-16",children:i("Construction began")}),j(P2,{component:"span",children:e.begin})]})]}),j(E,{title:i("Consult with Expert"),classes:"self-end",onClick:()=>l("GENERAL")})]})})]})})}import{Container as Cp}from"@mui/material";import E9 from"@mui/material/Grid2";import{jsx as s5,jsxs as dp}from"react/jsx-runtime";var mp=t=>{let{classes:e,imgSrc:o,children:s}=t;return s5(Cp,{maxWidth:C,className:m(e),children:dp(E9,{container:!0,columnSpacing:9,children:[s5(E9,{size:{xs:12,md:6},children:s5(x,{contentful:!1,src:o,classesWrapper:"h-[350px]"})}),s5(E9,{size:{xs:12,md:6},children:s})]})})},cp=mp;import{Box as C5,Container as pC}from"@mui/material";import{useLocale as CC,useTranslations as mC}from"next-intl";import{Box as O9,Drawer as Bp,IconButton as Et}from"@mui/material";import{useState as vp}from"react";import{jsx as i5}from"react/jsx-runtime";var fp=({classes:t,small:e=!1,locale:o,homePage:s})=>{let i=()=>{let l=e?"transform scale-[0.68] absolute left-[-14px] top-[-9px]":"md:transform md:scale-[0.68] md:absolute md:left-[-14px] md:top-[-9px]";switch(o){case"ru":return i5(_5,{className:l});case"en":return i5(L5,{className:l});default:return i5(H5,{className:l})}};return i5(h,{href:s,className:`flex ${e?"relative w-[85px] h-[40px] block":"md:relative md:w-[85px] md:h-[40px] md:block"}${m(t)}`,children:i()})},W2=fp;import{useLocale as xp}from"next-intl";import{jsx as l5}from"react/jsx-runtime";var gp=({classes:t})=>{let e=xp(),o=()=>{switch(e){case"ru":return l5(M3,{});case"en":return l5(M3,{});default:return l5(M3,{})}};return l5(h,{href:L.HOME.path,className:`${t||""}`,children:o()})},V9=gp;import{styled as up}from"@mui/material/styles";import hp from"@mui/material/ToggleButton";import{useLocale as yp}from"next-intl";import Lp from"@mui/material/ToggleButtonGroup";import{jsx as R9}from"react/jsx-runtime";var wp=up(hp)(()=>({"&.Mui-selected, &.Mui-selected:hover":{backgroundColor:"white !important",color:"#C8BCA1 !important"}})),bp=({locales:t,defLocale:e})=>{let o=yp(),s=J1(),{slugs:i,hrefPrefix:l}=e2();return R9(Lp,{value:o,exclusive:!0,"aria-label":"language toggle",className:"flex flex-row gap-3",children:t.map(n=>R9(h,{style:n.locale===o?{fontWeight:"bold"}:{},href:`${i?`${l}${i[`slug_${n.locale}`]}`:s}`,as:`${n.locale!==e?`/${n.locale}`:""}${i?`${l}${i[`slug_${n.locale}`]}`:s}`,locale:n.locale,children:R9(wp,{value:n.locale,"aria-label":n.locale,className:"rounded-none !border-white min-w-10 py-1 px-5 uppercase text-accent-white",children:n.label})},n.locale))})},G9=bp;import{Fragment as kp,jsx as S1,jsxs as U9}from"react/jsx-runtime";function n5({menuItems:t,mainPhone:e,locales:o,site:s,homePage:i,children:l}){let[n,p]=vp(!1),c=g=>y=>{y.type==="keydown"&&(y.key==="Tab"||y.key==="Shift")||p(g)};return U9(kp,{children:[S1(Et,{className:"hidden md:block md:h-[40px]",onClick:c(!0),children:S1(B5,{})}),S1(Bp,{anchor:"right",open:n,onClose:c(!1),children:U9(O9,{className:"w-[500px] h-full bg-gold-gradient px-[30px] pb-[30px] pt-[20px] text-14 text-white sm:w-[320px]",role:"presentation",onClick:c(!1),onKeyDown:c(!1),children:[U9(O9,{className:"flex items-center justify-between mb-5",children:[S1(V9,{}),S1(Et,{onClick:c(!1),children:S1(v5,{})})]}),S1(G9,{locales:o,homePage:i,defLocale:"en"}),S1(O9,{className:"mt-[30px] flex flex-col gap-[20px]",children:t.map(g=>S1(h,{href:g.path,className:"hover:text-white",children:g.title},g.title))}),S1(N,{data:e,type:"tel",title:F(s,e),classes:"hover:text-white font-extrabold mt-[30px] block mb-[18px]"}),l]})})]})}import{Stack as Hp,styled as Mp,Switch as Np,Typography as Vt}from"@mui/material";import{jsx as P9,jsxs as Ap}from"react/jsx-runtime";var Ip=Mp(Np)(({theme:t})=>({width:60,height:30,padding:0,display:"flex","&:active":{"& .MuiSwitch-thumb":{width:20},"& .MuiSwitch-switchBase.Mui-checked":{transform:"translateX(12px)"}},"& .MuiSwitch-switchBase":{padding:5.1,color:"#C8BCA1",transform:"translateX(2px)","&.Mui-checked":{transform:"translateX(30px)",color:"#C8BCA1","& + .MuiSwitch-track":{opacity:1,backgroundColor:"#343434"}}},"& .MuiSwitch-thumb":{width:20,height:20,borderRadius:"100%",transition:t.transitions.create(["width"],{duration:200})},"& .MuiSwitch-track":{borderRadius:"22px",opacity:1,backgroundColor:"#343434",boxSizing:"border-box"}})),_p=t=>{let{beforeText:e,afterText:o,...s}=t;return Ap(Hp,{direction:"row",spacing:1,alignItems:"center",children:[e?P9(Vt,{className:"text-base",children:e}):null,P9(Ip,{defaultChecked:!0,...s,disableRipple:!0}),o?P9(Vt,{className:"text-base",children:o}):null]})},Tp=_p;import{Box as zp}from"@mui/material";import{useLocale as Kp}from"next-intl";import{useState as Rt,isValidElement as Gt,cloneElement as W9,useEffect as Sp}from"react";import{Box as D9,ClickAwayListener as Ep,Paper as Vp,Typography as Ot,Button as Rp}from"@mui/material";import{jsx as y3,jsxs as x4}from"react/jsx-runtime";var Gp=({children:t,placeholder:e,childTitle:o,colorBorder:s=!1,clickComponent:i,fullContainerWidth:l=!1,overButton:n=!1,small:p=!1,fullWidth:c=!1,freeChildWidth:g=!1,btnStyles:y,btnStartIcon:w,whiteArrow:B=!1,intermediateChild:b,actionsComponent:v,childContainerSx:M,paperSx:H,openUp:k,disableCloseButton:G=!1,startIcon:Q1,controlled:h2})=>{let[q1,c5]=Rt(null),[X1,d5]=Rt(!1),X9=y4=>{y4.persist(),h2||d5(!X1),X1?setTimeout(()=>{c5(null)},200):c5(y4.currentTarget)};Sp(()=>{h2&&d5(!!k)},[k]);let b3=()=>{d5(!1),setTimeout(()=>{c5(null)},200)},se=Gt(t)?W9(t,{collapseParent:b3}):t,ie=Gt(v)?W9(v,{collapseParent:b3}):v;return y3(Ep,{onClickAway:b3,children:x4(D9,{width:c?"100%":"inherit",children:[i?W9(i,{ref:q1,onClick:X9,onClose:b3,collapse:X1?"true":void 0}):x4(Rp,{ref:q1,"aria-controls":X1?"basic-menu":void 0,"aria-haspopup":"true","aria-expanded":X1?"true":void 0,onClick:X9,disableRipple:!0,fullWidth:!0,sx:{height:p?"34px":"38px",padding:p?"0 10px 0 6px":"0 20px 0 19px"},className:`border rounded-none border-solid normal-case text-accent-dark hover:bg-white ${s?"border-accent-beige flex-row-reverse justify-end gap-x-2":"justify-between border-accent-dark"} ${y||""} ${X1?"bg-white border-transparent":"border-accent-dark"}`,startIcon:Q1,children:[x4(D9,{className:"flex flex-row gap-1 items-center w-[90%]",children:[w,y3(Ot,{style:{top:"1px"},className:"text-sm truncate relative text-left",children:e})]}),s?null:y3(s4,{style:{filter:B?"brightness(0) saturate(100%) invert(99%) sepia(75%) saturate(2%) hue-rotate(28deg) brightness(111%) contrast(100%)":"none",transform:X1?" scaleY(-1) rotateX(180deg)":"scaleY(1) rotateX(180deg)",transition:"0.3s ease-in-out"}})]}),q1?x4(Vp,{sx:y4=>({position:"absolute",minWidth:q1.offsetWidth,width:g?"fit-content":!l&&q1?q1.offsetWidth:"100%",left:l?0:"initial",right:l?0:"initial",top:n?0:"initial",[y4.breakpoints.up("md")]:{width:g?"fit-content":!l&&q1?q1.offsetWidth:"115%"},...H}),className:`transform ${X1?"animate-selectOpen":"animate-selectClose"} transition-none z-50 rounded-none shadow-sm ${b?"mt-[1px]":"m-0"}`,children:[b||null,x4(D9,{className:"flex flex-col py-3 px-4 gap-2 shadow-sm",sx:M,children:[!G&&n?y3(x1,{className:"bg-accent-silver p-1 self-end absolute",onClick:b3,children:y3(k2,{})}):null,o?y3(Ot,{className:"text-sm font-normal text-accent-silver-2",children:o}):null,se,ie]})]}):null]})})},Op=Gp;import{useState as Ut,isValidElement as Up,cloneElement as Pp}from"react";import{Box as Pt,ClickAwayListener as Wp,Paper as Dp,Typography as Fp,Button as Zp}from"@mui/material";import{jsx as g4,jsxs as Wt}from"react/jsx-runtime";var Yp=({children:t,placeholder:e,fullContainerWidth:o=!1,overButton:s=!1,small:i=!1,upperCase:l=!1,bold:n=!1})=>{let[p,c]=Ut(null),[g,y]=Ut(!1),w=v=>{v.persist(),g?setTimeout(()=>{c(null)},200):c(v.currentTarget),y(!g)},B=()=>{y(!1),c(null)},b=Up(t)?Pp(t,{collapseParent:B}):t;return g4(Wp,{onClickAway:B,children:Wt(Pt,{onMouseLeave:B,className:"relative",children:[Wt(Zp,{onMouseEnter:w,ref:p,"aria-controls":g?"basic-menu":void 0,"aria-haspopup":"true","aria-expanded":g?"true":void 0,onClick:w,disableRipple:!0,fullWidth:!0,sx:{height:i?"34px":"38px",padding:1},className:`rounded-none text-accent-dark hover:bg-white ${g?" bg-white":""} justify-between border-accent-dark gap-x-1 ${l?"upper-case":"normal-case"} `,children:[g4(Fp,{className:`text-sm leading-4 ${n?"font-bold":"font-normal"}`,children:`${e}`}),g4(s4,{style:{transform:g?"scaleY(1)":"scaleY(-1)",transition:"0.3s ease-in-out"}})]}),p?g4(Dp,{sx:{boxShadow:"none",position:"absolute",minWidth:p.offsetWidth,left:o?0:"initial",right:0,top:s?0:"initial"},className:"z-50 rounded-none",children:g4(Pt,{className:"flex flex-col p-3 gap-3",children:b})}):null]})})},F9=Yp;import{jsx as Z9}from"react/jsx-runtime";var Qp=({locales:t,homePage:e,defLocale:o})=>{let s=Kp(),i=J1(),{slugs:l,hrefPrefix:n}=e2();return Z9(zp,{className:d1(i,e)?"homeLocaleSwitcher":"",children:Z9(F9,{placeholder:s,upperCase:!0,children:t.map(p=>Z9(h,{className:"uppercase",style:p.locale===s?{fontWeight:"bold"}:{},href:`${l?`${n}${l[`slug_${p.locale}`]}`:i}`,as:`${p.locale!==o?`/${p.locale}`:""}${l?`${n}${l[`slug_${p.locale}`]}`:i}`,locale:p.locale,children:p.label},p.locale))})})},Y9=Qp;import aC from"@mui/material/ToggleButtonGroup";import"react";import{jsx as p5,jsxs as Xp}from"react/jsx-runtime";var qp=t=>Xp("svg",{width:18,height:18,viewBox:"0 0 18 18",fill:"none",xmlns:"http://www.w3.org/2000/svg",...t,children:[p5("path",{d:"M1 2C1 1.73478 1.10536 1.48043 1.29289 1.29289C1.48043 1.10536 1.73478 1 2 1H6C6.26522 1 6.51957 1.10536 6.70711 1.29289C6.89464 1.48043 7 1.73478 7 2V6C7 6.26522 6.89464 6.51957 6.70711 6.70711C6.51957 6.89464 6.26522 7 6 7H2C1.73478 7 1.48043 6.89464 1.29289 6.70711C1.10536 6.51957 1 6.26522 1 6V2Z",stroke:"#343434",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"}),p5("path",{d:"M11 2C11 1.73478 11.1054 1.48043 11.2929 1.29289C11.4804 1.10536 11.7348 1 12 1H16C16.2652 1 16.5196 1.10536 16.7071 1.29289C16.8946 1.48043 17 1.73478 17 2V6C17 6.26522 16.8946 6.51957 16.7071 6.70711C16.5196 6.89464 16.2652 7 16 7H12C11.7348 7 11.4804 6.89464 11.2929 6.70711C11.1054 6.51957 11 6.26522 11 6V2Z",stroke:"#343434",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"}),p5("path",{d:"M1 12C1 11.7348 1.10536 11.4804 1.29289 11.2929C1.48043 11.1054 1.73478 11 2 11H6C6.26522 11 6.51957 11.1054 6.70711 11.2929C6.89464 11.4804 7 11.7348 7 12V16C7 16.2652 6.89464 16.5196 6.70711 16.7071C6.51957 16.8946 6.26522 17 6 17H2C1.73478 17 1.48043 16.8946 1.29289 16.7071C1.10536 16.5196 1 16.2652 1 16V12Z",stroke:"#343434",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"}),p5("path",{d:"M11 12C11 11.7348 11.1054 11.4804 11.2929 11.2929C11.4804 11.1054 11.7348 11 12 11H16C16.2652 11 16.5196 11.1054 16.7071 11.2929C16.8946 11.4804 17 11.7348 17 12V16C17 16.2652 16.8946 16.5196 16.7071 16.7071C16.5196 16.8946 16.2652 17 16 17H12C11.7348 17 11.4804 16.8946 11.2929 16.7071C11.1054 16.5196 11 16.2652 11 16V12Z",stroke:"#343434",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"})]}),Dt=qp;import"react";import{jsx as Ft}from"react/jsx-runtime";var jp=t=>Ft("svg",{width:21,height:20,viewBox:"0 0 21 20",fill:"none",xmlns:"http://www.w3.org/2000/svg",...t,children:Ft("path",{d:"M9 15L7 14M7 14L1 17V4L7 1M7 14V1M7 1L13 4M13 4L19 1V8.5M13 4V9M18.1992 17.1992L19.9992 18.9992M13 15C13 15.7956 13.3161 16.5587 13.8787 17.1213C14.4413 17.6839 15.2044 18 16 18C16.7956 18 17.5587 17.6839 18.1213 17.1213C18.6839 16.5587 19 15.7956 19 15C19 14.2044 18.6839 13.4413 18.1213 12.8787C17.5587 12.3161 16.7956 12 16 12C15.2044 12 14.4413 12.3161 13.8787 12.8787C13.3161 13.4413 13 14.2044 13 15Z",stroke:"#343434",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"})}),Zt=jp;import{useFormContext as sC}from"react-hook-form";import{useState as Jp}from"react";import{styled as $p}from"@mui/material";import tC from"@mui/material/ToggleButton";import{jsx as Yt}from"react/jsx-runtime";var eC=$p(tC)(()=>({"&.Mui-selected, &.Mui-selected:hover":{backgroundColor:"inherit !important"}})),oC=t=>{let{value:e,selected:o,IconComponent:s}=t,[i,l]=Jp(!1);function n(p){l(p)}return Yt(eC,{disableRipple:!0,className:"border-none normal-case p-0",value:e,onMouseEnter:()=>n(!0),onMouseLeave:()=>n(!1),children:Yt(s,{style:{transition:"transform 0.3s ease",filter:o||i?"brightness(0) saturate(100%) invert(61%) sepia(30%) saturate(334%) hue-rotate(4deg) brightness(90%) contrast(85%)":"unset"}})})},z9=oC;import{jsx as zt,jsxs as nC}from"react/jsx-runtime";var iC=()=>{let{setValue:t,watch:e}=sC(),o=e("view")||"card";return nC(aC,{value:o,exclusive:!0,onChange:(i,l)=>{l!==null&&t("view",l)},"aria-label":"catalog view",className:"gap-3 ml-5",children:[zt(z9,{value:"card",selected:o==="card",IconComponent:Dt}),zt(z9,{value:"map",selected:o==="map",IconComponent:Zt})]})},lC=iC;import{jsx as E1,jsxs as K9}from"react/jsx-runtime";function Kt({menuItems:t,mainPhone:e,locales:o,site:s,homePage:i,whatsUp:l,defLocale:n,children:p}){let c=J1(),g=CC(),y=mC();return E1(C5,{component:"header",className:`z-[100]${d1(c,i)?" absolute w-full":""}`,children:K9(pC,{maxWidth:"lg",className:"flex justify-between items-center py-[24px] md:py-[20px]",children:[E1(W2,{locale:g,classes:"self-end",homePage:i}),K9(C5,{className:"flex flex-col gap-5 md:hidden",children:[K9(C5,{className:"flex gap-[30px] justify-end items-center",children:[e&&E1(N,{data:F(s,e),type:"tel",title:F(s,e),blank:!1,classes:d1(c,i)?"text-white hover:text-gold":""}),l&&E1(N,{type:"whatsapp",title:d1(c,i)?E1(k3,{}):E1(S5,{}),data:e,classes:`flex ${d1(c,i)?"hover:filter-gold":"hover:filter-gold2"}`}),p,E1(Y9,{locales:o,homePage:i,defLocale:n})]}),E1(C5,{className:"flex gap-[30px]",children:t.map(w=>E1(h,{href:w.path,className:`
7
7
  uppercase font-extrabold text-11${c===w.path?" text-gold2":""}
8
8
  ${d1(c,i)?" text-white hover:text-gold":""}
9
- `,children:y(w.title)},w.title))})]}),E1(n5,{locales:o,menuItems:t,mainPhone:e,site:s,homePage:i,defLocale:n,children:p})]})})}import{memo as cC}from"react";import{jsx as xC}from"react/jsx-runtime";var dC=t=>{let{md:e}=S(),o=J1(),{onClick:s,title:i,homePage:l}=t;return xC(E,{title:i,onClick:s,classes:e||d1(o,l)?"hover:bg-gold hover:text-white px-[30px]":"",view:d1(o,l)||e?"transparent":"dark"})},fC=cC(dC);import{Box as L3,Container as gC,Typography as uC}from"@mui/material";import D2 from"@mui/material/Grid2";import{useLocale as hC,useTranslations as yC}from"next-intl";import{jsx as W,jsxs as u4}from"react/jsx-runtime";function Qt({instagram:t,facebook:e,youtube:o,linkedIn:s,menuItems:i,mainPhone:l,site:n,homePage:p}){let c=hC(),g=yC();return W(L3,{component:"footer",className:"bg-white pt-[60px] pb-[45px] md:pt-[40px] md:pb-[45px] sm:!pt-[33px] sm:!pb-[30px]",children:u4(gC,{maxWidth:C,children:[u4(D2,{container:!0,columnSpacing:{md:3.5,xs:2.5},rowSpacing:{sm:0,xs:2.5},children:[W(D2,{size:{sm:3,xs:12},children:u4(L3,{className:"flex flex-col",children:[W(W2,{small:!0,locale:c,homePage:p}),W(f3,{facebook:e,youtube:o,linkedIn:s,instagram:t,classes:"mt-[22px] md:mt-[12px] md:gap-[9px] sm:hidden"}),W(N,{data:l,type:"tel",title:F(n,l),classes:"mt-[12px] md:hidden text-12"})]})}),W(D2,{size:{sm:3,xs:6},children:W(L3,{className:"flex flex-col gap-[7px] text-12 !leading-[21px]",children:i.slice(0,4).map(y=>W(h,{href:y.path,children:g(y.title)},y.title))})}),W(D2,{size:{sm:3,xs:6},children:W(L3,{className:"flex flex-col gap-[7px] text-12 !leading-[21px]",children:i.slice(4,8).map(y=>W(h,{href:y.path,children:g(y.title)},y.title))})}),W(D2,{size:6,className:"hidden sm:block",children:W(N,{data:l,type:"tel",title:F(n,l),classes:"text-12"})}),W(D2,{size:6,className:"hidden sm:block",children:W(f3,{facebook:e,youtube:o,linkedIn:s,instagram:t,classes:"xs:gap-[5px]"})}),W(D2,{size:{sm:3,xs:12},children:u4(L3,{className:"flex flex-col gap-[35px] items-end md:gap-[0px] sm:items-start sm:gap-[20px]",children:[W(E,{title:g("Write to us"),classes:"!w-[200px]"}),W(N,{data:l,type:"tel",title:F(n,l),classes:"hidden md:block sm:!hidden text-12"})]})})]}),W(L3,{className:"mt-[47px] text-center md:mt-[31px] sm:!mt-[17px] sm:text-start",children:u4(uC,{component:"span",className:"text-10",children:["\xA9 ",new Date().getFullYear()," ",g("Mayak real estate agency"),"."," ",g("All rights reserved")]})})]})})}import{Box as g2,Container as LC,Typography as qt}from"@mui/material";import F2 from"@mui/material/Grid2";import{useLocale as wC,useTranslations as bC}from"next-intl";import{jsx as O,jsxs as w3}from"react/jsx-runtime";function Xt({instagram:t,facebook:e,youtube:o,linkedIn:s,menuItems:i,mainPhone:l,site:n,homePage:p,additionalMenu:c}){let g=wC(),y=bC(),{sm:w,xs:B}=S();return O(g2,{component:"footer",className:"bg-white py-[60px] md:pt-[40px] md:pb-[45px] sm:!pt-[33px] sm:!pb-[30px]",children:w3(LC,{maxWidth:C,children:[w3(F2,{container:!0,columnSpacing:{md:7.5,xs:2.5},rowSpacing:{md:0,xs:2.5},children:[O(F2,{size:{md:2.4,sm:4,xs:12},children:w3(g2,{className:"flex flex-col",children:[O(W2,{small:!0,locale:g,homePage:p,classes:"sm:hidden xs:block"}),O(N,{data:l,type:"tel",title:F(n,l),classes:"mt-[16px] sm:mt-0 xs:mt-[20px]"}),w3(g2,{className:"mt-[10px] xs:w-3/4",children:[O("strong",{children:"Dubai"}),", Business Bay, Single Business Tower, office 1801/1802"]}),O(f3,{facebook:e,youtube:o,linkedIn:s,instagram:t,classes:"mt-[16px] md:mt-[12px] md:gap-[9px]"})]})}),O(F2,{size:{md:2.4,sm:4,xs:6},children:O(g2,{className:"flex flex-col gap-[7px] xs:gap-[4px] text-12 !leading-[21px]",children:i.slice(0,5).map(b=>O(h,{href:b.path,className:"w-fit",children:y(b.title)},b.title))})}),O(F2,{size:{md:2.4,sm:4,xs:6},children:O(g2,{className:"flex flex-col gap-[7px] xs:gap-[4px] text-12 !leading-[21px]",children:i.slice(5,10).map(b=>O(h,{href:b.path,className:"w-fit",children:y(b.title)},b.title))})}),w&&!B&&O(F2,{size:{md:0,sm:4,xs:0}}),O(F2,{size:{md:2.4,sm:4,xs:6},children:O(g2,{className:"flex flex-col gap-[7px] xs:gap-[4px] text-12 !leading-[21px]",children:c.items.slice(0,6).map((b,v)=>O(h,{href:b.path,className:"w-fit",children:y(b.title)},v))})}),O(F2,{size:{md:2.4,sm:4,xs:6},children:O(g2,{className:"flex flex-col gap-[7px] xs:gap-[4px] text-12 !leading-[21px]",children:c.items.slice(6,12).map((b,v)=>O(h,{href:b.path,className:"w-fit",children:y(b.title)},v))})})]}),w3(g2,{className:"mt-[65px] flex justify-between items-center md:mt-[31px] sm:!mt-[20px] sm:flex-col sm:items-start xs:gap-[10px]",children:[w3(qt,{component:"span",className:"text-10",children:["\xA9 ",new Date().getFullYear()," ",y("Mayak real estate agency"),"."," ",y("All rights reserved")]}),O(qt,{component:"span",className:"text-10",children:y("Site promotion by Digital Kitchen Agency")})]})]})})}import{Box as BC}from"@mui/material";import{jsx as vC}from"react/jsx-runtime";function jt({children:t,classes:e}){return vC(BC,{component:"main",className:`bg-gray-light${m(e)}`,children:t})}import{styled as Jt}from"@mui/material/styles";import{Badge as $t}from"@mui/material";var kC=Jt($t)(({})=>({"& .MuiBadge-badge":{right:4,top:4,background:"#343434",color:"white"}})),HC=Jt($t)(({})=>({"& .MuiBadge-badge":{right:-10,background:"#343434",color:"white"}}));import D$ from"@mui/material/Checkbox";import{FormControlLabel as Y$,styled as te}from"@mui/material";import K$ from"@mui/material/Typography";import{Fragment as j$,jsx as J$}from"react/jsx-runtime";var MC=te("span")(()=>({width:16,height:16,backgroundColor:"white"})),Q$=te(MC)({"&::before":{width:16,height:16,display:"flex",alignItems:"center",justifyContent:"center",content:`url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.66667L4.82353 8L11 1' stroke='%23343434' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")`}});import{List as NC}from"@mui/material";import{jsx as TC}from"react/jsx-runtime";var IC=t=>{let{children:e}=t;return TC(NC,{disablePadding:!0,...t,children:e})},_C=IC;import{ListItem as AC}from"@mui/material";import SC from"@mui/material/ListItemButton";import EC from"@mui/material/ListItemIcon";import VC from"@mui/material/ListItemText";import RC from"@mui/material/Typography";import{jsx as m5,jsxs as UC}from"react/jsx-runtime";var GC=({icon:t,title:e,bold:o,value:s,onClick:i})=>m5(AC,{disablePadding:!0,disableGutters:!0,children:UC(SC,{className:"p-0 hover:bg-transparent hover:text-accent-beige transition-all",onClick:()=>i&&i(s),disableRipple:!0,children:[t?m5(EC,{sx:{minWidth:"24px"},children:t}):null,m5(VC,{sx:{margin:"5px 0"},children:m5(RC,{className:`text-xs ${o?"font-extrabold":"font-normal"}`,children:e})})]})}),OC=GC;import{styled as q9}from"@mui/material/styles";import PC from"@mui/material/Accordion";import WC,{accordionSummaryClasses as Q9}from"@mui/material/AccordionSummary";import DC from"@mui/material/AccordionDetails";import{jsx as ee}from"react/jsx-runtime";var FC=q9(t=>ee(PC,{disableGutters:!0,elevation:0,square:!0,...t}))(({theme:t,isFirst:e})=>({backgroundColor:"transparent",border:"none",[t.breakpoints.up("sm")]:{"&::before":{opacity:"0 !important"},"&::after":{opacity:"0 !important"}},"&::first-of-type":{"&::before":{opacity:"1 !important",top:"-2px",backgroundColor:"#DBDBDB"}},"&::before":{opacity:"0",top:"-2px",backgroundColor:"#DBDBDB"},"&::after":{position:"absolute",left:0,top:"36px",right:0,height:"1px",content:'""',opacity:1,backgroundColor:"#DBDBDB",transition:" opacity 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms"},[`&.${Q9.expanded}`]:{"&::before":{opacity:"1",backgroundColor:"#99835F"},"&::after":{backgroundColor:"#99835F"}},...e&&{"&::before":{opacity:"1",backgroundColor:"#DBDBDB"}}})),ZC=q9(t=>ee(WC,{...t}))(()=>({[`& .${Q9.content}`]:{margin:0},[`& .${Q9.expanded}`]:{filter:"brightness(0) saturate(100%) invert(64%) sepia(4%) saturate(3237%) hue-rotate(358deg) brightness(82%) contrast(84%)"}})),YC=q9(DC)(({theme:t})=>({border:"none",padding:"0",[t.breakpoints.down("sm")]:{padding:" 10px 0 "}}));import{Pagination as jC}from"@mui/material";import{useFormContext as JC}from"react-hook-form";import"react";import{jsx as oe}from"react/jsx-runtime";var zC=t=>oe("svg",{width:8,height:12,viewBox:"0 0 8 12",fill:"none",xmlns:"http://www.w3.org/2000/svg",...t,children:oe("path",{d:"M1.75 1.5L6.25 6L1.75 10.5",stroke:"#343434",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"})}),h4=zC;import{createContext as KC,useRef as P11,useContext as QC}from"react";import{useStore as qC}from"zustand";import{createStore as V11}from"zustand/vanilla";import{jsx as q11}from"react/jsx-runtime";var XC=KC(void 0);var re=t=>{let e=QC(XC);if(!e)throw new Error("useDeviceStore must be used within DeviceStoreProvider");return qC(e,t)};import{useSearchParams as $C}from"next/navigation";import{jsx as u2}from"react/jsx-runtime";var tm=t=>{let{setValue:e,watch:o}=JC(),s=$C(),{isMobile:i}=re(p=>p),{total:l}=t,n=(p,c)=>{e("page",c)};return l&&l<o3||o("view")==="map"&&i?null:u2(jC,{boundaryCount:1,siblingCount:i?0:1,renderItem:p=>{if(p.page&&p.page<=Math.ceil(l/o3)){let c=new URLSearchParams(s.toString());return c.set("page",p.page?.toString()),u2(h,{href:`?${c.toString()}`,passHref:!0,children:u2(N2,{...p,slots:{next:()=>u2(h4,{}),previous:()=>u2(h4,{style:{transform:"rotate(180deg)"}})}})})}return u2(N2,{...p,slots:{next:()=>u2(h4,{}),previous:()=>u2(h4,{style:{transform:"rotate(180deg)"}})}})},count:l?Math.ceil(l/o3):0,size:"small",page:Number(s.get("page"))||1,onChange:n,className:"mt-[40px] w-fit mx-auto"})},em=tm;import{Breadcrumbs as om,Container as rm,Typography as ae}from"@mui/material";import{styled as am}from"@mui/material/styles";import{jsx as Z2,jsxs as nm}from"react/jsx-runtime";var sm=am(om)(({})=>({"& .MuiBreadcrumbs-li":{display:"inline-flex",alignItems:"end",whiteSpace:"nowrap"},ol:{display:"flex",flexWrap:"nowrap",overflowX:"auto",overflowY:"hidden",scrollBehavior:"smooth","-webkit-overflow-scrolling":"touch",width:"100%",paddingLeft:0,paddingRight:0,"li:last-child":{pointerEvents:"none"}}})),im=({breadCrumbsList:t})=>Z2(rm,{maxWidth:C,children:nm(sm,{sx:{marginBottom:2},"aria-label":"breadcrumb",separator:Z2(W5,{}),className:"breadcrumbs",children:[Z2(h,{href:"/",className:"h-[16px] mt-[-2px]",children:Z2(D5,{})}),t?t.map((e,o)=>o===t.length-1?Z2(ae,{className:"text-10 text-accent-silver-3 h-[11px]",children:e.name},e.name||o):Z2(h,{href:e.path,children:Z2(ae,{className:"text-10 text-accent-silver-3 h-[11px]",children:e.name})},e.name||o)):null]})}),lm=im;export{W8 as AboutCompanyMain,D8 as AboutUsFirstBlock,FC as Accordion,YC as AccordionDetails,ZC as AccordionSummary,Z8 as AmenitiesBlock,z8 as AnyLevelBlock,Vo as AnyQuestionsBlock,ut as AreasFull,kt as AreasSlider,h6 as ArticleContent,B6 as ArticlesBlock,k6 as ArticlesFull,M6 as BannerBlock,I6 as BannerBlock2,_6 as BannerReferralProgram,S6 as BecomePartner,G6 as BenefitsBlock,O6 as BenefitsVacanciesBlock,U6 as BlockAboutCareer,D6 as BlockChoiceLinkGoToCatalog,K6 as BlockContacts,N4 as BlockGroupLinks,J6 as BlockImages,a0 as BlockOurTeam,O3 as BlockTabsGroupLinks,lm as BreadCrumbs,l1 as Button,E as ButtonDark,l0 as CallConsult,s3 as CallMeBlock,C0 as CasesBlock,yt as CatalogNewProjects,c0 as CatalogRealtiesBlock,lC as CatalogViewSwitch,d0 as ClientTransferProcess,Tn as ContactDubaiBlock,f0 as ContactUsBlock,At as DeveloperBanner,St as DeveloperTwoBlocks,It as DevelopersFull,Nt as DevelopersSlider,T3 as ErrorMessage,x0 as ExpertiseBlock,u0 as FAQ,F7 as FancyBox,un as FloorPlansBlock,Qt as Footer,Xt as Footer2,L0 as FormBlock,B2 as FormInput,wn as FullScreenImage,kn as GalleryBlock,B0 as GalleryRealty,Z as H1,Y5 as H1Big,I as H2,ho as H3,R1 as H4,P8 as H5,r1 as H6,Kt as Header,fC as HeaderContactButton,n5 as HeaderMob,x1 as IconButton,cp as ImageAndTextBlock,A3 as Input,v0 as JoinTeamBlock,M0 as LegalSupport,J as LinkIconBorder,N as LinkOut,_C as List,OC as ListItem,Y9 as LocaleSwitch,G9 as LocaleSwitchToggle,W2 as LogoBlock,V9 as LogoBlockWhite,O1 as MODAL_COMPONENT,_v as MODAL_COMPONENTS,Tv as MODAL_TITLES,jt as Main,$l as ObjectInfoBlock,T4 as Offices,A4 as OfficesBlock,I0 as OpenVacancies,A0 as OtherVacancies,S0 as OurAdvantages,R0 as OurServices,em as Paginator,N2 as PaginatorItem,k4 as PaginatorSimple,rn as PaymentPlanBlock,v2 as PhoneNumberInput,O0 as PopularAreas,U0 as Portfolios,vt as ProjectsSlider,W0 as ReferralProgramFirstBlock,wa as SearchInput,Op as Select,_t as ServicesFull,D0 as ServicesTexts,F9 as SimpleSelect,n1 as SliderDefault,K7 as SliderObject,_4 as SocialBlock,f3 as SocialBlockMain,nr as SortToggle,kC as StyledBadge,HC as StyledBadgeDesc,a7 as StyledButton,cr as SubmitSelectButton,Tp as Switch,z2 as TeamWorkerBlock,Z0 as TextBlock,Kl as TextImageTileBlock,z3 as ThanksBlock,Y0 as TitleBlock,i7 as ToggleButton,l7 as ToggleButtonGroup,Sr as ToggleButtonsMultiple,Ur as ToggleButtonsWithLabel,z0 as TopDevelopers,K0 as TrustUs,p3 as VacancyBoxInfo,$0 as VacancyContent,tt as WeOffer,ot as WeTakeFull,st as WhatIsYour,lt as WhyShouldWork,ct as WhyWe,Go as createLocaleSlugSlice,Ga as createModalSlice,e7 as hrefSlugPrefix,q as useLayoutStore,e2 as useLocaleSlugStore,S as useWindowSize};
9
+ `,children:y(w.title)},w.title))})]}),E1(n5,{locales:o,menuItems:t,mainPhone:e,site:s,homePage:i,defLocale:n,children:p})]})})}import{memo as cC}from"react";import{jsx as xC}from"react/jsx-runtime";var dC=t=>{let{md:e}=S(),o=J1(),{onClick:s,title:i,homePage:l}=t;return xC(E,{title:i,onClick:s,classes:e||d1(o,l)?"hover:bg-gold hover:text-white px-[30px]":"",view:d1(o,l)||e?"transparent":"dark"})},fC=cC(dC);import{Box as L3,Container as gC,Typography as uC}from"@mui/material";import D2 from"@mui/material/Grid2";import{useLocale as hC,useTranslations as yC}from"next-intl";import{jsx as W,jsxs as u4}from"react/jsx-runtime";function Qt({instagram:t,facebook:e,youtube:o,linkedIn:s,menuItems:i,mainPhone:l,site:n,homePage:p}){let c=hC(),g=yC();return W(L3,{component:"footer",className:"bg-white pt-[60px] pb-[45px] md:pt-[40px] md:pb-[45px] sm:!pt-[33px] sm:!pb-[30px]",children:u4(gC,{maxWidth:C,children:[u4(D2,{container:!0,columnSpacing:{md:3.5,xs:2.5},rowSpacing:{sm:0,xs:2.5},children:[W(D2,{size:{sm:3,xs:12},children:u4(L3,{className:"flex flex-col",children:[W(W2,{small:!0,locale:c,homePage:p}),W(f3,{facebook:e,youtube:o,linkedIn:s,instagram:t,classes:"mt-[22px] md:mt-[12px] md:gap-[9px] sm:hidden"}),W(N,{data:l,type:"tel",title:F(n,l),classes:"mt-[12px] md:hidden text-12"})]})}),W(D2,{size:{sm:3,xs:6},children:W(L3,{className:"flex flex-col gap-[7px] text-12 !leading-[21px]",children:i.slice(0,4).map(y=>W(h,{href:y.path,children:g(y.title)},y.title))})}),W(D2,{size:{sm:3,xs:6},children:W(L3,{className:"flex flex-col gap-[7px] text-12 !leading-[21px]",children:i.slice(4,8).map(y=>W(h,{href:y.path,children:g(y.title)},y.title))})}),W(D2,{size:6,className:"hidden sm:block",children:W(N,{data:l,type:"tel",title:F(n,l),classes:"text-12"})}),W(D2,{size:6,className:"hidden sm:block",children:W(f3,{facebook:e,youtube:o,linkedIn:s,instagram:t,classes:"xs:gap-[5px]"})}),W(D2,{size:{sm:3,xs:12},children:u4(L3,{className:"flex flex-col gap-[35px] items-end md:gap-[0px] sm:items-start sm:gap-[20px]",children:[W(E,{title:g("Write to us"),classes:"!w-[200px]"}),W(N,{data:l,type:"tel",title:F(n,l),classes:"hidden md:block sm:!hidden text-12"})]})})]}),W(L3,{className:"mt-[47px] text-center md:mt-[31px] sm:!mt-[17px] sm:text-start",children:u4(uC,{component:"span",className:"text-10",children:["\xA9 ",new Date().getFullYear()," ",g("Mayak real estate agency"),"."," ",g("All rights reserved")]})})]})})}import{Box as g2,Container as LC,Typography as qt}from"@mui/material";import F2 from"@mui/material/Grid2";import{useLocale as wC,useTranslations as bC}from"next-intl";import{jsx as O,jsxs as w3}from"react/jsx-runtime";function Xt({instagram:t,facebook:e,youtube:o,linkedIn:s,menuItems:i,mainPhone:l,site:n,homePage:p,additionalMenu:c}){let g=wC(),y=bC(),{sm:w,xs:B}=S();return O(g2,{component:"footer",className:"bg-white py-[60px] md:pt-[40px] md:pb-[45px] sm:!pt-[33px] sm:!pb-[30px]",children:w3(LC,{maxWidth:C,children:[w3(F2,{container:!0,columnSpacing:{md:7.5,xs:2.5},rowSpacing:{md:0,xs:2.5},children:[O(F2,{size:{md:2.4,sm:4,xs:12},children:w3(g2,{className:"flex flex-col",children:[O(W2,{small:!0,locale:g,homePage:p,classes:"sm:hidden xs:block"}),O(N,{data:l,type:"tel",title:F(n,l),classes:"mt-[16px] sm:mt-0 xs:mt-[20px]"}),w3(g2,{className:"mt-[10px] xs:w-3/4",children:[O("strong",{children:"Dubai"}),", Business Bay, Single Business Tower, office 1801/1802"]}),O(f3,{facebook:e,youtube:o,linkedIn:s,instagram:t,classes:"mt-[16px] md:mt-[12px] md:gap-[9px]"})]})}),O(F2,{size:{md:2.4,sm:4,xs:6},children:O(g2,{className:"flex flex-col gap-[7px] xs:gap-[4px] text-12 !leading-[21px]",children:i.slice(0,5).map(b=>O(h,{href:b.path,className:"w-fit",children:y(b.title)},b.title))})}),O(F2,{size:{md:2.4,sm:4,xs:6},children:O(g2,{className:"flex flex-col gap-[7px] xs:gap-[4px] text-12 !leading-[21px]",children:i.slice(5,10).map(b=>O(h,{href:b.path,className:"w-fit",children:y(b.title)},b.title))})}),w&&!B&&O(F2,{size:{md:0,sm:4,xs:0}}),O(F2,{size:{md:2.4,sm:4,xs:6},children:O(g2,{className:"flex flex-col gap-[7px] xs:gap-[4px] text-12 !leading-[21px]",children:c.items.slice(0,6).map((b,v)=>O(h,{href:b.path,className:"w-fit",children:y(b.title)},v))})}),O(F2,{size:{md:2.4,sm:4,xs:6},children:O(g2,{className:"flex flex-col gap-[7px] xs:gap-[4px] text-12 !leading-[21px]",children:c.items.slice(6,12).map((b,v)=>O(h,{href:b.path,className:"w-fit",children:y(b.title)},v))})})]}),w3(g2,{className:"mt-[65px] flex justify-between items-center md:mt-[31px] sm:!mt-[20px] sm:flex-col sm:items-start xs:gap-[10px]",children:[w3(qt,{component:"span",className:"text-10",children:["\xA9 ",new Date().getFullYear()," ",y("Mayak real estate agency"),"."," ",y("All rights reserved")]}),O(qt,{component:"span",className:"text-10",children:y("Site promotion by Digital Kitchen Agency")})]})]})})}import{Box as BC}from"@mui/material";import{jsx as vC}from"react/jsx-runtime";function jt({children:t,classes:e}){return vC(BC,{component:"main",className:`bg-gray-light${m(e)}`,children:t})}import{styled as Jt}from"@mui/material/styles";import{Badge as $t}from"@mui/material";var kC=Jt($t)(({})=>({"& .MuiBadge-badge":{right:4,top:4,background:"#343434",color:"white"}})),HC=Jt($t)(({})=>({"& .MuiBadge-badge":{right:-10,background:"#343434",color:"white"}}));import D$ from"@mui/material/Checkbox";import{FormControlLabel as Y$,styled as te}from"@mui/material";import K$ from"@mui/material/Typography";import{Fragment as j$,jsx as J$}from"react/jsx-runtime";var MC=te("span")(()=>({width:16,height:16,backgroundColor:"white"})),Q$=te(MC)({"&::before":{width:16,height:16,display:"flex",alignItems:"center",justifyContent:"center",content:`url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.66667L4.82353 8L11 1' stroke='%23343434' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")`}});import{List as NC}from"@mui/material";import{jsx as TC}from"react/jsx-runtime";var IC=t=>{let{children:e}=t;return TC(NC,{disablePadding:!0,...t,children:e})},_C=IC;import{ListItem as AC}from"@mui/material";import SC from"@mui/material/ListItemButton";import EC from"@mui/material/ListItemIcon";import VC from"@mui/material/ListItemText";import RC from"@mui/material/Typography";import{jsx as m5,jsxs as UC}from"react/jsx-runtime";var GC=({icon:t,title:e,bold:o,value:s,onClick:i})=>m5(AC,{disablePadding:!0,disableGutters:!0,children:UC(SC,{className:"p-0 hover:bg-transparent hover:text-accent-beige transition-all",onClick:()=>i&&i(s),disableRipple:!0,children:[t?m5(EC,{sx:{minWidth:"24px"},children:t}):null,m5(VC,{sx:{margin:"5px 0"},children:m5(RC,{className:`text-xs ${o?"font-extrabold":"font-normal"}`,children:e})})]})}),OC=GC;import{styled as q9}from"@mui/material/styles";import PC from"@mui/material/Accordion";import WC,{accordionSummaryClasses as Q9}from"@mui/material/AccordionSummary";import DC from"@mui/material/AccordionDetails";import{jsx as ee}from"react/jsx-runtime";var FC=q9(t=>ee(PC,{disableGutters:!0,elevation:0,square:!0,...t}))(({theme:t,isFirst:e})=>({backgroundColor:"transparent",border:"none",[t.breakpoints.up("sm")]:{"&::before":{opacity:"0 !important"},"&::after":{opacity:"0 !important"}},"&::first-of-type":{"&::before":{opacity:"1 !important",top:"-2px",backgroundColor:"#DBDBDB"}},"&::before":{opacity:"0",top:"-2px",backgroundColor:"#DBDBDB"},"&::after":{position:"absolute",left:0,top:"36px",right:0,height:"1px",content:'""',opacity:1,backgroundColor:"#DBDBDB",transition:" opacity 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms"},[`&.${Q9.expanded}`]:{"&::before":{opacity:"1",backgroundColor:"#99835F"},"&::after":{backgroundColor:"#99835F"}},...e&&{"&::before":{opacity:"1",backgroundColor:"#DBDBDB"}}})),ZC=q9(t=>ee(WC,{...t}))(()=>({[`& .${Q9.content}`]:{margin:0},[`& .${Q9.expanded}`]:{filter:"brightness(0) saturate(100%) invert(64%) sepia(4%) saturate(3237%) hue-rotate(358deg) brightness(82%) contrast(84%)"}})),YC=q9(DC)(({theme:t})=>({border:"none",padding:"0",[t.breakpoints.down("sm")]:{padding:" 10px 0 "}}));import{Pagination as jC}from"@mui/material";import{useFormContext as JC}from"react-hook-form";import"react";import{jsx as oe}from"react/jsx-runtime";var zC=t=>oe("svg",{width:8,height:12,viewBox:"0 0 8 12",fill:"none",xmlns:"http://www.w3.org/2000/svg",...t,children:oe("path",{d:"M1.75 1.5L6.25 6L1.75 10.5",stroke:"#343434",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"})}),h4=zC;import{createContext as KC,useRef as P11,useContext as QC}from"react";import{useStore as qC}from"zustand";import{createStore as V11}from"zustand/vanilla";import{jsx as q11}from"react/jsx-runtime";var XC=KC(void 0);var re=t=>{let e=QC(XC);if(!e)throw new Error("useDeviceStore must be used within DeviceStoreProvider");return qC(e,t)};import{useSearchParams as $C}from"next/navigation";import{jsx as u2}from"react/jsx-runtime";var tm=t=>{let{setValue:e,watch:o}=JC(),s=$C(),{isMobile:i}=re(p=>p),{total:l}=t,n=(p,c)=>{e("page",c)};return l&&l<o3||o("view")==="map"&&i?null:u2(jC,{boundaryCount:1,siblingCount:i?0:1,renderItem:p=>{if(p.page&&p.page<=Math.ceil(l/o3)){let c=new URLSearchParams(s.toString());return c.set("page",p.page?.toString()),u2(h,{href:`?${c.toString()}`,passHref:!0,children:u2(N2,{...p,slots:{next:()=>u2(h4,{}),previous:()=>u2(h4,{style:{transform:"rotate(180deg)"}})}})})}return u2(N2,{...p,slots:{next:()=>u2(h4,{}),previous:()=>u2(h4,{style:{transform:"rotate(180deg)"}})}})},count:l?Math.ceil(l/o3):0,size:"small",page:Number(s.get("page"))||1,onChange:n,className:"mt-[40px] w-fit mx-auto"})},em=tm;import{Breadcrumbs as om,Container as rm,Typography as ae}from"@mui/material";import{styled as am}from"@mui/material/styles";import{jsx as Z2,jsxs as nm}from"react/jsx-runtime";var sm=am(om)(({})=>({"& .MuiBreadcrumbs-li":{display:"inline-flex",alignItems:"end",whiteSpace:"nowrap"},ol:{display:"flex",flexWrap:"nowrap",overflowX:"auto",overflowY:"hidden",scrollBehavior:"smooth","-webkit-overflow-scrolling":"touch",width:"100%",paddingLeft:0,paddingRight:0,"li:last-child":{pointerEvents:"none"}}})),im=({breadCrumbsList:t})=>Z2(rm,{maxWidth:C,children:nm(sm,{sx:{marginBottom:2},"aria-label":"breadcrumb",separator:Z2(W5,{}),className:"breadcrumbs",children:[Z2(h,{href:"/",className:"h-[16px] mt-[-2px]",children:Z2(D5,{})}),t.map((e,o)=>o===t.length-1?Z2(ae,{className:"text-10 text-accent-silver-3 h-[11px]",children:e.name},e.name||o):Z2(h,{href:e.path,children:Z2(ae,{className:"text-10 text-accent-silver-3 h-[11px]",children:e.name})},e.name||o))]})}),lm=im;export{W8 as AboutCompanyMain,D8 as AboutUsFirstBlock,FC as Accordion,YC as AccordionDetails,ZC as AccordionSummary,Z8 as AmenitiesBlock,z8 as AnyLevelBlock,Vo as AnyQuestionsBlock,ut as AreasFull,kt as AreasSlider,h6 as ArticleContent,B6 as ArticlesBlock,k6 as ArticlesFull,M6 as BannerBlock,I6 as BannerBlock2,_6 as BannerReferralProgram,S6 as BecomePartner,G6 as BenefitsBlock,O6 as BenefitsVacanciesBlock,U6 as BlockAboutCareer,D6 as BlockChoiceLinkGoToCatalog,K6 as BlockContacts,N4 as BlockGroupLinks,J6 as BlockImages,a0 as BlockOurTeam,O3 as BlockTabsGroupLinks,lm as BreadCrumbs,l1 as Button,E as ButtonDark,l0 as CallConsult,s3 as CallMeBlock,C0 as CasesBlock,yt as CatalogNewProjects,c0 as CatalogRealtiesBlock,lC as CatalogViewSwitch,d0 as ClientTransferProcess,Tn as ContactDubaiBlock,f0 as ContactUsBlock,At as DeveloperBanner,St as DeveloperTwoBlocks,It as DevelopersFull,Nt as DevelopersSlider,T3 as ErrorMessage,x0 as ExpertiseBlock,u0 as FAQ,F7 as FancyBox,un as FloorPlansBlock,Qt as Footer,Xt as Footer2,L0 as FormBlock,B2 as FormInput,wn as FullScreenImage,kn as GalleryBlock,B0 as GalleryRealty,Z as H1,Y5 as H1Big,I as H2,ho as H3,R1 as H4,P8 as H5,r1 as H6,Kt as Header,fC as HeaderContactButton,n5 as HeaderMob,x1 as IconButton,cp as ImageAndTextBlock,A3 as Input,v0 as JoinTeamBlock,M0 as LegalSupport,J as LinkIconBorder,N as LinkOut,_C as List,OC as ListItem,Y9 as LocaleSwitch,G9 as LocaleSwitchToggle,W2 as LogoBlock,V9 as LogoBlockWhite,O1 as MODAL_COMPONENT,_v as MODAL_COMPONENTS,Tv as MODAL_TITLES,jt as Main,$l as ObjectInfoBlock,T4 as Offices,A4 as OfficesBlock,I0 as OpenVacancies,A0 as OtherVacancies,S0 as OurAdvantages,R0 as OurServices,em as Paginator,N2 as PaginatorItem,k4 as PaginatorSimple,rn as PaymentPlanBlock,v2 as PhoneNumberInput,O0 as PopularAreas,U0 as Portfolios,vt as ProjectsSlider,W0 as ReferralProgramFirstBlock,wa as SearchInput,Op as Select,_t as ServicesFull,D0 as ServicesTexts,F9 as SimpleSelect,n1 as SliderDefault,K7 as SliderObject,_4 as SocialBlock,f3 as SocialBlockMain,nr as SortToggle,kC as StyledBadge,HC as StyledBadgeDesc,a7 as StyledButton,cr as SubmitSelectButton,Tp as Switch,z2 as TeamWorkerBlock,Z0 as TextBlock,Kl as TextImageTileBlock,z3 as ThanksBlock,Y0 as TitleBlock,i7 as ToggleButton,l7 as ToggleButtonGroup,Sr as ToggleButtonsMultiple,Ur as ToggleButtonsWithLabel,z0 as TopDevelopers,K0 as TrustUs,p3 as VacancyBoxInfo,$0 as VacancyContent,tt as WeOffer,ot as WeTakeFull,st as WhatIsYour,lt as WhyShouldWork,ct as WhyWe,Go as createLocaleSlugSlice,Ga as createModalSlice,e7 as hrefSlugPrefix,q as useLayoutStore,e2 as useLocaleSlugStore,S as useWindowSize};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mayak-common-library",
3
- "version": "0.0.247",
3
+ "version": "0.0.248",
4
4
  "private": false,
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",