int-components 0.0.16 → 0.0.18

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.
Files changed (24) hide show
  1. package/README.md +1 -1
  2. package/dist/index.css +127 -126
  3. package/dist/index.js +1 -1
  4. package/dist/rh-components/{HotelsLanding/HeroSection → HeroSection}/HeroSection.d.ts +1 -0
  5. package/dist/rh-components/HeroSection/HeroSection.d.ts.map +1 -0
  6. package/dist/rh-components/HeroSection/index.css +120 -0
  7. package/dist/rh-components/HeroSection/index.d.ts.map +1 -0
  8. package/dist/rh-components/HeroSection/index.js +1 -0
  9. package/dist/rh-components/HotelsLanding/index.css +31 -30
  10. package/dist/rh-components/HotelsLanding/index.js +1 -1
  11. package/dist/rh-components/{HotelsLanding/HotelsSection → HotelsSection}/HotelsSection.d.ts +3 -3
  12. package/dist/rh-components/HotelsSection/HotelsSection.d.ts.map +1 -0
  13. package/dist/rh-components/HotelsSection/index.css +258 -0
  14. package/dist/rh-components/HotelsSection/index.d.ts.map +1 -0
  15. package/dist/rh-components/HotelsSection/index.js +1 -0
  16. package/dist/rh-components/index.d.ts +4 -0
  17. package/dist/rh-components/index.d.ts.map +1 -1
  18. package/package.json +1 -1
  19. package/dist/rh-components/HotelsLanding/HeroSection/HeroSection.d.ts.map +0 -1
  20. package/dist/rh-components/HotelsLanding/HeroSection/index.d.ts.map +0 -1
  21. package/dist/rh-components/HotelsLanding/HotelsSection/HotelsSection.d.ts.map +0 -1
  22. package/dist/rh-components/HotelsLanding/HotelsSection/index.d.ts.map +0 -1
  23. /package/dist/rh-components/{HotelsLanding/HeroSection → HeroSection}/index.d.ts +0 -0
  24. /package/dist/rh-components/{HotelsLanding/HotelsSection → HotelsSection}/index.d.ts +0 -0
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Promo components
2
2
 
3
3
  Рейтхочные компоненты.
4
- Storybook https://of.worldota.net/mrktg/components/index.html
4
+ Storybook https://int-components.s3.amazonaws.com/int-components/master/index.html
5
5
 
6
6
  ## Содержание
7
7
  - [Подключение компонентов](#подключение-компонентов)
package/dist/index.css CHANGED
@@ -916,6 +916,118 @@
916
916
  }
917
917
  }
918
918
 
919
+ .HeroSection-module__hero--lpuv4 {
920
+ background-color: #ccc;
921
+ background-repeat: no-repeat;
922
+ background-image: var(--background-mobile);
923
+ background-position: center;
924
+ background-size: cover;
925
+ display: flex;
926
+ }
927
+
928
+ @media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
929
+
930
+ .HeroSection-module__hero--lpuv4 {
931
+ background-image: var(--background-mobile-2x);
932
+ }
933
+ }
934
+
935
+ @media (min-width: 500px) {
936
+
937
+ .HeroSection-module__hero--lpuv4 {
938
+ background-image: var(--background-desktop);
939
+ }
940
+
941
+ @media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
942
+
943
+ .HeroSection-module__hero--lpuv4 {
944
+ background-image: var(--background-desktop-2x);
945
+ }
946
+ }
947
+ }
948
+
949
+ .HeroSection-module__heroContainer--brVZ4 {
950
+ display: flex;
951
+ justify-content: end;
952
+ width: 100%;
953
+ max-width: 1448px;
954
+ margin: 0 auto;
955
+ padding: 26em 15em;
956
+ box-sizing: border-box;
957
+ }
958
+
959
+ @media (min-width: 500px) {
960
+
961
+ .HeroSection-module__heroContainer--brVZ4 {
962
+ padding: 16em 44em;
963
+ min-height: 320em;
964
+ }
965
+ }
966
+
967
+ @media (min-width: 1152px) {
968
+
969
+ .HeroSection-module__heroContainer--brVZ4 {
970
+ min-height: 670em;
971
+ }
972
+ }
973
+
974
+ .HeroSection-module__slogan--rRTe6 {
975
+ display: flex;
976
+ flex-direction: column;
977
+ justify-content: center;
978
+ align-items: flex-end;
979
+ width: auto;
980
+ text-align: right;
981
+ font-family: var(--font-secondary, "ABCGravity", sans-serif);
982
+ font-weight: 900;
983
+ }
984
+
985
+ .HeroSection-module__sloganText--_hwUn {
986
+ font-size: 45em;
987
+ line-height: 90%;
988
+ text-transform: uppercase;
989
+ }
990
+
991
+ @media (min-width: 500px) {
992
+
993
+ .HeroSection-module__sloganText--_hwUn {
994
+ font-size: 60em;
995
+ }
996
+ }
997
+
998
+ @media (min-width: 1152px) {
999
+
1000
+ .HeroSection-module__sloganText--_hwUn {
1001
+ font-size: 115em;
1002
+ }
1003
+ }
1004
+
1005
+ .HeroSection-module__sloganYellow--lIwpd {
1006
+ color: #f5d742;
1007
+ }
1008
+
1009
+ .HeroSection-module__sloganWhite--SWr8l {
1010
+ color: #fff;
1011
+ }
1012
+
1013
+ .HeroSection-module__heroLogo--t3ggG {
1014
+ width: 33em;
1015
+ }
1016
+
1017
+ @media (min-width: 500px) {
1018
+
1019
+ .HeroSection-module__heroLogo--t3ggG {
1020
+ width: 49em;
1021
+ }
1022
+ }
1023
+
1024
+ @media (min-width: 1152px) {
1025
+
1026
+ .HeroSection-module__heroLogo--t3ggG {
1027
+ width: 97em;
1028
+ }
1029
+ }
1030
+
919
1031
  .HotelCard-module__root--popq0 {
920
1032
  display: flex;
921
1033
  flex-direction: column;
@@ -1064,118 +1176,6 @@
1064
1176
  font-size: 14em;
1065
1177
  }
1066
1178
 
1067
- .HeroSection-module__hero--hCLgS {
1068
- background-color: #ccc;
1069
- background-repeat: no-repeat;
1070
- background-image: var(--background-mobile);
1071
- background-position: center;
1072
- background-size: cover;
1073
- display: flex;
1074
- }
1075
-
1076
- @media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
1077
-
1078
- .HeroSection-module__hero--hCLgS {
1079
- background-image: var(--background-mobile-2x);
1080
- }
1081
- }
1082
-
1083
- @media (min-width: 500px) {
1084
-
1085
- .HeroSection-module__hero--hCLgS {
1086
- background-image: var(--background-desktop);
1087
- }
1088
-
1089
- @media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
1090
-
1091
- .HeroSection-module__hero--hCLgS {
1092
- background-image: var(--background-desktop-2x);
1093
- }
1094
- }
1095
- }
1096
-
1097
- .HeroSection-module__heroContainer--Aj0Oe {
1098
- display: flex;
1099
- justify-content: end;
1100
- width: 100%;
1101
- max-width: 1448px;
1102
- margin: 0 auto;
1103
- padding: 26em 15em;
1104
- box-sizing: border-box;
1105
- }
1106
-
1107
- @media (min-width: 500px) {
1108
-
1109
- .HeroSection-module__heroContainer--Aj0Oe {
1110
- padding: 16em 44em;
1111
- min-height: 320em;
1112
- }
1113
- }
1114
-
1115
- @media (min-width: 1152px) {
1116
-
1117
- .HeroSection-module__heroContainer--Aj0Oe {
1118
- min-height: 670em;
1119
- }
1120
- }
1121
-
1122
- .HeroSection-module__slogan--bEt7e {
1123
- display: flex;
1124
- flex-direction: column;
1125
- justify-content: center;
1126
- align-items: flex-end;
1127
- width: auto;
1128
- text-align: right;
1129
- font-family: var(--font-secondary, "ABCGravity", sans-serif);
1130
- font-weight: 900;
1131
- }
1132
-
1133
- .HeroSection-module__sloganText--ZfrcX {
1134
- font-size: 45em;
1135
- line-height: 90%;
1136
- text-transform: uppercase;
1137
- }
1138
-
1139
- @media (min-width: 500px) {
1140
-
1141
- .HeroSection-module__sloganText--ZfrcX {
1142
- font-size: 60em;
1143
- }
1144
- }
1145
-
1146
- @media (min-width: 1152px) {
1147
-
1148
- .HeroSection-module__sloganText--ZfrcX {
1149
- font-size: 115em;
1150
- }
1151
- }
1152
-
1153
- .HeroSection-module__sloganYellow--MEBiO {
1154
- color: #f5d742;
1155
- }
1156
-
1157
- .HeroSection-module__sloganWhite--oCzY0 {
1158
- color: #fff;
1159
- }
1160
-
1161
- .HeroSection-module__heroLogo--xzC8c {
1162
- width: 33em;
1163
- }
1164
-
1165
- @media (min-width: 500px) {
1166
-
1167
- .HeroSection-module__heroLogo--xzC8c {
1168
- width: 49em;
1169
- }
1170
- }
1171
-
1172
- @media (min-width: 1152px) {
1173
-
1174
- .HeroSection-module__heroLogo--xzC8c {
1175
- width: 97em;
1176
- }
1177
- }
1178
-
1179
1179
  /* Root */
1180
1180
  .HotelsLanding-module__root--JnV8j {
1181
1181
  display: grid;
@@ -1191,7 +1191,7 @@
1191
1191
  -moz-osx-font-smoothing: grayscale;
1192
1192
  }
1193
1193
 
1194
- .HotelsSection-module__hotels--UKwxE {
1194
+ .HotelsSection-module__hotels--hGJyx {
1195
1195
  max-width: 1392px;
1196
1196
  margin-inline: auto;
1197
1197
  padding-bottom: 60em;
@@ -1199,12 +1199,12 @@
1199
1199
 
1200
1200
  @media (min-width: 1152px) {
1201
1201
 
1202
- .HotelsSection-module__hotels--UKwxE {
1202
+ .HotelsSection-module__hotels--hGJyx {
1203
1203
  padding-bottom: 100em;
1204
1204
  }
1205
1205
  }
1206
1206
 
1207
- .HotelsSection-module__hotelsHeader--N4rBW {
1207
+ .HotelsSection-module__hotelsHeader--l_Qr5 {
1208
1208
  display: flex;
1209
1209
  flex-direction: column;
1210
1210
  gap: 16em;
@@ -1213,21 +1213,21 @@
1213
1213
 
1214
1214
  @media (min-width: 500px) {
1215
1215
 
1216
- .HotelsSection-module__hotelsHeader--N4rBW {
1216
+ .HotelsSection-module__hotelsHeader--l_Qr5 {
1217
1217
  gap: 22em;
1218
1218
  }
1219
1219
  }
1220
1220
 
1221
1221
  @media (min-width: 1152px) {
1222
1222
 
1223
- .HotelsSection-module__hotelsHeader--N4rBW {
1223
+ .HotelsSection-module__hotelsHeader--l_Qr5 {
1224
1224
  gap: 28em;
1225
1225
  padding-top: 80em;
1226
1226
  padding-bottom: 80em;
1227
1227
  }
1228
1228
  }
1229
1229
 
1230
- .HotelsSection-module__hotelsTitle--lhOLZ {
1230
+ .HotelsSection-module__hotelsTitle--zeGAj {
1231
1231
  margin: 0;
1232
1232
  line-height: 1.1;
1233
1233
  text-align: center;
@@ -1238,20 +1238,21 @@
1238
1238
 
1239
1239
  @media (min-width: 500px) {
1240
1240
 
1241
- .HotelsSection-module__hotelsTitle--lhOLZ {
1241
+ .HotelsSection-module__hotelsTitle--zeGAj {
1242
1242
  font-size: 40em;
1243
1243
  }
1244
1244
  }
1245
1245
 
1246
1246
  @media (min-width: 1152px) {
1247
1247
 
1248
- .HotelsSection-module__hotelsTitle--lhOLZ {
1248
+ .HotelsSection-module__hotelsTitle--zeGAj {
1249
1249
  font-size: 65em;
1250
1250
  }
1251
1251
  }
1252
1252
 
1253
- .HotelsSection-module__hotelsSubtitle--weTKC {
1253
+ .HotelsSection-module__hotelsSubtitle--EAJhs {
1254
1254
  margin: 0;
1255
+ font-family: var(--font-main, "Aeonik", sans-serif);
1255
1256
  font-weight: 700;
1256
1257
  line-height: 1;
1257
1258
  text-align: center;
@@ -1260,19 +1261,19 @@
1260
1261
 
1261
1262
  @media (min-width: 500px) {
1262
1263
 
1263
- .HotelsSection-module__hotelsSubtitle--weTKC {
1264
+ .HotelsSection-module__hotelsSubtitle--EAJhs {
1264
1265
  font-size: 17em;
1265
1266
  }
1266
1267
  }
1267
1268
 
1268
1269
  @media (min-width: 1152px) {
1269
1270
 
1270
- .HotelsSection-module__hotelsSubtitle--weTKC {
1271
+ .HotelsSection-module__hotelsSubtitle--EAJhs {
1271
1272
  font-size: 23em;
1272
1273
  }
1273
1274
  }
1274
1275
 
1275
- .HotelsSection-module__hotelsList--U1OLv {
1276
+ .HotelsSection-module__hotelsList--jWxYc {
1276
1277
  display: grid;
1277
1278
  grid-template-columns: repeat(auto-fit, minmax(343px, 440px));
1278
1279
  justify-content: center;
@@ -1283,12 +1284,12 @@
1283
1284
  list-style: none;
1284
1285
  }
1285
1286
 
1286
- .HotelsSection-module__hotelCard--FLAea {
1287
+ .HotelsSection-module__hotelCard--aCwpN {
1287
1288
  justify-content: space-between;
1288
1289
  min-height: 100%;
1289
1290
  }
1290
1291
 
1291
- .HotelsSection-module__hotelCard--FLAea:hover [class*="HotelCard-module__priceInfo"] {
1292
+ .HotelsSection-module__hotelCard--aCwpN:hover [class*="HotelCard-module__priceInfo"] {
1292
1293
  background-color: #000000;
1293
1294
  }
1294
1295
 
package/dist/index.js CHANGED
@@ -1 +1 @@
1
- import*as e from"react/jsx-runtime";import*as t from"react";var a={39:(e,t,a)=>{a.d(t,{L:()=>s});const s=(...e)=>e.filter(Boolean).join(" ")},94:(e,t,a)=>{a.d(t,{A:()=>N});var s,o=a(178),l=a(268),n=a(130),r=a(39),i=a(649);function c(){return c=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var s in a)({}).hasOwnProperty.call(a,s)&&(e[s]=a[s])}return e},c.apply(null,arguments)}const d=e=>i.createElement("svg",c({xmlns:"http://www.w3.org/2000/svg",width:28,height:28,fill:"none"},e),s||(s=i.createElement("path",{fill:"#8C1EFF",d:"M.32 9.41h28v2h-28zM.32 17.41h28v2h-28z"})));var u,m;function h(){return h=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var s in a)({}).hasOwnProperty.call(a,s)&&(e[s]=a[s])}return e},h.apply(null,arguments)}const x=e=>i.createElement("svg",h({xmlns:"http://www.w3.org/2000/svg",width:28,height:28,fill:"none"},e),u||(u=i.createElement("path",{fill:"#8C1EFF",d:"m4.807 3.394 19.799 19.799-1.414 1.414-19.8-19.8z"})),m||(m=i.createElement("path",{fill:"#8C1EFF",d:"m3.393 23.193 19.799-19.8 1.414 1.415L4.807 24.607z"})));var p,_,f;function g(){return g=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var s in a)({}).hasOwnProperty.call(a,s)&&(e[s]=a[s])}return e},g.apply(null,arguments)}const v={root:"Header-module__root--MyGKu",header:"Header-module__header--Ie2CT",hidden:"Header-module__hidden--gobBG",compactHeader:"Header-module__compactHeader--LsvY9",visible:"Header-module__visible--ococB",light:"Header-module__light--e8MFJ",dark:"Header-module__dark--mJEmI",yellow:"Header-module__yellow--W7Vw1",leftContainer:"Header-module__leftContainer--T8NI2",rightContainer:"Header-module__rightContainer--ZvsQ0",navList:"Header-module__navList--ikTYl",menuLink:"Header-module__menuLink--yDAEH",menuLinkText:"Header-module__menuLinkText--MV8k7",subMenuOpener:"Header-module__subMenuOpener--7Gf68",subMenuOpenerActive:"Header-module__subMenuOpenerActive--hM0jl",subNavList:"Header-module__subNavList--opWlU",subNavListOpened:"Header-module__subNavListOpened--mebR2",burgerMenuContainer:"Header-module__burgerMenuContainer--GmhQc",burgerMenuButton:"Header-module__burgerMenuButton--sm0Lo",burgerMenu:"Header-module__burgerMenu--SUEsD",logo:"Header-module__logo--V8O4g",burgerButtons:"Header-module__burgerButtons--gDROa",separator:"Header-module__separator--lw7LB"},b="burger-menu",j="sub-menu",w=(0,o.jsx)("a",{href:"https://www.ratehawk.com/",target:"_blank",rel:"noreferrer",children:(0,o.jsx)(e=>i.createElement("svg",g({xmlns:"http://www.w3.org/2000/svg",height:61,fill:"none",viewBox:"0 0 202 61"},e),p||(p=i.createElement("path",{fill:"var(--general-color)",d:"m162.762 38.47-2.883-18.28h-7.867l-3.517 22.29h4.857l.026-.178.187-1.397.325-2.435h4.113l.517 3.877.018.134h4.857l-.111-.708zm-8.306-4.16 1.489-10.848 1.49 10.848zM179.455 38.5l-1.997-18.31h-6.079l-1.876 18.34-1.431-18.34h-4.618l2.414 22.29h6.854l1.757-18.336 1.848 18.337h6.764l2.413-22.29h-4.62zM196.7 30.654l4.41-10.463h-5.274l-3.693 10.611V20.191h-5.007v22.29h5.007V31.842l3.635 10.639h5.542zM81.256 30.253q1.028-1.324 1.028-3.402v-.861q0-1.9-.848-3.18-.85-1.279-2.338-1.947-1.491-.67-3.398-.67h-7.45v22.29h5.006V31.517l4.022 10.966h5.571L78.53 32.17q1.701-.598 2.727-1.918m-3.978-2.99q-.001 1.488-.611 2.141-.612.655-1.654.655h-1.757v-3.654a2.055 2.055 0 0 0-2.058-2.052h3.8149999999999995q1.042 0 1.654.549.61.55.61 1.946zM94.679 20.19h-7.867L83.93 38.47l-.634 4.01h4.858l.535-4.01h4.113l.535 4.01h4.857l-.633-4.01zm-5.423 14.12 1.49-10.848 1.49 10.848zM97.752 24.502h3.633V42.48h5.067V24.5h3.635v-4.31H97.752zM111.871 24.502V42.48h11.144v-4.309h-6.138v-4.905h6.138V28.96h-6.138v-4.457h6.138V20.19h-11.144zM141.791 28.87h-4.469v-8.68h-5.064v22.288h5.064v-7.216a2.055 2.055 0 0 0-2.057-2.053h6.526v9.272h5.064V20.19h-5.064z"})),_||(_=i.createElement("path",{fill:"var(--logo-accent-color)",d:"M56.213 18.304 38.056 7.849 25.143.41l3.572 4.999c.833 1.165-.43 2.679-1.732 2.07L15.695 2.197l22.36 17.418s8.481 6.433 11.26 8.735c.493.408.829.974.95 1.604l.868 4.557c.9 4.284-.762 5.893-2.368 6.857l-1.981 1.184.31-2.425c.124-.932-.076-1.3-.636-1.637l-4.84-2.697a2.3 2.3 0 0 0-.901-.297C37.487 35.054.32 29.801.32 29.801l17.228 5.767c1.359.455 1.23 2.412-.176 2.686l-5.264 1.033 24.024 13.89a4.2 4.2 0 0 0 4.186.004c4.062-2.331 12.88-7.393 15.88-9.123a4.18 4.18 0 0 0 2.093-3.603c.018-5.504.018-18.533.018-18.533a4.17 4.17 0 0 0-2.096-3.618"})),f||(f=i.createElement("path",{fill:"var(--logo-accent-color)",d:"M44.752 32.185a1.54 1.54 0 0 0 2.022.8c.553-.238.886-.765.917-1.326l-6.62-3.918s-.065.377.144.576c.22.21 2.583 2.181 3.464 2.916-.076.308-.06.64.073.952"}))),{className:v.logo})}),N=({theme:e="dark",className:t="",menu:a,subMenu:s,extraRightContent:c,fluidMode:u,zIndex:m=1,onLoginClick:h,onRegisterClick:p})=>{const _=(0,n.u)(u),f=v[e],g=s&&s.length>0,[N,y]=(0,i.useState)(!1),[C,M]=(0,i.useState)(!1),[L,H]=(0,i.useState)(!1),[T,E]=(0,i.useState)(!1),F=(0,i.useRef)(null),S=(0,i.useRef)(null),B=a?.map(k)||[];let A=B;if(g){const e=s?.map(k)||[];A=[...B,(0,o.jsxs)("li",{children:[(0,o.jsx)("button",{type:"button",onClick:()=>H(!L),className:(0,r.L)(v.menuLink,_,v.subMenuOpener,j,L?v.subMenuOpenerActive:""),children:(0,o.jsx)("span",{className:v.menuLinkText,children:"More"})}),(0,o.jsx)("ul",{className:(0,r.L)(v.subNavList,L?v.subNavListOpened:"",j),children:e})]},"submenu")],B.push(...e)}const O=(0,i.useCallback)((()=>{let e=!1;return(...t)=>{e||((()=>{if(!F.current||!S.current)return;const e=S.current.getBoundingClientRect().right,t=F.current.getBoundingClientRect().left-e<20;y(t),E(!0),t?H(!1):M(!1)})(...t),e=!0,setTimeout(()=>{e=!1},100))}})(),[]),I=(0,o.jsxs)(o.Fragment,{children:[(0,o.jsx)(l.A,{theme:"secondary",variant:"dark"===e?"white":"black",url:"https://www.ratehawk.com/accounts/login/?lang=en&ref=rh_sign_in",onClick:h,children:"Sign in"}),(0,o.jsx)(l.A,{url:"https://www.ratehawk.com/registration/?lang=en&ref=rh_register",onClick:p,children:"Register"})]}),P=(0,i.useCallback)(e=>{if(!(e.target instanceof HTMLElement))return;const t=e.target.closest(`.${b}`),a=e.target.closest(`.${j}`);t||M(!1),a||H(!1)},[]);return(0,i.useEffect)(()=>(window.addEventListener("resize",O),window.addEventListener("click",P),O(),()=>{window.removeEventListener("resize",O),window.removeEventListener("click",P)}),[O,P]),(0,o.jsxs)("div",{className:(0,r.L)(v.root,t,f,_),style:{zIndex:m},children:[(0,o.jsxs)("div",{className:(0,r.L)(v.header,v.wideHeader,N?v.hidden:""),children:[(0,o.jsxs)("div",{className:v.leftContainer,ref:S,children:[w,(0,o.jsx)("nav",{className:v.navMenu,children:(0,o.jsx)("ul",{className:v.navList,children:A})})]}),(0,o.jsxs)("div",{className:(0,r.L)(v.rightContainer,!T&&v.hidden),ref:F,children:[c,I]})]}),(0,o.jsxs)("div",{className:(0,r.L)(v.header,v.compactHeader,N?v.visible:""),children:[(0,o.jsx)("div",{className:v.leftContainer,children:w}),(0,o.jsxs)("div",{className:v.rightContainer,children:[c,(0,o.jsx)("div",{className:v.burgerMenuContainer,children:(0,o.jsx)("button",{className:v.burgerMenuButton,onClick:()=>M(!C),type:"button",children:C?(0,o.jsx)(x,{}):(0,o.jsx)(d,{})})})]}),C&&(0,o.jsxs)("div",{className:(0,r.L)(v.burgerMenu,b),children:[B.length?(0,o.jsxs)(o.Fragment,{children:[(0,o.jsx)("nav",{className:v.navMenu,children:(0,o.jsx)("ul",{className:v.navList,children:B})}),(0,o.jsx)("div",{className:v.separator})]}):null,(0,o.jsx)("div",{className:v.burgerButtons,children:I})]})]})]})};function k(e){const t=e.url?"a":"button",a=e.url?{target:"_blank",href:e.url}:{type:"button"};return(0,o.jsx)("li",{children:(0,o.jsx)(t,{className:v.menuLink,onClick:e.onClick,...a,children:(0,o.jsx)("span",{className:v.menuLinkText,children:e.title})})},e.title)}},130:(e,t,a)=>{a.d(t,{N:()=>o,u:()=>l}),a(178);var s=a(992);const o=({children:e,fluidMode:t=!1})=>{fluidModeState.state=t;const a=`\n @font-face {\n font-family: 'Aeonik';\n src: url('https://of.worldota.net/fonts/aeonik/Aeonik-Bold.woff2') format('woff2');\n font-weight: 900;\n font-style: normal;\n font-display: swap;\n }\n\n @font-face {\n font-family: 'Aeonik';\n src: url('https://of.worldota.net/fonts/aeonik/Aeonik-Regular.woff2') format('woff2');\n font-weight: 400;\n font-style: normal;\n font-display: swap;\n }\n\n @font-face {\n font-family: 'ABCGravity';\n src: url('https://of.worldota.net/fonts/ABCGravity/ABCGravity.woff2') format('woff2');\n font-weight: 900;\n font-style: normal;\n font-display: swap;\n }\n \n ${t?fluidLayoutCss:staticLayoutCss};\n `;return _jsxs(_Fragment,{children:[_jsx("style",{dangerouslySetInnerHTML:{__html:a}}),e]})},l=e=>("boolean"==typeof e?e:s.b.state)?"layout-module__fluidLayout--BNE04":"layout-module__staticLayout--x_6dR"},178:(t,a,s)=>{var o,l;t.exports=(o={Fragment:()=>e.Fragment,jsx:()=>e.jsx,jsxs:()=>e.jsxs},l={},s.d(l,o),l)},218:(e,t,a)=>{a.d(t,{A:()=>f});var s,o,l=a(178),n=a(130),r=a(39),i=a(374),c=a(94),d=a(649);function u(){return u=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var s in a)({}).hasOwnProperty.call(a,s)&&(e[s]=a[s])}return e},u.apply(null,arguments)}const m=e=>d.createElement("svg",u({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 98 91"},e),s||(s=d.createElement("path",{fill:"#FEDD00",d:"M94.277 30.26 63.65 12.58 41.87 0l6.025 8.453c1.406 1.972-.724 4.53-2.921 3.5l-19.04-8.93L63.65 32.48s14.304 10.88 18.993 14.772a4.67 4.67 0 0 1 1.601 2.713l1.465 7.708c1.516 7.243-1.286 9.964-3.995 11.595l-3.342 2.002.523-4.101c.21-1.576-.127-2.198-1.073-2.768l-8.163-4.56c-.468-.282-.98-.431-1.52-.503C62.692 58.587 0 49.704 0 49.704l29.06 9.752c2.29.77 2.073 4.08-.299 4.544l-8.878 1.746 40.523 23.489a7.07 7.07 0 0 0 7.06.008C74.318 85.3 89.192 76.741 94.25 73.815a7.07 7.07 0 0 0 3.53-6.094c.03-9.309.03-31.342.03-31.342a7.06 7.06 0 0 0-3.534-6.119"})),o||(o=d.createElement("path",{fill:"#FEDD00",d:"M74.944 53.737a2.594 2.594 0 0 0 3.41 1.354 2.59 2.59 0 0 0 1.547-2.244L68.735 46.22s-.11.639.243.975c.37.353 4.356 3.688 5.842 4.931a2.54 2.54 0 0 0 .124 1.61"}))),h="HeroSection-module__sloganText--ZfrcX",x=({yellowText:e,whiteText:t,showLogo:a=!0,backgroundMobile:s,backgroundMobile2x:o,backgroundDesktop:n,backgroundDesktop2x:i})=>(0,l.jsx)("section",{className:"HeroSection-module__hero--hCLgS",style:{"--background-mobile":`url("${s}")`,"--background-mobile-2x":`url("${o}")`,"--background-desktop":`url("${n}")`,"--background-desktop-2x":`url("${i}")`},children:(0,l.jsx)("div",{className:"HeroSection-module__heroContainer--Aj0Oe",children:(0,l.jsxs)("div",{className:"HeroSection-module__slogan--bEt7e",children:[e&&(0,l.jsx)("div",{className:(0,r.L)(h,"HeroSection-module__sloganYellow--MEBiO"),dangerouslySetInnerHTML:{__html:e}}),t&&(0,l.jsx)("div",{className:(0,r.L)(h,"HeroSection-module__sloganWhite--oCzY0"),dangerouslySetInnerHTML:{__html:t}}),a&&(0,l.jsx)(m,{className:"HeroSection-module__heroLogo--xzC8c"})]})})});var p=a(670);const _=({title:e,subtitle:t,hotels:a,fluidMode:s})=>(0,l.jsxs)("section",{className:"HotelsSection-module__hotels--UKwxE",children:[(0,l.jsxs)("header",{className:"HotelsSection-module__hotelsHeader--N4rBW",children:[e&&(0,l.jsx)("h2",{className:"HotelsSection-module__hotelsTitle--lhOLZ",children:e}),t&&(0,l.jsx)("p",{className:"HotelsSection-module__hotelsSubtitle--weTKC",children:t})]}),(0,l.jsx)("ul",{className:"HotelsSection-module__hotelsList--U1OLv",children:a.map(e=>(0,l.jsx)("li",{children:(0,l.jsx)(p.A,{className:"HotelsSection-module__hotelCard--FLAea",name:e.name,location:`${e.location}`,stars:e.stars,image:e.image,dates:e.dates,discountText:e.discountText,url:e.url,fluidMode:s})},e.name))})]}),f=({className:e="",heroYellowText:t,heroWhiteText:a,hotelsTitle:s,hotelsSubtitle:o,hotels:d,backgroundMobile:u,backgroundMobile2x:m,backgroundDesktop:h,backgroundDesktop2x:p,heroLogo:f=!0,fluidMode:g,onLoginClick:v,onRegisterClick:b})=>{const j=(0,n.u)(g);return(0,l.jsxs)("div",{className:(0,r.L)("HotelsLanding-module__root--JnV8j",j,e),children:[(0,l.jsx)(c.A,{onLoginClick:v,onRegisterClick:b,fluidMode:g}),(0,l.jsxs)("main",{children:[(0,l.jsx)(x,{yellowText:t,whiteText:a,showLogo:f,backgroundMobile:u,backgroundMobile2x:m,backgroundDesktop:h,backgroundDesktop2x:p}),(0,l.jsx)(_,{title:s,subtitle:o,hotels:d,fluidMode:g})]}),(0,l.jsx)(i.A,{})]})}},268:(e,t,a)=>{a.d(t,{A:()=>r});var s=a(178),o=a(130),l=a(39);const n={text:"Button-module__text--holIg",root:"Button-module__root--Knp7O",hidden:"Button-module__hidden--Q6Ztq",s:"Button-module__s--o9reb",m:"Button-module__m--ZGRqJ",withMediaDimension:"Button-module__withMediaDimension--Z_A5M",primary:"Button-module__primary--V9FFQ",purple:"Button-module__purple--biF8d",black:"Button-module__black--Iz790",secondary:"Button-module__secondary--_9J0r",white:"Button-module__white--l3jcr",isLoading:"Button-module__isLoading--u5f2m",spinner:"Button-module__spinner--Zj28d",spin:"Button-module__spin--lWtk7"},r=({className:e,children:t,dimension:a="s",theme:r="primary",onClick:i,disabled:c=!1,type:d="button",variant:u="purple",url:m,isLoading:h,enableMediaDimension:x=!0,fluidMode:p})=>{const _=n[a]||"",f=n[r]||"",g=n[u],v=(0,o.u)(p),b=x?n.withMediaDimension:"",j=m?"a":"button",w=m?{target:"_blank",href:m}:{type:d},N=h?n.isLoading:"";return(0,s.jsxs)(j,{...w,onClick:i,className:(0,l.L)(n.root,e,v,_,f,N,g,b),disabled:c,children:[h?(0,s.jsx)("span",{className:n.spinner}):null,(0,s.jsx)("span",{className:(0,l.L)(n.text,h?n.hidden:null),children:t})]})}},374:(e,t,a)=>{a.d(t,{A:()=>L});var s,o=a(178),l=a(268),n=a(130),r=a(39),i=a(649);function c(){return c=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var s in a)({}).hasOwnProperty.call(a,s)&&(e[s]=a[s])}return e},c.apply(null,arguments)}const d=e=>i.createElement("svg",c({xmlns:"http://www.w3.org/2000/svg",width:31,height:31,fill:"none"},e),s||(s=i.createElement("path",{stroke:"#fff",strokeWidth:2,d:"M15.207 29.967c-7.732 0-14-6.268-14-14s6.268-14 14-14 14 6.268 14 14-6.268 14-14 14Zm0 0v-16a4 4 0 0 1 4-4h1m-10 8h10"})));var u;function m(){return m=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var s in a)({}).hasOwnProperty.call(a,s)&&(e[s]=a[s])}return e},m.apply(null,arguments)}const h=e=>i.createElement("svg",m({xmlns:"http://www.w3.org/2000/svg",width:31,height:31,fill:"none"},e),u||(u=i.createElement("path",{stroke:"#fff",strokeWidth:2,d:"M9.54 12.967v10m12 0v-5a4 4 0 1 0-8 0v5-10m-5-3h2m-7-8h24a2 2 0 0 1 2 2v24a2 2 0 0 1-2 2h-24a2 2 0 0 1-2-2v-24a2 2 0 0 1 2-2Z"}))),x=/^([^\x00-\x20\x22\x28\x29\x2c\x2e\x3a-\x3c\x3e\x40\x5b-\x5d\x7f-\xff]+|\x22([^\x0d\x22\x5c\x80-\xff]|\x5c[\x00-\x7f])*\x22)(\x2e([^\x00-\x20\x22\x28\x29\x2c\x2e\x3a-\x3c\x3e\x40\x5b-\x5d\x7f-\xff]+|\x22([^\x0d\x22\x5c\x80-\xff]|\x5c[\x00-\x7f])*\x22))*\x40([^\x00-\x20\x22\x28\x29\x2c\x2e\x3a-\x3c\x3e\x40\x5b-\x5d\x7f-\xff]+|\x5b([^\x0d\x5b-\x5d\x80-\xff]|\x5c[\x00-\x7f])*\x5d)(\x2e([^\x00-\x20\x22\x28\x29\x2c\x2e\x3a-\x3c\x3e\x40\x5b-\x5d\x7f-\xff]+|\x5b([^\x0d\x5b-\x5d\x80-\xff]|\x5c[\x00-\x7f])*\x5d))*$/;var p;function _(){return _=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var s in a)({}).hasOwnProperty.call(a,s)&&(e[s]=a[s])}return e},_.apply(null,arguments)}const f=e=>i.createElement("svg",_({xmlns:"http://www.w3.org/2000/svg",width:24,height:24,stroke:"currentColor",strokeWidth:1.5},e),p||(p=i.createElement("path",{d:"m4 4 16 16m0-16L4 20"}))),g="ContactModal-module__field--c99HI",v="ContactModal-module__inputWrapper--e2l3N",b="ContactModal-module__inputWrapperError--s_bqB",j="ContactModal-module__input--wuaB7",w="ContactModal-module__error--jso6D",N=({isOpen:e,onClose:t,fluidMode:a})=>{const s=(0,n.u)(a),[c,d]=(0,i.useState)({firstName:"",phone:"",email:"",companyName:"",message:""}),[u,m]=(0,i.useState)(!1),[h,p]=(0,i.useState)(!1),[_,N]=(0,i.useState)({}),k=(0,i.useCallback)(()=>{const e={};return c.firstName.trim()||(e.firstName="First Name is required"),c.phone.trim()?c.phone.replace(/\D/g,"").length>=7||(e.phone="Phone must contain at least 7 digits"):e.phone="Phone is required",c.email.trim()?function(e){return x.test(e)}(c.email)||(e.email="Please enter a valid email"):e.email="Email is required",c.companyName.trim()||(e.companyName="Company Name is required"),N(e),0===Object.keys(e).length},[c]),y=(0,i.useCallback)(async e=>{if(e.preventDefault(),k()){m(!0);try{const e={brand:"ratehawk",cooperation_type:"api",kind:"b2b",white_label_slug:"ratehawk",email:c.email,message:c.message,company_name:c.companyName,name:c.firstName,phone:c.phone};if(!(await fetch("https://www.ratehawk.com/partner/user_area/v1/anonymous/contact_us/",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(e)})).ok)throw new Error("Failed to submit form");p(!0)}catch(e){console.error("Form submission error:",e)}finally{m(!1)}}},[c,k]),C=(0,i.useCallback)(e=>t=>{d(a=>({...a,[e]:t.target.value})),_[e]&&N(t=>({...t,[e]:void 0}))},[_]),M=(0,i.useCallback)(()=>{d({firstName:"",phone:"",email:"",companyName:"",message:""}),N({}),p(!1),t()},[t]);return e?(0,o.jsx)("div",{className:(0,r.L)("ContactModal-module__overlay--ti1yT",s),onClick:M,children:(0,o.jsxs)("div",{className:"ContactModal-module__modal--Xzwl2",onClick:e=>e.stopPropagation(),children:[(0,o.jsx)("button",{className:(0,r.L)("ContactModal-module__closeButton--qvADd",s),onClick:M,type:"button",children:(0,o.jsx)(f,{})}),h?(0,o.jsxs)("div",{className:"ContactModal-module__successMessage--Nyhi4",children:[(0,o.jsx)("h2",{className:"ContactModal-module__successTitle--dVn02",children:"Successfully accepted"}),(0,o.jsx)("p",{className:"ContactModal-module__successText--KJznx",children:"Your application has flown to our caring specialists! We will contact you soon"})]}):(0,o.jsxs)(o.Fragment,{children:[(0,o.jsx)("h2",{className:"ContactModal-module__title--XrI8J",children:(0,o.jsx)("span",{className:"ContactModal-module__titleText--HH4uj",children:"Cooperation"})}),(0,o.jsx)("p",{className:"ContactModal-module__subtitle--dS9UA",children:"Drop us a line and we will get back to you as soon as possible!"}),(0,o.jsxs)("form",{className:"ContactModal-module__form--XuQzj",onSubmit:y,children:[(0,o.jsxs)("div",{className:g,children:[(0,o.jsx)("label",{className:`${v} ${_.firstName?b:""}`,children:(0,o.jsx)("input",{type:"text",className:j,value:c.firstName,onChange:C("firstName"),placeholder:"First Name *"})}),_.firstName&&(0,o.jsx)("span",{className:w,children:_.firstName})]}),(0,o.jsxs)("div",{className:g,children:[(0,o.jsx)("label",{className:`${v} ${_.phone?b:""}`,children:(0,o.jsx)("input",{type:"tel",className:j,value:c.phone,onChange:C("phone"),placeholder:"Phone *"})}),_.phone&&(0,o.jsx)("span",{className:w,children:_.phone})]}),(0,o.jsxs)("div",{className:g,children:[(0,o.jsx)("label",{className:`${v} ${_.email?b:""}`,children:(0,o.jsx)("input",{type:"email",className:j,value:c.email,onChange:C("email"),placeholder:"Email Address *"})}),_.email&&(0,o.jsx)("span",{className:w,children:_.email})]}),(0,o.jsxs)("div",{className:g,children:[(0,o.jsx)("label",{className:`${v} ${_.companyName?b:""}`,children:(0,o.jsx)("input",{type:"text",className:j,value:c.companyName,onChange:C("companyName"),placeholder:"Company Name *"})}),_.companyName&&(0,o.jsx)("span",{className:w,children:_.companyName})]}),(0,o.jsx)("div",{className:g,children:(0,o.jsx)("label",{className:"ContactModal-module__textareaWrapper--rSQEQ",children:(0,o.jsx)("textarea",{className:"ContactModal-module__textarea--i19oy",value:c.message,onChange:C("message"),placeholder:"Message",rows:4})})}),(0,o.jsx)(l.A,{type:"submit",theme:"primary",variant:"white",disabled:u,className:"ContactModal-module__submitButton--qbQOa",children:u?"Sending...":"Send"})]})]})]})}):null},k="Footer-module__footerLink--ipb6W",y="Footer-module__footerLegalText--xlXoo",C="Footer-module__footerParagraphSection--rin95",M=[{title:"For marketing and PR",text:"We regularly run promotions, campaigns, and partner events to engage and incentivize our clients with special offers. If you interested in such partnership please contact us at {{link}}.",link:"pr@emergingtravel.com",button:{text:"Cooperate",action:"form"},cssClass:"Footer-module__marketingBlock--DnIGu"},{title:"For affiliates partnerships",text:"Integrate our solution to make it easy and profitable to book hotels through your website or online service. Integrate quickly and reliably with our system. Still have questions? Contact us at {{link}}.",link:"affiliate@emergingtravel.com",button:{text:"Learn more",url:"https://www.ratehawk.com/lp/en-us/travel-related-websites/"},cssClass:"Footer-module__affiliatesBlock--jVQ0L"},{title:"For suppliers",text:"As official partners of the world's largest OTA, wholesalers, consolidators, and DMCs, we invite you to enhance your sales and grow your business together. Contact us at {{link}}.",link:"tpp@emergingtravel.com",button:{text:"Cooperate",action:"form"},cssClass:"Footer-module__suppliersBlock--yrn9l"},{title:"For hotels",text:"Become our partner to increase your direct sales and the popularity of your accommodation options. \u2028For partnership inquiries, please contact us at {{link}}.",link:"hotels@emergingtravel.com",button:{text:"Learn more",url:"https://www.ratehawk.com/lp/en-us/travel-related-websites/"},cssClass:"Footer-module__hotelsBlock--uGUyj"},{title:"For technology providers",text:"If you are a mid-office or platform interested in integrating with RateHawk to develop your business, please contact us at {{link}}.",link:"api@ratehawk.com",button:{text:"Cooperate",action:"form"},cssClass:"Footer-module__providersBlock--Zmk8W"}],L=({className:e="",fluidMode:t})=>{const[a,s]=(0,i.useState)(!1),c=(0,n.u)(t),u=(0,i.useCallback)(()=>{s(!0)},[]),m=(0,i.useCallback)(()=>{s(!1)},[]);return(0,o.jsxs)(o.Fragment,{children:[(0,o.jsxs)("footer",{className:(0,r.L)("Footer-module__root--T9ly6",e,c),children:[(0,o.jsxs)("div",{className:"Footer-module__header--hy1ME",children:[(0,o.jsx)("p",{className:"Footer-module__title--OX7d9",children:"Partnership"}),(0,o.jsx)("p",{className:"Footer-module__subTitle--EmP0b",children:"Cooperate and grow together with RateHawk"})]}),(0,o.jsx)("ul",{className:"Footer-module__advantages--z7ASK",children:M.map(e=>(0,o.jsxs)("li",{className:(0,r.L)("Footer-module__advantageItem--EcCx_",e.cssClass),children:[(0,o.jsxs)("div",{className:"Footer-module__advantageInfo--Ilud0",children:[(0,o.jsx)("h6",{className:"Footer-module__advantageTitle--spnaR",children:(0,o.jsx)("span",{className:"Footer-module__advantageTitleText--cMrU_",children:e.title})}),(0,o.jsx)("p",{className:"Footer-module__advantageText--BHbmo",dangerouslySetInnerHTML:{__html:e.text.replace("{{link}}",`<a class="Footer-module__advantageLink--bcoK8" href="mailto:${e.link}">${e.link}</a>`)}})]}),(0,o.jsx)(l.A,{theme:"secondary",variant:"white",...e.button.url?{url:e.button.url}:{onClick:u},children:e.button.text})]},e.title))}),(0,o.jsxs)("div",{className:"Footer-module__footerBottom--u_o7y",children:[(0,o.jsxs)("div",{className:"Footer-module__footerLeft--nnkZo",children:[(0,o.jsxs)("div",{className:"Footer-module__social--H1Yw4",children:[(0,o.jsx)("a",{href:"https://www.facebook.com/ratehawk",target:"_blank",rel:"noopener noreferrer",children:(0,o.jsx)(d,{})}),(0,o.jsx)("a",{href:"https://www.linkedin.com/company/ratehawk-com/",target:"_blank",rel:"noopener noreferrer",children:(0,o.jsx)(h,{})})]}),(0,o.jsxs)("ul",{className:"Footer-module__footerLinks--R9Hnr",children:[(0,o.jsx)("li",{children:(0,o.jsx)("a",{href:"https://www.ratehawk.com/lp/en-us/career",target:"_blank",rel:"noopener noreferrer",className:k,children:"Careers"})}),(0,o.jsx)("li",{children:(0,o.jsx)("a",{href:"https://blog.ratehawk.com/",target:"_blank",rel:"noopener noreferrer",className:k,children:"Blog"})})]})]}),(0,o.jsxs)("div",{className:"Footer-module__footerLegal--jAGGe",children:[(0,o.jsxs)("div",{className:C,children:[(0,o.jsx)("p",{className:y,children:"Leaside Services Limited, reg.no HE342401, Business Address: 17 Karaiskaki Street, Office 22, Agaia Triada, Limassol, Cyprus, 3032 Emerging Travel Inc., reg.no 4869611, Business Address: 1000 N West Street, Suite 1200, Wilmington, DE 19801 USA EMERGING TRAVEL UK LIMITED, Company number 12185384, Business Address: 19 Eastbourne Terrace, Office 3.01, Paddington, London, W2 6LG, UK"}),(0,o.jsx)("p",{className:y,children:"Emerging Travel Germany ETG GmbH, HRB 213546, Business Address: Friedrichstraße 171, 10117 Berlin, Germany"}),(0,o.jsx)("p",{className:y,children:"Emerging Travel Kazakhstan LLP, BIN 191240026456, Business address: Office SP2-18, 280 Baizakova Street, Bostandykskiy district, 050040, Almaty, Republic of Kazakhstan"}),(0,o.jsx)("p",{className:y,children:"Smart Middle East Travel Agency L.L.C, Reg.no: 1803677, Business address: Al Rigga - Office No. 202-201-221, Insurance Building, Dubai, UAE"}),(0,o.jsx)("p",{className:y,children:"Emerging Travel Asia PTE. LTD, Reg.no: 201927854K, TA license: TA03682, Business address: 300 Tampines Avenue 5 #09-02, Tampines Junction Singapore 529653"})]}),(0,o.jsx)("div",{className:C,children:(0,o.jsx)("p",{className:y,children:(0,o.jsx)("a",{href:"https://www.ratehawk.com/legal/site/privacy-policy/",target:"_blank",rel:"noopener noreferrer",children:"Personal data processing and storage policy"})})}),(0,o.jsx)("div",{className:C,children:(0,o.jsx)("p",{className:y,children:"Digital Services Act"})}),(0,o.jsx)("div",{className:C,children:(0,o.jsx)("p",{className:y,children:"Ratehawk is a registered service mark in the European Union"})})]})]})]}),(0,o.jsx)(N,{isOpen:a,onClose:m,fluidMode:t})]})}},627:(e,t,a)=>{a.d(t,{A:()=>s.A});var s=a(374)},649:(e,a,s)=>{var o,l;e.exports=(o={createElement:()=>t.createElement,useCallback:()=>t.useCallback,useEffect:()=>t.useEffect,useRef:()=>t.useRef,useState:()=>t.useState},l={},s.d(l,o),l)},670:(e,t,a)=>{a.d(t,{A:()=>r});var s=a(178),o=a(130),l=a(39);const n={root:"HotelCard-module__root--popq0",rootFixed:"HotelCard-module__rootFixed--TvjpT",clickable:"HotelCard-module__clickable--mp25I",imageContainer:"HotelCard-module__imageContainer--FZfWz",image:"HotelCard-module__image--fREMp",discount:"HotelCard-module__discount--G2sau",discountText:"HotelCard-module__discountText--hH9Sf",content:"HotelCard-module__content--IA_3z",stars:"HotelCard-module__stars--jTODO",starFilled:"HotelCard-module__starFilled--Ps4vk",starEmpty:"HotelCard-module__starEmpty--FBbdo",title:"HotelCard-module__title--BOmwo",location:"HotelCard-module__location--uglfh",dates:"HotelCard-module__dates--mhAjB",priceInfoWrapper:"HotelCard-module__priceInfoWrapper--fplFE",priceInfo:"HotelCard-module__priceInfo--qLmoQ",bookNowText:"HotelCard-module__bookNowText--pgznJ",mainPriceText:"HotelCard-module__mainPriceText--wIEbi",infoPriceText:"HotelCard-module__infoPriceText--GSy_s"},r=({className:e="",name:t,location:a,stars:r,image:i,dates:c,discountText:d,onClick:u,url:m,width:h="auto",price:x,fluidMode:p})=>{const _=(0,o.u)(p),f=m?"a":"div",g=m?{href:m,target:"_blank",rel:"noopener noreferrer"}:{};return(0,s.jsxs)(f,{className:(0,l.L)(n.root,_,"fixed"===h&&n.rootFixed,e,m&&n.clickable),onClick:u,...g,children:[(0,s.jsxs)("div",{className:n.imageContainer,children:[(0,s.jsx)("img",{src:i,alt:t,className:n.image}),d?(0,s.jsx)("div",{className:n.discount,children:(0,s.jsx)("span",{className:n.discountText,dangerouslySetInnerHTML:{__html:d}})}):null]}),(0,s.jsxs)("div",{className:n.content,children:[(()=>{if(!r)return null;const e=[];for(let a=0;a<5;a++)e.push((0,s.jsx)("div",{className:a<r?n.starFilled:n.starEmpty},`star-${t}-${a}`));return(0,s.jsx)("div",{className:n.stars,children:e})})(),(0,s.jsx)("h3",{className:n.title,children:t}),a&&(0,s.jsx)("p",{className:n.location,children:a}),c&&(0,s.jsxs)("p",{className:n.dates,children:["Travel Dates: ",c]}),(0,s.jsx)("div",{className:n.priceInfoWrapper,children:(0,s.jsx)("div",{className:n.priceInfo,children:x?(0,s.jsxs)("div",{className:n.priceText,children:[(0,s.jsxs)("div",{className:n.mainPriceText,children:["From ",(0,s.jsx)("strong",{children:x})]}),(0,s.jsx)("div",{className:n.infoPriceText,children:(0,s.jsx)("span",{children:"For 1 night and 2 guests"})})]}):(0,s.jsx)("div",{className:n.bookNowText,children:"Book now"})})})]})]})}},793:(e,t,a)=>{a.d(t,{A:()=>s.A});var s=a(94)},924:(e,t,a)=>{a.d(t,{A:()=>s.A});var s=a(670)},992:(e,t,a)=>{a.d(t,{b:()=>s}),globalThis.__fluidModeState||(globalThis.__fluidModeState={state:!1});const s=globalThis.__fluidModeState}},s={};function o(e){var t=s[e];if(void 0!==t)return t.exports;var l=s[e]={exports:{}};return a[e](l,l.exports,o),l.exports}o.d=(e,t)=>{for(var a in t)o.o(t,a)&&!o.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:t[a]})},o.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),o.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var l={};o.r(l),o.d(l,{Button:()=>n.A,Footer:()=>r.A,Header:()=>i.A,HotelCard:()=>c.A,HotelsLanding:()=>d.A});var n=o(268),r=o(627),i=o(793),c=o(924),d=o(218),u=o(992);export{l as RHComponents};export const fluidModeState=u.b;
1
+ import*as e from"react/jsx-runtime";import*as t from"react";var a={39:(e,t,a)=>{a.d(t,{L:()=>s});const s=(...e)=>e.filter(Boolean).join(" ")},67:(e,t,a)=>{a.d(t,{A:()=>s.A});var s=a(110)},93:(e,t,a)=>{a.d(t,{A:()=>r});var s=a(178),o=a(130),l=a(39),n=a(670);const r=({title:e,subtitle:t,hotels:a,fluidMode:r})=>{const i=(0,o.u)(r);return(0,s.jsxs)("section",{className:(0,l.L)("HotelsSection-module__hotels--hGJyx",i),children:[e||t?(0,s.jsxs)("header",{className:"HotelsSection-module__hotelsHeader--l_Qr5",children:[e&&(0,s.jsx)("h2",{className:"HotelsSection-module__hotelsTitle--zeGAj",children:e}),t&&(0,s.jsx)("p",{className:"HotelsSection-module__hotelsSubtitle--EAJhs",children:t})]}):null,(0,s.jsx)("ul",{className:"HotelsSection-module__hotelsList--jWxYc",children:a.map(e=>(0,s.jsx)("li",{children:(0,s.jsx)(n.A,{className:"HotelsSection-module__hotelCard--aCwpN",name:e.name,location:e.location,stars:e.stars,image:e.image,dates:e.dates,discountText:e.discountText,url:e.url,fluidMode:r})},e.name))})]})}},94:(e,t,a)=>{a.d(t,{A:()=>N});var s,o=a(178),l=a(268),n=a(130),r=a(39),i=a(649);function c(){return c=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var s in a)({}).hasOwnProperty.call(a,s)&&(e[s]=a[s])}return e},c.apply(null,arguments)}const d=e=>i.createElement("svg",c({xmlns:"http://www.w3.org/2000/svg",width:28,height:28,fill:"none"},e),s||(s=i.createElement("path",{fill:"#8C1EFF",d:"M.32 9.41h28v2h-28zM.32 17.41h28v2h-28z"})));var u,m;function h(){return h=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var s in a)({}).hasOwnProperty.call(a,s)&&(e[s]=a[s])}return e},h.apply(null,arguments)}const x=e=>i.createElement("svg",h({xmlns:"http://www.w3.org/2000/svg",width:28,height:28,fill:"none"},e),u||(u=i.createElement("path",{fill:"#8C1EFF",d:"m4.807 3.394 19.799 19.799-1.414 1.414-19.8-19.8z"})),m||(m=i.createElement("path",{fill:"#8C1EFF",d:"m3.393 23.193 19.799-19.8 1.414 1.415L4.807 24.607z"})));var p,_,f;function g(){return g=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var s in a)({}).hasOwnProperty.call(a,s)&&(e[s]=a[s])}return e},g.apply(null,arguments)}const v={root:"Header-module__root--MyGKu",header:"Header-module__header--Ie2CT",hidden:"Header-module__hidden--gobBG",compactHeader:"Header-module__compactHeader--LsvY9",visible:"Header-module__visible--ococB",light:"Header-module__light--e8MFJ",dark:"Header-module__dark--mJEmI",yellow:"Header-module__yellow--W7Vw1",leftContainer:"Header-module__leftContainer--T8NI2",rightContainer:"Header-module__rightContainer--ZvsQ0",navList:"Header-module__navList--ikTYl",menuLink:"Header-module__menuLink--yDAEH",menuLinkText:"Header-module__menuLinkText--MV8k7",subMenuOpener:"Header-module__subMenuOpener--7Gf68",subMenuOpenerActive:"Header-module__subMenuOpenerActive--hM0jl",subNavList:"Header-module__subNavList--opWlU",subNavListOpened:"Header-module__subNavListOpened--mebR2",burgerMenuContainer:"Header-module__burgerMenuContainer--GmhQc",burgerMenuButton:"Header-module__burgerMenuButton--sm0Lo",burgerMenu:"Header-module__burgerMenu--SUEsD",logo:"Header-module__logo--V8O4g",burgerButtons:"Header-module__burgerButtons--gDROa",separator:"Header-module__separator--lw7LB"},b="burger-menu",j="sub-menu",w=(0,o.jsx)("a",{href:"https://www.ratehawk.com/",target:"_blank",rel:"noreferrer",children:(0,o.jsx)(e=>i.createElement("svg",g({xmlns:"http://www.w3.org/2000/svg",height:61,fill:"none",viewBox:"0 0 202 61"},e),p||(p=i.createElement("path",{fill:"var(--general-color)",d:"m162.762 38.47-2.883-18.28h-7.867l-3.517 22.29h4.857l.026-.178.187-1.397.325-2.435h4.113l.517 3.877.018.134h4.857l-.111-.708zm-8.306-4.16 1.489-10.848 1.49 10.848zM179.455 38.5l-1.997-18.31h-6.079l-1.876 18.34-1.431-18.34h-4.618l2.414 22.29h6.854l1.757-18.336 1.848 18.337h6.764l2.413-22.29h-4.62zM196.7 30.654l4.41-10.463h-5.274l-3.693 10.611V20.191h-5.007v22.29h5.007V31.842l3.635 10.639h5.542zM81.256 30.253q1.028-1.324 1.028-3.402v-.861q0-1.9-.848-3.18-.85-1.279-2.338-1.947-1.491-.67-3.398-.67h-7.45v22.29h5.006V31.517l4.022 10.966h5.571L78.53 32.17q1.701-.598 2.727-1.918m-3.978-2.99q-.001 1.488-.611 2.141-.612.655-1.654.655h-1.757v-3.654a2.055 2.055 0 0 0-2.058-2.052h3.8149999999999995q1.042 0 1.654.549.61.55.61 1.946zM94.679 20.19h-7.867L83.93 38.47l-.634 4.01h4.858l.535-4.01h4.113l.535 4.01h4.857l-.633-4.01zm-5.423 14.12 1.49-10.848 1.49 10.848zM97.752 24.502h3.633V42.48h5.067V24.5h3.635v-4.31H97.752zM111.871 24.502V42.48h11.144v-4.309h-6.138v-4.905h6.138V28.96h-6.138v-4.457h6.138V20.19h-11.144zM141.791 28.87h-4.469v-8.68h-5.064v22.288h5.064v-7.216a2.055 2.055 0 0 0-2.057-2.053h6.526v9.272h5.064V20.19h-5.064z"})),_||(_=i.createElement("path",{fill:"var(--logo-accent-color)",d:"M56.213 18.304 38.056 7.849 25.143.41l3.572 4.999c.833 1.165-.43 2.679-1.732 2.07L15.695 2.197l22.36 17.418s8.481 6.433 11.26 8.735c.493.408.829.974.95 1.604l.868 4.557c.9 4.284-.762 5.893-2.368 6.857l-1.981 1.184.31-2.425c.124-.932-.076-1.3-.636-1.637l-4.84-2.697a2.3 2.3 0 0 0-.901-.297C37.487 35.054.32 29.801.32 29.801l17.228 5.767c1.359.455 1.23 2.412-.176 2.686l-5.264 1.033 24.024 13.89a4.2 4.2 0 0 0 4.186.004c4.062-2.331 12.88-7.393 15.88-9.123a4.18 4.18 0 0 0 2.093-3.603c.018-5.504.018-18.533.018-18.533a4.17 4.17 0 0 0-2.096-3.618"})),f||(f=i.createElement("path",{fill:"var(--logo-accent-color)",d:"M44.752 32.185a1.54 1.54 0 0 0 2.022.8c.553-.238.886-.765.917-1.326l-6.62-3.918s-.065.377.144.576c.22.21 2.583 2.181 3.464 2.916-.076.308-.06.64.073.952"}))),{className:v.logo})}),N=({theme:e="dark",className:t="",menu:a,subMenu:s,extraRightContent:c,fluidMode:u,zIndex:m=1,onLoginClick:h,onRegisterClick:p})=>{const _=(0,n.u)(u),f=v[e],g=s&&s.length>0,[N,y]=(0,i.useState)(!1),[C,M]=(0,i.useState)(!1),[L,H]=(0,i.useState)(!1),[T,A]=(0,i.useState)(!1),S=(0,i.useRef)(null),E=(0,i.useRef)(null),F=a?.map(k)||[];let B=F;if(g){const e=s?.map(k)||[];B=[...F,(0,o.jsxs)("li",{children:[(0,o.jsx)("button",{type:"button",onClick:()=>H(!L),className:(0,r.L)(v.menuLink,_,v.subMenuOpener,j,L?v.subMenuOpenerActive:""),children:(0,o.jsx)("span",{className:v.menuLinkText,children:"More"})}),(0,o.jsx)("ul",{className:(0,r.L)(v.subNavList,L?v.subNavListOpened:"",j),children:e})]},"submenu")],F.push(...e)}const O=(0,i.useCallback)((()=>{let e=!1;return(...t)=>{e||((()=>{if(!S.current||!E.current)return;const e=E.current.getBoundingClientRect().right,t=S.current.getBoundingClientRect().left-e<20;y(t),A(!0),t?H(!1):M(!1)})(...t),e=!0,setTimeout(()=>{e=!1},100))}})(),[]),I=(0,o.jsxs)(o.Fragment,{children:[(0,o.jsx)(l.A,{theme:"secondary",variant:"dark"===e?"white":"black",url:"https://www.ratehawk.com/accounts/login/?lang=en&ref=rh_sign_in",onClick:h,children:"Sign in"}),(0,o.jsx)(l.A,{url:"https://www.ratehawk.com/registration/?lang=en&ref=rh_register",onClick:p,children:"Register"})]}),P=(0,i.useCallback)(e=>{if(!(e.target instanceof HTMLElement))return;const t=e.target.closest(`.${b}`),a=e.target.closest(`.${j}`);t||M(!1),a||H(!1)},[]);return(0,i.useEffect)(()=>(window.addEventListener("resize",O),window.addEventListener("click",P),O(),()=>{window.removeEventListener("resize",O),window.removeEventListener("click",P)}),[O,P]),(0,o.jsxs)("div",{className:(0,r.L)(v.root,t,f,_),style:{zIndex:m},children:[(0,o.jsxs)("div",{className:(0,r.L)(v.header,v.wideHeader,N?v.hidden:""),children:[(0,o.jsxs)("div",{className:v.leftContainer,ref:E,children:[w,(0,o.jsx)("nav",{className:v.navMenu,children:(0,o.jsx)("ul",{className:v.navList,children:B})})]}),(0,o.jsxs)("div",{className:(0,r.L)(v.rightContainer,!T&&v.hidden),ref:S,children:[c,I]})]}),(0,o.jsxs)("div",{className:(0,r.L)(v.header,v.compactHeader,N?v.visible:""),children:[(0,o.jsx)("div",{className:v.leftContainer,children:w}),(0,o.jsxs)("div",{className:v.rightContainer,children:[c,(0,o.jsx)("div",{className:v.burgerMenuContainer,children:(0,o.jsx)("button",{className:v.burgerMenuButton,onClick:()=>M(!C),type:"button",children:C?(0,o.jsx)(x,{}):(0,o.jsx)(d,{})})})]}),C&&(0,o.jsxs)("div",{className:(0,r.L)(v.burgerMenu,b),children:[F.length?(0,o.jsxs)(o.Fragment,{children:[(0,o.jsx)("nav",{className:v.navMenu,children:(0,o.jsx)("ul",{className:v.navList,children:F})}),(0,o.jsx)("div",{className:v.separator})]}):null,(0,o.jsx)("div",{className:v.burgerButtons,children:I})]})]})]})};function k(e){const t=e.url?"a":"button",a=e.url?{target:"_blank",href:e.url}:{type:"button"};return(0,o.jsx)("li",{children:(0,o.jsx)(t,{className:v.menuLink,onClick:e.onClick,...a,children:(0,o.jsx)("span",{className:v.menuLinkText,children:e.title})})},e.title)}},110:(e,t,a)=>{a.d(t,{A:()=>m});var s,o,l=a(178),n=a(130),r=a(39),i=a(649);function c(){return c=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var s in a)({}).hasOwnProperty.call(a,s)&&(e[s]=a[s])}return e},c.apply(null,arguments)}const d=e=>i.createElement("svg",c({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 98 91"},e),s||(s=i.createElement("path",{fill:"#FEDD00",d:"M94.277 30.26 63.65 12.58 41.87 0l6.025 8.453c1.406 1.972-.724 4.53-2.921 3.5l-19.04-8.93L63.65 32.48s14.304 10.88 18.993 14.772a4.67 4.67 0 0 1 1.601 2.713l1.465 7.708c1.516 7.243-1.286 9.964-3.995 11.595l-3.342 2.002.523-4.101c.21-1.576-.127-2.198-1.073-2.768l-8.163-4.56c-.468-.282-.98-.431-1.52-.503C62.692 58.587 0 49.704 0 49.704l29.06 9.752c2.29.77 2.073 4.08-.299 4.544l-8.878 1.746 40.523 23.489a7.07 7.07 0 0 0 7.06.008C74.318 85.3 89.192 76.741 94.25 73.815a7.07 7.07 0 0 0 3.53-6.094c.03-9.309.03-31.342.03-31.342a7.06 7.06 0 0 0-3.534-6.119"})),o||(o=i.createElement("path",{fill:"#FEDD00",d:"M74.944 53.737a2.594 2.594 0 0 0 3.41 1.354 2.59 2.59 0 0 0 1.547-2.244L68.735 46.22s-.11.639.243.975c.37.353 4.356 3.688 5.842 4.931a2.54 2.54 0 0 0 .124 1.61"}))),u="HeroSection-module__sloganText--_hwUn",m=({yellowText:e,whiteText:t,showLogo:a=!0,backgroundMobile:s,backgroundMobile2x:o,backgroundDesktop:i,backgroundDesktop2x:c,fluidMode:m})=>{const h=(0,n.u)(m);return(0,l.jsx)("section",{className:(0,r.L)("HeroSection-module__hero--lpuv4",h),style:{"--background-mobile":`url("${s}")`,"--background-mobile-2x":`url("${o}")`,"--background-desktop":`url("${i}")`,"--background-desktop-2x":`url("${c}")`},children:(0,l.jsx)("div",{className:"HeroSection-module__heroContainer--brVZ4",children:(0,l.jsxs)("div",{className:"HeroSection-module__slogan--rRTe6",children:[e&&(0,l.jsx)("div",{className:(0,r.L)(u,"HeroSection-module__sloganYellow--lIwpd"),dangerouslySetInnerHTML:{__html:e}}),t&&(0,l.jsx)("div",{className:(0,r.L)(u,"HeroSection-module__sloganWhite--SWr8l"),dangerouslySetInnerHTML:{__html:t}}),a&&(0,l.jsx)(d,{className:"HeroSection-module__heroLogo--t3ggG"})]})})})}},130:(e,t,a)=>{a.d(t,{N:()=>o,u:()=>l}),a(178);var s=a(992);const o=({children:e,fluidMode:t=!1})=>{fluidModeState.state=t;const a=`\n @font-face {\n font-family: 'Aeonik';\n src: url('https://of.worldota.net/fonts/aeonik/Aeonik-Bold.woff2') format('woff2');\n font-weight: 900;\n font-style: normal;\n font-display: swap;\n }\n\n @font-face {\n font-family: 'Aeonik';\n src: url('https://of.worldota.net/fonts/aeonik/Aeonik-Regular.woff2') format('woff2');\n font-weight: 400;\n font-style: normal;\n font-display: swap;\n }\n\n @font-face {\n font-family: 'ABCGravity';\n src: url('https://of.worldota.net/fonts/ABCGravity/ABCGravity.woff2') format('woff2');\n font-weight: 900;\n font-style: normal;\n font-display: swap;\n }\n \n ${t?fluidLayoutCss:staticLayoutCss};\n `;return _jsxs(_Fragment,{children:[_jsx("style",{dangerouslySetInnerHTML:{__html:a}}),e]})},l=e=>("boolean"==typeof e?e:s.b.state)?"layout-module__fluidLayout--BNE04":"layout-module__staticLayout--x_6dR"},178:(t,a,s)=>{var o,l;t.exports=(o={Fragment:()=>e.Fragment,jsx:()=>e.jsx,jsxs:()=>e.jsxs},l={},s.d(l,o),l)},268:(e,t,a)=>{a.d(t,{A:()=>r});var s=a(178),o=a(130),l=a(39);const n={text:"Button-module__text--holIg",root:"Button-module__root--Knp7O",hidden:"Button-module__hidden--Q6Ztq",s:"Button-module__s--o9reb",m:"Button-module__m--ZGRqJ",withMediaDimension:"Button-module__withMediaDimension--Z_A5M",primary:"Button-module__primary--V9FFQ",purple:"Button-module__purple--biF8d",black:"Button-module__black--Iz790",secondary:"Button-module__secondary--_9J0r",white:"Button-module__white--l3jcr",isLoading:"Button-module__isLoading--u5f2m",spinner:"Button-module__spinner--Zj28d",spin:"Button-module__spin--lWtk7"},r=({className:e,children:t,dimension:a="s",theme:r="primary",onClick:i,disabled:c=!1,type:d="button",variant:u="purple",url:m,isLoading:h,enableMediaDimension:x=!0,fluidMode:p})=>{const _=n[a]||"",f=n[r]||"",g=n[u],v=(0,o.u)(p),b=x?n.withMediaDimension:"",j=m?"a":"button",w=m?{target:"_blank",href:m}:{type:d},N=h?n.isLoading:"";return(0,s.jsxs)(j,{...w,onClick:i,className:(0,l.L)(n.root,e,v,_,f,N,g,b),disabled:c,children:[h?(0,s.jsx)("span",{className:n.spinner}):null,(0,s.jsx)("span",{className:(0,l.L)(n.text,h?n.hidden:null),children:t})]})}},374:(e,t,a)=>{a.d(t,{A:()=>L});var s,o=a(178),l=a(268),n=a(130),r=a(39),i=a(649);function c(){return c=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var s in a)({}).hasOwnProperty.call(a,s)&&(e[s]=a[s])}return e},c.apply(null,arguments)}const d=e=>i.createElement("svg",c({xmlns:"http://www.w3.org/2000/svg",width:31,height:31,fill:"none"},e),s||(s=i.createElement("path",{stroke:"#fff",strokeWidth:2,d:"M15.207 29.967c-7.732 0-14-6.268-14-14s6.268-14 14-14 14 6.268 14 14-6.268 14-14 14Zm0 0v-16a4 4 0 0 1 4-4h1m-10 8h10"})));var u;function m(){return m=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var s in a)({}).hasOwnProperty.call(a,s)&&(e[s]=a[s])}return e},m.apply(null,arguments)}const h=e=>i.createElement("svg",m({xmlns:"http://www.w3.org/2000/svg",width:31,height:31,fill:"none"},e),u||(u=i.createElement("path",{stroke:"#fff",strokeWidth:2,d:"M9.54 12.967v10m12 0v-5a4 4 0 1 0-8 0v5-10m-5-3h2m-7-8h24a2 2 0 0 1 2 2v24a2 2 0 0 1-2 2h-24a2 2 0 0 1-2-2v-24a2 2 0 0 1 2-2Z"}))),x=/^([^\x00-\x20\x22\x28\x29\x2c\x2e\x3a-\x3c\x3e\x40\x5b-\x5d\x7f-\xff]+|\x22([^\x0d\x22\x5c\x80-\xff]|\x5c[\x00-\x7f])*\x22)(\x2e([^\x00-\x20\x22\x28\x29\x2c\x2e\x3a-\x3c\x3e\x40\x5b-\x5d\x7f-\xff]+|\x22([^\x0d\x22\x5c\x80-\xff]|\x5c[\x00-\x7f])*\x22))*\x40([^\x00-\x20\x22\x28\x29\x2c\x2e\x3a-\x3c\x3e\x40\x5b-\x5d\x7f-\xff]+|\x5b([^\x0d\x5b-\x5d\x80-\xff]|\x5c[\x00-\x7f])*\x5d)(\x2e([^\x00-\x20\x22\x28\x29\x2c\x2e\x3a-\x3c\x3e\x40\x5b-\x5d\x7f-\xff]+|\x5b([^\x0d\x5b-\x5d\x80-\xff]|\x5c[\x00-\x7f])*\x5d))*$/;var p;function _(){return _=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var s in a)({}).hasOwnProperty.call(a,s)&&(e[s]=a[s])}return e},_.apply(null,arguments)}const f=e=>i.createElement("svg",_({xmlns:"http://www.w3.org/2000/svg",width:24,height:24,stroke:"currentColor",strokeWidth:1.5},e),p||(p=i.createElement("path",{d:"m4 4 16 16m0-16L4 20"}))),g="ContactModal-module__field--c99HI",v="ContactModal-module__inputWrapper--e2l3N",b="ContactModal-module__inputWrapperError--s_bqB",j="ContactModal-module__input--wuaB7",w="ContactModal-module__error--jso6D",N=({isOpen:e,onClose:t,fluidMode:a})=>{const s=(0,n.u)(a),[c,d]=(0,i.useState)({firstName:"",phone:"",email:"",companyName:"",message:""}),[u,m]=(0,i.useState)(!1),[h,p]=(0,i.useState)(!1),[_,N]=(0,i.useState)({}),k=(0,i.useCallback)(()=>{const e={};return c.firstName.trim()||(e.firstName="First Name is required"),c.phone.trim()?c.phone.replace(/\D/g,"").length>=7||(e.phone="Phone must contain at least 7 digits"):e.phone="Phone is required",c.email.trim()?function(e){return x.test(e)}(c.email)||(e.email="Please enter a valid email"):e.email="Email is required",c.companyName.trim()||(e.companyName="Company Name is required"),N(e),0===Object.keys(e).length},[c]),y=(0,i.useCallback)(async e=>{if(e.preventDefault(),k()){m(!0);try{const e={brand:"ratehawk",cooperation_type:"api",kind:"b2b",white_label_slug:"ratehawk",email:c.email,message:c.message,company_name:c.companyName,name:c.firstName,phone:c.phone};if(!(await fetch("https://www.ratehawk.com/partner/user_area/v1/anonymous/contact_us/",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(e)})).ok)throw new Error("Failed to submit form");p(!0)}catch(e){console.error("Form submission error:",e)}finally{m(!1)}}},[c,k]),C=(0,i.useCallback)(e=>t=>{d(a=>({...a,[e]:t.target.value})),_[e]&&N(t=>({...t,[e]:void 0}))},[_]),M=(0,i.useCallback)(()=>{d({firstName:"",phone:"",email:"",companyName:"",message:""}),N({}),p(!1),t()},[t]);return e?(0,o.jsx)("div",{className:(0,r.L)("ContactModal-module__overlay--ti1yT",s),onClick:M,children:(0,o.jsxs)("div",{className:"ContactModal-module__modal--Xzwl2",onClick:e=>e.stopPropagation(),children:[(0,o.jsx)("button",{className:(0,r.L)("ContactModal-module__closeButton--qvADd",s),onClick:M,type:"button",children:(0,o.jsx)(f,{})}),h?(0,o.jsxs)("div",{className:"ContactModal-module__successMessage--Nyhi4",children:[(0,o.jsx)("h2",{className:"ContactModal-module__successTitle--dVn02",children:"Successfully accepted"}),(0,o.jsx)("p",{className:"ContactModal-module__successText--KJznx",children:"Your application has flown to our caring specialists! We will contact you soon"})]}):(0,o.jsxs)(o.Fragment,{children:[(0,o.jsx)("h2",{className:"ContactModal-module__title--XrI8J",children:(0,o.jsx)("span",{className:"ContactModal-module__titleText--HH4uj",children:"Cooperation"})}),(0,o.jsx)("p",{className:"ContactModal-module__subtitle--dS9UA",children:"Drop us a line and we will get back to you as soon as possible!"}),(0,o.jsxs)("form",{className:"ContactModal-module__form--XuQzj",onSubmit:y,children:[(0,o.jsxs)("div",{className:g,children:[(0,o.jsx)("label",{className:`${v} ${_.firstName?b:""}`,children:(0,o.jsx)("input",{type:"text",className:j,value:c.firstName,onChange:C("firstName"),placeholder:"First Name *"})}),_.firstName&&(0,o.jsx)("span",{className:w,children:_.firstName})]}),(0,o.jsxs)("div",{className:g,children:[(0,o.jsx)("label",{className:`${v} ${_.phone?b:""}`,children:(0,o.jsx)("input",{type:"tel",className:j,value:c.phone,onChange:C("phone"),placeholder:"Phone *"})}),_.phone&&(0,o.jsx)("span",{className:w,children:_.phone})]}),(0,o.jsxs)("div",{className:g,children:[(0,o.jsx)("label",{className:`${v} ${_.email?b:""}`,children:(0,o.jsx)("input",{type:"email",className:j,value:c.email,onChange:C("email"),placeholder:"Email Address *"})}),_.email&&(0,o.jsx)("span",{className:w,children:_.email})]}),(0,o.jsxs)("div",{className:g,children:[(0,o.jsx)("label",{className:`${v} ${_.companyName?b:""}`,children:(0,o.jsx)("input",{type:"text",className:j,value:c.companyName,onChange:C("companyName"),placeholder:"Company Name *"})}),_.companyName&&(0,o.jsx)("span",{className:w,children:_.companyName})]}),(0,o.jsx)("div",{className:g,children:(0,o.jsx)("label",{className:"ContactModal-module__textareaWrapper--rSQEQ",children:(0,o.jsx)("textarea",{className:"ContactModal-module__textarea--i19oy",value:c.message,onChange:C("message"),placeholder:"Message",rows:4})})}),(0,o.jsx)(l.A,{type:"submit",theme:"primary",variant:"white",disabled:u,className:"ContactModal-module__submitButton--qbQOa",children:u?"Sending...":"Send"})]})]})]})}):null},k="Footer-module__footerLink--ipb6W",y="Footer-module__footerLegalText--xlXoo",C="Footer-module__footerParagraphSection--rin95",M=[{title:"For marketing and PR",text:"We regularly run promotions, campaigns, and partner events to engage and incentivize our clients with special offers. If you interested in such partnership please contact us at {{link}}.",link:"pr@emergingtravel.com",button:{text:"Cooperate",action:"form"},cssClass:"Footer-module__marketingBlock--DnIGu"},{title:"For affiliates partnerships",text:"Integrate our solution to make it easy and profitable to book hotels through your website or online service. Integrate quickly and reliably with our system. Still have questions? Contact us at {{link}}.",link:"affiliate@emergingtravel.com",button:{text:"Learn more",url:"https://www.ratehawk.com/lp/en-us/travel-related-websites/"},cssClass:"Footer-module__affiliatesBlock--jVQ0L"},{title:"For suppliers",text:"As official partners of the world's largest OTA, wholesalers, consolidators, and DMCs, we invite you to enhance your sales and grow your business together. Contact us at {{link}}.",link:"tpp@emergingtravel.com",button:{text:"Cooperate",action:"form"},cssClass:"Footer-module__suppliersBlock--yrn9l"},{title:"For hotels",text:"Become our partner to increase your direct sales and the popularity of your accommodation options. \u2028For partnership inquiries, please contact us at {{link}}.",link:"hotels@emergingtravel.com",button:{text:"Learn more",url:"https://www.ratehawk.com/lp/en-us/travel-related-websites/"},cssClass:"Footer-module__hotelsBlock--uGUyj"},{title:"For technology providers",text:"If you are a mid-office or platform interested in integrating with RateHawk to develop your business, please contact us at {{link}}.",link:"api@ratehawk.com",button:{text:"Cooperate",action:"form"},cssClass:"Footer-module__providersBlock--Zmk8W"}],L=({className:e="",fluidMode:t})=>{const[a,s]=(0,i.useState)(!1),c=(0,n.u)(t),u=(0,i.useCallback)(()=>{s(!0)},[]),m=(0,i.useCallback)(()=>{s(!1)},[]);return(0,o.jsxs)(o.Fragment,{children:[(0,o.jsxs)("footer",{className:(0,r.L)("Footer-module__root--T9ly6",e,c),children:[(0,o.jsxs)("div",{className:"Footer-module__header--hy1ME",children:[(0,o.jsx)("p",{className:"Footer-module__title--OX7d9",children:"Partnership"}),(0,o.jsx)("p",{className:"Footer-module__subTitle--EmP0b",children:"Cooperate and grow together with RateHawk"})]}),(0,o.jsx)("ul",{className:"Footer-module__advantages--z7ASK",children:M.map(e=>(0,o.jsxs)("li",{className:(0,r.L)("Footer-module__advantageItem--EcCx_",e.cssClass),children:[(0,o.jsxs)("div",{className:"Footer-module__advantageInfo--Ilud0",children:[(0,o.jsx)("h6",{className:"Footer-module__advantageTitle--spnaR",children:(0,o.jsx)("span",{className:"Footer-module__advantageTitleText--cMrU_",children:e.title})}),(0,o.jsx)("p",{className:"Footer-module__advantageText--BHbmo",dangerouslySetInnerHTML:{__html:e.text.replace("{{link}}",`<a class="Footer-module__advantageLink--bcoK8" href="mailto:${e.link}">${e.link}</a>`)}})]}),(0,o.jsx)(l.A,{theme:"secondary",variant:"white",...e.button.url?{url:e.button.url}:{onClick:u},children:e.button.text})]},e.title))}),(0,o.jsxs)("div",{className:"Footer-module__footerBottom--u_o7y",children:[(0,o.jsxs)("div",{className:"Footer-module__footerLeft--nnkZo",children:[(0,o.jsxs)("div",{className:"Footer-module__social--H1Yw4",children:[(0,o.jsx)("a",{href:"https://www.facebook.com/ratehawk",target:"_blank",rel:"noopener noreferrer",children:(0,o.jsx)(d,{})}),(0,o.jsx)("a",{href:"https://www.linkedin.com/company/ratehawk-com/",target:"_blank",rel:"noopener noreferrer",children:(0,o.jsx)(h,{})})]}),(0,o.jsxs)("ul",{className:"Footer-module__footerLinks--R9Hnr",children:[(0,o.jsx)("li",{children:(0,o.jsx)("a",{href:"https://www.ratehawk.com/lp/en-us/career",target:"_blank",rel:"noopener noreferrer",className:k,children:"Careers"})}),(0,o.jsx)("li",{children:(0,o.jsx)("a",{href:"https://blog.ratehawk.com/",target:"_blank",rel:"noopener noreferrer",className:k,children:"Blog"})})]})]}),(0,o.jsxs)("div",{className:"Footer-module__footerLegal--jAGGe",children:[(0,o.jsxs)("div",{className:C,children:[(0,o.jsx)("p",{className:y,children:"Leaside Services Limited, reg.no HE342401, Business Address: 17 Karaiskaki Street, Office 22, Agaia Triada, Limassol, Cyprus, 3032 Emerging Travel Inc., reg.no 4869611, Business Address: 1000 N West Street, Suite 1200, Wilmington, DE 19801 USA EMERGING TRAVEL UK LIMITED, Company number 12185384, Business Address: 19 Eastbourne Terrace, Office 3.01, Paddington, London, W2 6LG, UK"}),(0,o.jsx)("p",{className:y,children:"Emerging Travel Germany ETG GmbH, HRB 213546, Business Address: Friedrichstraße 171, 10117 Berlin, Germany"}),(0,o.jsx)("p",{className:y,children:"Emerging Travel Kazakhstan LLP, BIN 191240026456, Business address: Office SP2-18, 280 Baizakova Street, Bostandykskiy district, 050040, Almaty, Republic of Kazakhstan"}),(0,o.jsx)("p",{className:y,children:"Smart Middle East Travel Agency L.L.C, Reg.no: 1803677, Business address: Al Rigga - Office No. 202-201-221, Insurance Building, Dubai, UAE"}),(0,o.jsx)("p",{className:y,children:"Emerging Travel Asia PTE. LTD, Reg.no: 201927854K, TA license: TA03682, Business address: 300 Tampines Avenue 5 #09-02, Tampines Junction Singapore 529653"})]}),(0,o.jsx)("div",{className:C,children:(0,o.jsx)("p",{className:y,children:(0,o.jsx)("a",{href:"https://www.ratehawk.com/legal/site/privacy-policy/",target:"_blank",rel:"noopener noreferrer",children:"Personal data processing and storage policy"})})}),(0,o.jsx)("div",{className:C,children:(0,o.jsx)("p",{className:y,children:"Digital Services Act"})}),(0,o.jsx)("div",{className:C,children:(0,o.jsx)("p",{className:y,children:"Ratehawk is a registered service mark in the European Union"})})]})]})]}),(0,o.jsx)(N,{isOpen:a,onClose:m,fluidMode:t})]})}},627:(e,t,a)=>{a.d(t,{A:()=>s.A});var s=a(374)},649:(e,a,s)=>{var o,l;e.exports=(o={createElement:()=>t.createElement,useCallback:()=>t.useCallback,useEffect:()=>t.useEffect,useRef:()=>t.useRef,useState:()=>t.useState},l={},s.d(l,o),l)},670:(e,t,a)=>{a.d(t,{A:()=>r});var s=a(178),o=a(130),l=a(39);const n={root:"HotelCard-module__root--popq0",rootFixed:"HotelCard-module__rootFixed--TvjpT",clickable:"HotelCard-module__clickable--mp25I",imageContainer:"HotelCard-module__imageContainer--FZfWz",image:"HotelCard-module__image--fREMp",discount:"HotelCard-module__discount--G2sau",discountText:"HotelCard-module__discountText--hH9Sf",content:"HotelCard-module__content--IA_3z",stars:"HotelCard-module__stars--jTODO",starFilled:"HotelCard-module__starFilled--Ps4vk",starEmpty:"HotelCard-module__starEmpty--FBbdo",title:"HotelCard-module__title--BOmwo",location:"HotelCard-module__location--uglfh",dates:"HotelCard-module__dates--mhAjB",priceInfoWrapper:"HotelCard-module__priceInfoWrapper--fplFE",priceInfo:"HotelCard-module__priceInfo--qLmoQ",bookNowText:"HotelCard-module__bookNowText--pgznJ",mainPriceText:"HotelCard-module__mainPriceText--wIEbi",infoPriceText:"HotelCard-module__infoPriceText--GSy_s"},r=({className:e="",name:t,location:a,stars:r,image:i,dates:c,discountText:d,onClick:u,url:m,width:h="auto",price:x,fluidMode:p})=>{const _=(0,o.u)(p),f=m?"a":"div",g=m?{href:m,target:"_blank",rel:"noopener noreferrer"}:{};return(0,s.jsxs)(f,{className:(0,l.L)(n.root,_,"fixed"===h&&n.rootFixed,e,m&&n.clickable),onClick:u,...g,children:[(0,s.jsxs)("div",{className:n.imageContainer,children:[(0,s.jsx)("img",{src:i,alt:t,className:n.image}),d?(0,s.jsx)("div",{className:n.discount,children:(0,s.jsx)("span",{className:n.discountText,dangerouslySetInnerHTML:{__html:d}})}):null]}),(0,s.jsxs)("div",{className:n.content,children:[(()=>{if(!r)return null;const e=[];for(let a=0;a<5;a++)e.push((0,s.jsx)("div",{className:a<r?n.starFilled:n.starEmpty},`star-${t}-${a}`));return(0,s.jsx)("div",{className:n.stars,children:e})})(),(0,s.jsx)("h3",{className:n.title,children:t}),a&&(0,s.jsx)("p",{className:n.location,children:a}),c&&(0,s.jsxs)("p",{className:n.dates,children:["Travel Dates: ",c]}),(0,s.jsx)("div",{className:n.priceInfoWrapper,children:(0,s.jsx)("div",{className:n.priceInfo,children:x?(0,s.jsxs)("div",{className:n.priceText,children:[(0,s.jsxs)("div",{className:n.mainPriceText,children:["From ",(0,s.jsx)("strong",{children:x})]}),(0,s.jsx)("div",{className:n.infoPriceText,children:(0,s.jsx)("span",{children:"For 1 night and 2 guests"})})]}):(0,s.jsx)("div",{className:n.bookNowText,children:"Book now"})})})]})]})}},697:(e,t,a)=>{a.d(t,{A:()=>d});var s=a(178),o=a(130),l=a(39),n=a(374),r=a(94),i=a(110);var c=a(93);const d=({className:e="",heroYellowText:t,heroWhiteText:a,hotelsTitle:d,hotelsSubtitle:u,hotels:m,backgroundMobile:h,backgroundMobile2x:x,backgroundDesktop:p,backgroundDesktop2x:_,heroLogo:f=!0,fluidMode:g,onLoginClick:v,onRegisterClick:b})=>{const j=(0,o.u)(g);return(0,s.jsxs)("div",{className:(0,l.L)("HotelsLanding-module__root--JnV8j",j,e),children:[(0,s.jsx)(r.A,{onLoginClick:v,onRegisterClick:b,fluidMode:g}),(0,s.jsxs)("main",{children:[(0,s.jsx)(i.A,{yellowText:t,whiteText:a,showLogo:f,backgroundMobile:h,backgroundMobile2x:x,backgroundDesktop:p,backgroundDesktop2x:_}),(0,s.jsx)(c.A,{title:d,subtitle:u,hotels:m,fluidMode:g})]}),(0,s.jsx)(n.A,{})]})}},782:(e,t,a)=>{a.d(t,{A:()=>s.A});var s=a(93)},793:(e,t,a)=>{a.d(t,{A:()=>s.A});var s=a(94)},924:(e,t,a)=>{a.d(t,{A:()=>s.A});var s=a(670)},992:(e,t,a)=>{a.d(t,{b:()=>s}),globalThis.__fluidModeState||(globalThis.__fluidModeState={state:!1});const s=globalThis.__fluidModeState}},s={};function o(e){var t=s[e];if(void 0!==t)return t.exports;var l=s[e]={exports:{}};return a[e](l,l.exports,o),l.exports}o.d=(e,t)=>{for(var a in t)o.o(t,a)&&!o.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:t[a]})},o.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),o.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var l={};o.r(l),o.d(l,{Button:()=>n.A,Footer:()=>r.A,Header:()=>i.A,HeroSection:()=>c.A,HotelCard:()=>d.A,HotelsLanding:()=>u.A,HotelsSection:()=>m.A});var n=o(268),r=o(627),i=o(793),c=o(67),d=o(924),u=o(697),m=o(782),h=o(992);export{l as RHComponents};export const fluidModeState=h.b;
@@ -7,6 +7,7 @@ export interface HeroSectionProps {
7
7
  backgroundMobile2x: string;
8
8
  backgroundDesktop: string;
9
9
  backgroundDesktop2x: string;
10
+ fluidMode?: boolean;
10
11
  }
11
12
  declare const HeroSection: React.FC<HeroSectionProps>;
12
13
  export default HeroSection;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"HeroSection.d.ts","sourceRoot":"","sources":["../../../src/rh-components/HeroSection/HeroSection.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAI/B,MAAM,WAAW,gBAAgB;IAC/B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,gBAAgB,EAAE,MAAM,CAAC;IACzB,kBAAkB,EAAE,MAAM,CAAC;IAC3B,iBAAiB,EAAE,MAAM,CAAC;IAC1B,mBAAmB,EAAE,MAAM,CAAC;IAC5B,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB;AAED,QAAA,MAAM,WAAW,EAAE,KAAK,CAAC,EAAE,CAAC,gBAAgB,CA0C3C,CAAC;AAEF,eAAe,WAAW,CAAC"}
@@ -0,0 +1,120 @@
1
+ .layout-module__fluidLayout--BNE04[class] {
2
+ font-size: 1rem;
3
+ }
4
+
5
+ .layout-module__staticLayout--x_6dR[class] {
6
+ font-size: 1px;
7
+ }
8
+
9
+ .HeroSection-module__hero--lpuv4 {
10
+ background-color: #ccc;
11
+ background-repeat: no-repeat;
12
+ background-image: var(--background-mobile);
13
+ background-position: center;
14
+ background-size: cover;
15
+ display: flex;
16
+ }
17
+
18
+ @media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
19
+
20
+ .HeroSection-module__hero--lpuv4 {
21
+ background-image: var(--background-mobile-2x);
22
+ }
23
+ }
24
+
25
+ @media (min-width: 500px) {
26
+
27
+ .HeroSection-module__hero--lpuv4 {
28
+ background-image: var(--background-desktop);
29
+ }
30
+
31
+ @media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
32
+
33
+ .HeroSection-module__hero--lpuv4 {
34
+ background-image: var(--background-desktop-2x);
35
+ }
36
+ }
37
+ }
38
+
39
+ .HeroSection-module__heroContainer--brVZ4 {
40
+ display: flex;
41
+ justify-content: end;
42
+ width: 100%;
43
+ max-width: 1448px;
44
+ margin: 0 auto;
45
+ padding: 26em 15em;
46
+ box-sizing: border-box;
47
+ }
48
+
49
+ @media (min-width: 500px) {
50
+
51
+ .HeroSection-module__heroContainer--brVZ4 {
52
+ padding: 16em 44em;
53
+ min-height: 320em;
54
+ }
55
+ }
56
+
57
+ @media (min-width: 1152px) {
58
+
59
+ .HeroSection-module__heroContainer--brVZ4 {
60
+ min-height: 670em;
61
+ }
62
+ }
63
+
64
+ .HeroSection-module__slogan--rRTe6 {
65
+ display: flex;
66
+ flex-direction: column;
67
+ justify-content: center;
68
+ align-items: flex-end;
69
+ width: auto;
70
+ text-align: right;
71
+ font-family: var(--font-secondary, "ABCGravity", sans-serif);
72
+ font-weight: 900;
73
+ }
74
+
75
+ .HeroSection-module__sloganText--_hwUn {
76
+ font-size: 45em;
77
+ line-height: 90%;
78
+ text-transform: uppercase;
79
+ }
80
+
81
+ @media (min-width: 500px) {
82
+
83
+ .HeroSection-module__sloganText--_hwUn {
84
+ font-size: 60em;
85
+ }
86
+ }
87
+
88
+ @media (min-width: 1152px) {
89
+
90
+ .HeroSection-module__sloganText--_hwUn {
91
+ font-size: 115em;
92
+ }
93
+ }
94
+
95
+ .HeroSection-module__sloganYellow--lIwpd {
96
+ color: #f5d742;
97
+ }
98
+
99
+ .HeroSection-module__sloganWhite--SWr8l {
100
+ color: #fff;
101
+ }
102
+
103
+ .HeroSection-module__heroLogo--t3ggG {
104
+ width: 33em;
105
+ }
106
+
107
+ @media (min-width: 500px) {
108
+
109
+ .HeroSection-module__heroLogo--t3ggG {
110
+ width: 49em;
111
+ }
112
+ }
113
+
114
+ @media (min-width: 1152px) {
115
+
116
+ .HeroSection-module__heroLogo--t3ggG {
117
+ width: 97em;
118
+ }
119
+ }
120
+
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/rh-components/HeroSection/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AACtD,OAAO,EAAE,OAAO,EAAE,MAAM,eAAe,CAAC"}
@@ -0,0 +1 @@
1
+ import*as o from"react/jsx-runtime";import*as e from"react";var t={39:(o,e,t)=>{t.d(e,{L:()=>n});const n=(...o)=>o.filter(Boolean).join(" ")},110:(o,e,t)=>{t.d(e,{A:()=>u});var n,a,l=t(178),r=t(130),s=t(39),i=t(649);function d(){return d=Object.assign?Object.assign.bind():function(o){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var n in t)({}).hasOwnProperty.call(t,n)&&(o[n]=t[n])}return o},d.apply(null,arguments)}const f=o=>i.createElement("svg",d({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 98 91"},o),n||(n=i.createElement("path",{fill:"#FEDD00",d:"M94.277 30.26 63.65 12.58 41.87 0l6.025 8.453c1.406 1.972-.724 4.53-2.921 3.5l-19.04-8.93L63.65 32.48s14.304 10.88 18.993 14.772a4.67 4.67 0 0 1 1.601 2.713l1.465 7.708c1.516 7.243-1.286 9.964-3.995 11.595l-3.342 2.002.523-4.101c.21-1.576-.127-2.198-1.073-2.768l-8.163-4.56c-.468-.282-.98-.431-1.52-.503C62.692 58.587 0 49.704 0 49.704l29.06 9.752c2.29.77 2.073 4.08-.299 4.544l-8.878 1.746 40.523 23.489a7.07 7.07 0 0 0 7.06.008C74.318 85.3 89.192 76.741 94.25 73.815a7.07 7.07 0 0 0 3.53-6.094c.03-9.309.03-31.342.03-31.342a7.06 7.06 0 0 0-3.534-6.119"})),a||(a=i.createElement("path",{fill:"#FEDD00",d:"M74.944 53.737a2.594 2.594 0 0 0 3.41 1.354 2.59 2.59 0 0 0 1.547-2.244L68.735 46.22s-.11.639.243.975c.37.353 4.356 3.688 5.842 4.931a2.54 2.54 0 0 0 .124 1.61"}))),c="HeroSection-module__sloganText--_hwUn",u=({yellowText:o,whiteText:e,showLogo:t=!0,backgroundMobile:n,backgroundMobile2x:a,backgroundDesktop:i,backgroundDesktop2x:d,fluidMode:u})=>{const m=(0,r.u)(u);return(0,l.jsx)("section",{className:(0,s.L)("HeroSection-module__hero--lpuv4",m),style:{"--background-mobile":`url("${n}")`,"--background-mobile-2x":`url("${a}")`,"--background-desktop":`url("${i}")`,"--background-desktop-2x":`url("${d}")`},children:(0,l.jsx)("div",{className:"HeroSection-module__heroContainer--brVZ4",children:(0,l.jsxs)("div",{className:"HeroSection-module__slogan--rRTe6",children:[o&&(0,l.jsx)("div",{className:(0,s.L)(c,"HeroSection-module__sloganYellow--lIwpd"),dangerouslySetInnerHTML:{__html:o}}),e&&(0,l.jsx)("div",{className:(0,s.L)(c,"HeroSection-module__sloganWhite--SWr8l"),dangerouslySetInnerHTML:{__html:e}}),t&&(0,l.jsx)(f,{className:"HeroSection-module__heroLogo--t3ggG"})]})})})}},130:(o,e,t)=>{t.d(e,{N:()=>a,u:()=>l}),t(178);var n=t(992);const a=({children:o,fluidMode:e=!1})=>{fluidModeState.state=e;const t=`\n @font-face {\n font-family: 'Aeonik';\n src: url('https://of.worldota.net/fonts/aeonik/Aeonik-Bold.woff2') format('woff2');\n font-weight: 900;\n font-style: normal;\n font-display: swap;\n }\n\n @font-face {\n font-family: 'Aeonik';\n src: url('https://of.worldota.net/fonts/aeonik/Aeonik-Regular.woff2') format('woff2');\n font-weight: 400;\n font-style: normal;\n font-display: swap;\n }\n\n @font-face {\n font-family: 'ABCGravity';\n src: url('https://of.worldota.net/fonts/ABCGravity/ABCGravity.woff2') format('woff2');\n font-weight: 900;\n font-style: normal;\n font-display: swap;\n }\n \n ${e?fluidLayoutCss:staticLayoutCss};\n `;return _jsxs(_Fragment,{children:[_jsx("style",{dangerouslySetInnerHTML:{__html:t}}),o]})},l=o=>("boolean"==typeof o?o:n.b.state)?"layout-module__fluidLayout--BNE04":"layout-module__staticLayout--x_6dR"},178:(e,t,n)=>{var a,l;e.exports=(a={jsx:()=>o.jsx,jsxs:()=>o.jsxs},l={},n.d(l,a),l)},649:(o,t,n)=>{var a,l;o.exports=(a={createElement:()=>e.createElement},l={},n.d(l,a),l)},992:(o,e,t)=>{t.d(e,{b:()=>n}),globalThis.__fluidModeState||(globalThis.__fluidModeState={state:!1});const n=globalThis.__fluidModeState}},n={};function a(o){var e=n[o];if(void 0!==e)return e.exports;var l=n[o]={exports:{}};return t[o](l,l.exports,a),l.exports}a.d=(o,e)=>{for(var t in e)a.o(e,t)&&!a.o(o,t)&&Object.defineProperty(o,t,{enumerable:!0,get:e[t]})},a.o=(o,e)=>Object.prototype.hasOwnProperty.call(o,e);var l={};a.d(l,{A:()=>r.A});var r=a(110);const s=l.A;export{s as default};