int-components 0.0.15 → 0.0.17

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 (27) hide show
  1. package/README.md +1 -1
  2. package/dist/index.css +129 -127
  3. package/dist/index.js +1 -1
  4. package/dist/rh-components/Footer/ContactModal.d.ts.map +1 -1
  5. package/dist/rh-components/Footer/Footer.d.ts.map +1 -1
  6. package/dist/rh-components/Header/Header.d.ts.map +1 -1
  7. package/dist/rh-components/Header/index.js +1 -1
  8. package/dist/rh-components/HeroSection/HeroSection.d.ts +14 -0
  9. package/dist/rh-components/HeroSection/HeroSection.d.ts.map +1 -0
  10. package/dist/rh-components/HeroSection/index.css +120 -0
  11. package/dist/rh-components/HeroSection/index.d.ts +3 -0
  12. package/dist/rh-components/HeroSection/index.d.ts.map +1 -0
  13. package/dist/rh-components/HeroSection/index.js +1 -0
  14. package/dist/rh-components/HotelCard/HotelCard.d.ts.map +1 -1
  15. package/dist/rh-components/HotelsLanding/HotelsLanding.d.ts +3 -1
  16. package/dist/rh-components/HotelsLanding/HotelsLanding.d.ts.map +1 -1
  17. package/dist/rh-components/HotelsLanding/index.css +144 -142
  18. package/dist/rh-components/HotelsLanding/index.js +1 -1
  19. package/dist/rh-components/HotelsSection/HotelsSection.d.ts +11 -0
  20. package/dist/rh-components/HotelsSection/HotelsSection.d.ts.map +1 -0
  21. package/dist/rh-components/HotelsSection/index.css +258 -0
  22. package/dist/rh-components/HotelsSection/index.d.ts +3 -0
  23. package/dist/rh-components/HotelsSection/index.d.ts.map +1 -0
  24. package/dist/rh-components/HotelsSection/index.js +1 -0
  25. package/dist/rh-components/index.d.ts +4 -0
  26. package/dist/rh-components/index.d.ts.map +1 -1
  27. package/package.json +11 -4
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;
@@ -1079,131 +1191,20 @@
1079
1191
  -moz-osx-font-smoothing: grayscale;
1080
1192
  }
1081
1193
 
1082
- .HotelsLanding-module__hero--CVhVp {
1083
- background-color: #ccc;
1084
- background-repeat: no-repeat;
1085
- background-image: var(--background-mobile);
1086
- background-position: center;
1087
- background-size: cover;
1088
- display: flex;
1089
- }
1090
-
1091
- @media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
1092
-
1093
- .HotelsLanding-module__hero--CVhVp {
1094
- background-image: var(--background-mobile-2x);
1095
- }
1096
- }
1097
-
1098
- @media (min-width: 500px) {
1099
-
1100
- .HotelsLanding-module__hero--CVhVp {
1101
- background-image: var(--background-desktop);
1102
- }
1103
-
1104
- @media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
1105
-
1106
- .HotelsLanding-module__hero--CVhVp {
1107
- background-image: var(--background-desktop-2x);
1108
- }
1109
- }
1110
- }
1111
-
1112
- .HotelsLanding-module__heroContainer--RviY3 {
1113
- display: flex;
1114
- justify-content: end;
1115
- width: 100%;
1116
- max-width: 1448px;
1117
- margin: 0 auto;
1118
- padding: 26em 15em;
1119
- box-sizing: border-box;
1120
- }
1121
-
1122
- @media (min-width: 500px) {
1123
-
1124
- .HotelsLanding-module__heroContainer--RviY3 {
1125
- padding: 16em 44em;
1126
- min-height: 320em;
1127
- }
1128
- }
1129
-
1130
- @media (min-width: 1152px) {
1131
-
1132
- .HotelsLanding-module__heroContainer--RviY3 {
1133
- min-height: 670em;
1134
- }
1135
- }
1136
-
1137
- .HotelsLanding-module__slogan--qHFoi {
1138
- display: flex;
1139
- flex-direction: column;
1140
- justify-content: center;
1141
- align-items: flex-end;
1142
- width: auto;
1143
- text-align: right;
1144
- font-family: var(--font-secondary, "ABCGravity", sans-serif);
1145
- font-weight: 900;
1146
- }
1147
-
1148
- .HotelsLanding-module__sloganText--YwQRu {
1149
- font-size: 45em;
1150
- line-height: 90%;
1151
- text-transform: uppercase;
1152
- }
1153
-
1154
- @media (min-width: 500px) {
1155
-
1156
- .HotelsLanding-module__sloganText--YwQRu {
1157
- font-size: 60em;
1158
- }
1159
- }
1160
-
1161
- @media (min-width: 1152px) {
1162
-
1163
- .HotelsLanding-module__sloganText--YwQRu {
1164
- font-size: 115em;
1165
- }
1166
- }
1167
-
1168
- .HotelsLanding-module__sloganYellow--su_yv {
1169
- color: #f5d742;
1170
- }
1171
-
1172
- .HotelsLanding-module__sloganWhite--P2y71 {
1173
- color: #fff;
1174
- }
1175
-
1176
- .HotelsLanding-module__heroLogo--RMmG1 {
1177
- width: 33em;
1178
- }
1179
-
1180
- @media (min-width: 500px) {
1181
-
1182
- .HotelsLanding-module__heroLogo--RMmG1 {
1183
- width: 49em;
1184
- }
1185
- }
1186
-
1187
- @media (min-width: 1152px) {
1188
-
1189
- .HotelsLanding-module__heroLogo--RMmG1 {
1190
- width: 97em;
1191
- }
1192
- }
1193
-
1194
- /* Hotels Section */
1195
- .HotelsLanding-module__hotels--z2v4G {
1194
+ .HotelsSection-module__hotels--hGJyx {
1196
1195
  max-width: 1392px;
1197
1196
  margin-inline: auto;
1198
1197
  padding-bottom: 60em;
1199
1198
  }
1199
+
1200
1200
  @media (min-width: 1152px) {
1201
- .HotelsLanding-module__hotels--z2v4G {
1201
+
1202
+ .HotelsSection-module__hotels--hGJyx {
1202
1203
  padding-bottom: 100em;
1203
1204
  }
1204
1205
  }
1205
1206
 
1206
- .HotelsLanding-module__hotelsHeader--XxyLM {
1207
+ .HotelsSection-module__hotelsHeader--l_Qr5 {
1207
1208
  display: flex;
1208
1209
  flex-direction: column;
1209
1210
  gap: 16em;
@@ -1212,21 +1213,21 @@
1212
1213
 
1213
1214
  @media (min-width: 500px) {
1214
1215
 
1215
- .HotelsLanding-module__hotelsHeader--XxyLM {
1216
+ .HotelsSection-module__hotelsHeader--l_Qr5 {
1216
1217
  gap: 22em;
1217
1218
  }
1218
1219
  }
1219
1220
 
1220
1221
  @media (min-width: 1152px) {
1221
1222
 
1222
- .HotelsLanding-module__hotelsHeader--XxyLM {
1223
+ .HotelsSection-module__hotelsHeader--l_Qr5 {
1223
1224
  gap: 28em;
1224
1225
  padding-top: 80em;
1225
1226
  padding-bottom: 80em;
1226
1227
  }
1227
1228
  }
1228
1229
 
1229
- .HotelsLanding-module__hotelsTitle--dcfRZ {
1230
+ .HotelsSection-module__hotelsTitle--zeGAj {
1230
1231
  margin: 0;
1231
1232
  line-height: 1.1;
1232
1233
  text-align: center;
@@ -1237,20 +1238,21 @@
1237
1238
 
1238
1239
  @media (min-width: 500px) {
1239
1240
 
1240
- .HotelsLanding-module__hotelsTitle--dcfRZ {
1241
+ .HotelsSection-module__hotelsTitle--zeGAj {
1241
1242
  font-size: 40em;
1242
1243
  }
1243
1244
  }
1244
1245
 
1245
1246
  @media (min-width: 1152px) {
1246
1247
 
1247
- .HotelsLanding-module__hotelsTitle--dcfRZ {
1248
+ .HotelsSection-module__hotelsTitle--zeGAj {
1248
1249
  font-size: 65em;
1249
1250
  }
1250
1251
  }
1251
1252
 
1252
- .HotelsLanding-module__hotelsSubtitle--s0NrA {
1253
+ .HotelsSection-module__hotelsSubtitle--EAJhs {
1253
1254
  margin: 0;
1255
+ font-family: var(--font-main, "Aeonik", sans-serif);
1254
1256
  font-weight: 700;
1255
1257
  line-height: 1;
1256
1258
  text-align: center;
@@ -1259,19 +1261,19 @@
1259
1261
 
1260
1262
  @media (min-width: 500px) {
1261
1263
 
1262
- .HotelsLanding-module__hotelsSubtitle--s0NrA {
1264
+ .HotelsSection-module__hotelsSubtitle--EAJhs {
1263
1265
  font-size: 17em;
1264
1266
  }
1265
1267
  }
1266
1268
 
1267
1269
  @media (min-width: 1152px) {
1268
1270
 
1269
- .HotelsLanding-module__hotelsSubtitle--s0NrA {
1271
+ .HotelsSection-module__hotelsSubtitle--EAJhs {
1270
1272
  font-size: 23em;
1271
1273
  }
1272
1274
  }
1273
1275
 
1274
- .HotelsLanding-module__hotelsList--ylptR {
1276
+ .HotelsSection-module__hotelsList--jWxYc {
1275
1277
  display: grid;
1276
1278
  grid-template-columns: repeat(auto-fit, minmax(343px, 440px));
1277
1279
  justify-content: center;
@@ -1282,12 +1284,12 @@
1282
1284
  list-style: none;
1283
1285
  }
1284
1286
 
1285
- .HotelsLanding-module__hotelCard--IkewD {
1287
+ .HotelsSection-module__hotelCard--aCwpN {
1286
1288
  justify-content: space-between;
1287
1289
  min-height: 100%;
1288
1290
  }
1289
1291
 
1290
- .HotelsLanding-module__hotelCard--IkewD:hover [class*="HotelCard-module__priceInfo"] {
1292
+ .HotelsSection-module__hotelCard--aCwpN:hover [class*="HotelCard-module__priceInfo"] {
1291
1293
  background-color: #000000;
1292
1294
  }
1293
1295
 
package/dist/index.js CHANGED
@@ -1 +1 @@
1
- import*as e from"react/jsx-runtime";import*as a from"react";var t={39:(e,a,t)=>{t.d(a,{L:()=>s});const s=(...e)=>e.filter(Boolean).join(" ")},94:(e,a,t)=>{t.d(a,{A:()=>w});var s,n=t(178),l=t(268),o=t(130),r=t(39),i=t(649);function d(){return d=Object.assign?Object.assign.bind():function(e){for(var a=1;a<arguments.length;a++){var t=arguments[a];for(var s in t)({}).hasOwnProperty.call(t,s)&&(e[s]=t[s])}return e},d.apply(null,arguments)}const c=e=>i.createElement("svg",d({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 m,u;function h(){return h=Object.assign?Object.assign.bind():function(e){for(var a=1;a<arguments.length;a++){var t=arguments[a];for(var s in t)({}).hasOwnProperty.call(t,s)&&(e[s]=t[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),m||(m=i.createElement("path",{fill:"#8C1EFF",d:"m4.807 3.394 19.799 19.799-1.414 1.414-19.8-19.8z"})),u||(u=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 a=1;a<arguments.length;a++){var t=arguments[a];for(var s in t)({}).hasOwnProperty.call(t,s)&&(e[s]=t[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",N=(0,n.jsx)("a",{href:"https://www.ratehawk.com/",target:"_blank",rel:"noopener",children:(0,n.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})}),w=({theme:e="dark",className:a="",menu:t,subMenu:s,extraRightContent:d,fluidMode:m,zIndex:u=1,onLoginClick:h,onRegisterClick:p})=>{const _=(0,o.u)(m),f=v[e],g=s&&s.length>0,[w,y]=(0,i.useState)(!1),[C,L]=(0,i.useState)(!1),[M,H]=(0,i.useState)(!1),[T,E]=(0,i.useState)(!1),F=(0,i.useRef)(null),B=(0,i.useRef)(null),A=t?.map(k)||[];let O=A;if(g){const e=s?.map(k)||[];O=[...A,(0,n.jsxs)("li",{children:[(0,n.jsx)("button",{type:"button",onClick:()=>H(!M),className:(0,r.L)(v.menuLink,_,v.subMenuOpener,j,M?v.subMenuOpenerActive:""),children:(0,n.jsx)("span",{className:v.menuLinkText,children:"More"})}),(0,n.jsx)("ul",{className:(0,r.L)(v.subNavList,M?v.subNavListOpened:"",j),children:e})]},"submenu")],A.push(...e)}const S=(0,i.useCallback)((()=>{let e=!1;return(...a)=>{e||((()=>{if(!F.current||!B.current)return;const e=B.current.getBoundingClientRect().right,a=F.current.getBoundingClientRect().left-e<20;y(a),E(!0),a?H(!1):L(!1)})(...a),e=!0,setTimeout(()=>{e=!1},100))}})(),[]),I=(0,n.jsxs)(n.Fragment,{children:[(0,n.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,n.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 a=e.target.closest(`.${b}`),t=e.target.closest(`.${j}`);a||L(!1),t||H(!1)},[]);return(0,i.useEffect)(()=>(window.addEventListener("resize",S),window.addEventListener("click",P),S(),()=>{window.removeEventListener("resize",S),window.removeEventListener("click",P)}),[S,P]),(0,n.jsxs)("div",{className:(0,r.L)(v.root,a,f,_),style:{zIndex:u},children:[(0,n.jsxs)("div",{className:(0,r.L)(v.header,v.wideHeader,w?v.hidden:""),children:[(0,n.jsxs)("div",{className:v.leftContainer,ref:B,children:[N,(0,n.jsx)("nav",{className:v.navMenu,children:(0,n.jsx)("ul",{className:v.navList,children:O})})]}),(0,n.jsxs)("div",{className:(0,r.L)(v.rightContainer,!T&&v.hidden),ref:F,children:[d,I]})]}),(0,n.jsxs)("div",{className:(0,r.L)(v.header,v.compactHeader,w?v.visible:""),children:[(0,n.jsx)("div",{className:v.leftContainer,children:N}),(0,n.jsxs)("div",{className:v.rightContainer,children:[d,(0,n.jsx)("div",{className:v.burgerMenuContainer,children:(0,n.jsx)("button",{className:v.burgerMenuButton,onClick:()=>L(!C),type:"button",children:C?(0,n.jsx)(x,{}):(0,n.jsx)(c,{})})})]}),C&&(0,n.jsxs)("div",{className:(0,r.L)(v.burgerMenu,b),children:[A.length?(0,n.jsxs)(n.Fragment,{children:[(0,n.jsx)("nav",{className:v.navMenu,children:(0,n.jsx)("ul",{className:v.navList,children:A})}),(0,n.jsx)("div",{className:v.separator})]}):null,(0,n.jsx)("div",{className:v.burgerButtons,children:I})]})]})]})};function k(e){const a=e.url?"a":"button",t=e.url?{target:"_blank",href:e.url}:{type:"button"};return(0,n.jsx)("li",{children:(0,n.jsx)(a,{className:v.menuLink,onClick:e.onClick,...t,children:(0,n.jsx)("span",{className:v.menuLinkText,children:e.title})})},e.title)}},130:(e,a,t)=>{t.d(a,{N:()=>n,u:()=>l}),t(178);var s=t(992);const n=({children:e,fluidMode:a=!1})=>{fluidModeState.state=a;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 ${a?fluidLayoutCss:staticLayoutCss};\n `;return _jsxs(_Fragment,{children:[_jsx("style",{dangerouslySetInnerHTML:{__html:t}}),e]})},l=e=>("boolean"==typeof e?e:s.b.state)?"layout-module__fluidLayout--BNE04":"layout-module__staticLayout--x_6dR"},178:(a,t,s)=>{var n,l;a.exports=(n={Fragment:()=>e.Fragment,jsx:()=>e.jsx,jsxs:()=>e.jsxs},l={},s.d(l,n),l)},268:(e,a,t)=>{t.d(a,{A:()=>r});var s=t(178),n=t(130),l=t(39);const o={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:a,dimension:t="s",theme:r="primary",onClick:i,disabled:d=!1,type:c="button",variant:m="purple",url:u,isLoading:h,enableMediaDimension:x=!0,fluidMode:p})=>{const _=o[t]||"",f=o[r]||"",g=o[m],v=(0,n.u)(p),b=x?o.withMediaDimension:"",j=u?"a":"button",N=u?{target:"_blank",href:u}:{type:c},w=h?o.isLoading:"";return(0,s.jsxs)(j,{...N,onClick:i,className:(0,l.L)(o.root,e,v,_,f,w,g,b),disabled:d,children:[h?(0,s.jsx)("span",{className:o.spinner}):null,(0,s.jsx)("span",{className:(0,l.L)(o.text,h?o.hidden:null),children:a})]})}},273:(e,a,t)=>{t.d(a,{A:()=>p});var s,n,l=t(178),o=t(130),r=t(39),i=t(374),d=t(94),c=t(670),m=t(649);function u(){return u=Object.assign?Object.assign.bind():function(e){for(var a=1;a<arguments.length;a++){var t=arguments[a];for(var s in t)({}).hasOwnProperty.call(t,s)&&(e[s]=t[s])}return e},u.apply(null,arguments)}const h=e=>m.createElement("svg",u({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 98 91"},e),s||(s=m.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"})),n||(n=m.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"}))),x="HotelsLanding-module__sloganText--YwQRu",p=({className:e="",heroYellowText:a,heroWhiteText:t,hotelsTitle:s,hotelsSubtitle:n,hotels:m,backgroundMobile:u,backgroundMobile2x:p,backgroundDesktop:_,backgroundDesktop2x:f,heroLogo:g=!0,fluidMode:v})=>{const b=(0,o.u)(v);return(0,l.jsxs)("div",{className:(0,r.L)("HotelsLanding-module__root--JnV8j",b,e),children:[(0,l.jsx)(d.A,{}),(0,l.jsxs)("main",{children:[(0,l.jsx)("section",{className:"HotelsLanding-module__hero--CVhVp",style:{"--background-mobile":`url("${u}")`,"--background-mobile-2x":`url("${p}")`,"--background-desktop":`url("${_}")`,"--background-desktop-2x":`url("${f}")`},children:(0,l.jsx)("div",{className:"HotelsLanding-module__heroContainer--RviY3",children:(0,l.jsxs)("div",{className:"HotelsLanding-module__slogan--qHFoi",children:[a&&(0,l.jsx)("div",{className:(0,r.L)(x,"HotelsLanding-module__sloganYellow--su_yv"),dangerouslySetInnerHTML:{__html:a}}),t&&(0,l.jsx)("div",{className:(0,r.L)(x,"HotelsLanding-module__sloganWhite--P2y71"),dangerouslySetInnerHTML:{__html:t}}),g&&(0,l.jsx)(h,{className:"HotelsLanding-module__heroLogo--RMmG1"})]})})}),(0,l.jsxs)("section",{className:"HotelsLanding-module__hotels--z2v4G",children:[(0,l.jsxs)("header",{className:"HotelsLanding-module__hotelsHeader--XxyLM",children:[s&&(0,l.jsx)("h2",{className:"HotelsLanding-module__hotelsTitle--dcfRZ",children:s}),n&&(0,l.jsx)("p",{className:"HotelsLanding-module__hotelsSubtitle--s0NrA",children:n})]}),(0,l.jsx)("ul",{className:"HotelsLanding-module__hotelsList--ylptR",children:m.map(e=>(0,l.jsx)("li",{children:(0,l.jsx)(c.A,{className:"HotelsLanding-module__hotelCard--IkewD",name:e.name,location:`${e.location}`,stars:e.stars,image:e.image,dates:e.dates,discountText:e.discountText,url:e.url,fluidMode:v})},e.name))})]})]}),(0,l.jsx)(i.A,{})]})}},374:(e,a,t)=>{t.d(a,{A:()=>M});var s,n=t(178),l=t(268),o=t(130),r=t(39),i=t(649);function d(){return d=Object.assign?Object.assign.bind():function(e){for(var a=1;a<arguments.length;a++){var t=arguments[a];for(var s in t)({}).hasOwnProperty.call(t,s)&&(e[s]=t[s])}return e},d.apply(null,arguments)}const c=e=>i.createElement("svg",d({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 m;function u(){return u=Object.assign?Object.assign.bind():function(e){for(var a=1;a<arguments.length;a++){var t=arguments[a];for(var s in t)({}).hasOwnProperty.call(t,s)&&(e[s]=t[s])}return e},u.apply(null,arguments)}const h=e=>i.createElement("svg",u({xmlns:"http://www.w3.org/2000/svg",width:31,height:31,fill:"none"},e),m||(m=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 a=1;a<arguments.length;a++){var t=arguments[a];for(var s in t)({}).hasOwnProperty.call(t,s)&&(e[s]=t[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",N="ContactModal-module__error--jso6D",w=({isOpen:e,onClose:a,fluidMode:t})=>{const s=(0,o.u)(t),[d,c]=(0,i.useState)({firstName:"",phone:"",email:"",companyName:"",message:""}),[m,u]=(0,i.useState)(!1),[h,p]=(0,i.useState)(!1),[_,w]=(0,i.useState)({}),k=(0,i.useCallback)(()=>{const e={};return d.firstName.trim()||(e.firstName="First Name is required"),d.phone.trim()?d.phone.replace(/\D/g,"").length>=7||(e.phone="Phone must contain at least 7 digits"):e.phone="Phone is required",d.email.trim()?function(e){return x.test(e)}(d.email)||(e.email="Please enter a valid email"):e.email="Email is required",d.companyName.trim()||(e.companyName="Company Name is required"),w(e),0===Object.keys(e).length},[d]),y=(0,i.useCallback)(async e=>{if(e.preventDefault(),k()){u(!0);try{const e={brand:"ratehawk",cooperation_type:"api",kind:"b2b",white_label_slug:"ratehawk",email:d.email,message:d.message,company_name:d.companyName,name:d.firstName,phone:d.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{u(!1)}}},[d,k]),C=(0,i.useCallback)(e=>a=>{c(t=>({...t,[e]:a.target.value})),_[e]&&w(a=>({...a,[e]:void 0}))},[_]),L=(0,i.useCallback)(()=>{c({firstName:"",phone:"",email:"",companyName:"",message:""}),w({}),p(!1),a()},[a]);return e?(0,n.jsx)("div",{className:(0,r.L)("ContactModal-module__overlay--ti1yT",s),onClick:L,children:(0,n.jsxs)("div",{className:"ContactModal-module__modal--Xzwl2",onClick:e=>e.stopPropagation(),children:[(0,n.jsx)("button",{className:(0,r.L)("ContactModal-module__closeButton--qvADd",s),onClick:L,type:"button",children:(0,n.jsx)(f,{})}),h?(0,n.jsxs)("div",{className:"ContactModal-module__successMessage--Nyhi4",children:[(0,n.jsx)("h2",{className:"ContactModal-module__successTitle--dVn02",children:"Successfully accepted"}),(0,n.jsx)("p",{className:"ContactModal-module__successText--KJznx",children:"Your application has flown to our caring specialists! We will contact you soon"})]}):(0,n.jsxs)(n.Fragment,{children:[(0,n.jsx)("h2",{className:"ContactModal-module__title--XrI8J",children:(0,n.jsx)("span",{className:"ContactModal-module__titleText--HH4uj",children:"Cooperation"})}),(0,n.jsx)("p",{className:"ContactModal-module__subtitle--dS9UA",children:"Drop us a line and we will get back to you as soon as possible!"}),(0,n.jsxs)("form",{className:"ContactModal-module__form--XuQzj",onSubmit:y,children:[(0,n.jsxs)("div",{className:g,children:[(0,n.jsx)("label",{className:`${v} ${_.firstName?b:""}`,children:(0,n.jsx)("input",{type:"text",className:j,value:d.firstName,onChange:C("firstName"),placeholder:"First Name *"})}),_.firstName&&(0,n.jsx)("span",{className:N,children:_.firstName})]}),(0,n.jsxs)("div",{className:g,children:[(0,n.jsx)("label",{className:`${v} ${_.phone?b:""}`,children:(0,n.jsx)("input",{type:"tel",className:j,value:d.phone,onChange:C("phone"),placeholder:"Phone *"})}),_.phone&&(0,n.jsx)("span",{className:N,children:_.phone})]}),(0,n.jsxs)("div",{className:g,children:[(0,n.jsx)("label",{className:`${v} ${_.email?b:""}`,children:(0,n.jsx)("input",{type:"email",className:j,value:d.email,onChange:C("email"),placeholder:"Email Address *"})}),_.email&&(0,n.jsx)("span",{className:N,children:_.email})]}),(0,n.jsxs)("div",{className:g,children:[(0,n.jsx)("label",{className:`${v} ${_.companyName?b:""}`,children:(0,n.jsx)("input",{type:"text",className:j,value:d.companyName,onChange:C("companyName"),placeholder:"Company Name *"})}),_.companyName&&(0,n.jsx)("span",{className:N,children:_.companyName})]}),(0,n.jsx)("div",{className:g,children:(0,n.jsx)("label",{className:"ContactModal-module__textareaWrapper--rSQEQ",children:(0,n.jsx)("textarea",{className:"ContactModal-module__textarea--i19oy",value:d.message,onChange:C("message"),placeholder:"Message",rows:4})})}),(0,n.jsx)(l.A,{type:"submit",theme:"primary",variant:"white",disabled:m,className:"ContactModal-module__submitButton--qbQOa",children:m?"Sending...":"Send"})]})]})]})}):null},k="Footer-module__footerLink--ipb6W",y="Footer-module__footerLegalText--xlXoo",C="Footer-module__footerParagraphSection--rin95",L=[{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"}],M=({className:e="",fluidMode:a})=>{const[t,s]=(0,i.useState)(!1),d=(0,o.u)(a),m=(0,i.useCallback)(()=>{s(!0)},[]),u=(0,i.useCallback)(()=>{s(!1)},[]);return(0,n.jsxs)(n.Fragment,{children:[(0,n.jsxs)("footer",{className:(0,r.L)("Footer-module__root--T9ly6",e,d),children:[(0,n.jsxs)("div",{className:"Footer-module__header--hy1ME",children:[(0,n.jsx)("p",{className:"Footer-module__title--OX7d9",children:"Partnership"}),(0,n.jsx)("p",{className:"Footer-module__subTitle--EmP0b",children:"Cooperate and grow together with RateHawk"})]}),(0,n.jsx)("ul",{className:"Footer-module__advantages--z7ASK",children:L.map(e=>(0,n.jsxs)("li",{className:(0,r.L)("Footer-module__advantageItem--EcCx_",e.cssClass),children:[(0,n.jsxs)("div",{className:"Footer-module__advantageInfo--Ilud0",children:[(0,n.jsx)("h6",{className:"Footer-module__advantageTitle--spnaR",children:(0,n.jsx)("span",{className:"Footer-module__advantageTitleText--cMrU_",children:e.title})}),(0,n.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,n.jsx)(l.A,{theme:"secondary",variant:"white",...e.button.url?{url:e.button.url}:{onClick:m},children:e.button.text})]},e.title))}),(0,n.jsxs)("div",{className:"Footer-module__footerBottom--u_o7y",children:[(0,n.jsxs)("div",{className:"Footer-module__footerLeft--nnkZo",children:[(0,n.jsxs)("div",{className:"Footer-module__social--H1Yw4",children:[(0,n.jsx)("a",{href:"https://www.facebook.com/ratehawk",target:"_blank",rel:"noopener noreferrer",children:(0,n.jsx)(c,{})}),(0,n.jsx)("a",{href:"https://www.linkedin.com/company/ratehawk-com/",target:"_blank",rel:"noopener noreferrer",children:(0,n.jsx)(h,{})})]}),(0,n.jsxs)("ul",{className:"Footer-module__footerLinks--R9Hnr",children:[(0,n.jsx)("li",{children:(0,n.jsx)("a",{href:"https://www.ratehawk.com/lp/en-us/career",target:"_blank",rel:"noopener noreferrer",className:k,children:"Careers"})}),(0,n.jsx)("li",{children:(0,n.jsx)("a",{href:"https://blog.ratehawk.com/",target:"_blank",rel:"noopener noreferrer",className:k,children:"Blog"})})]})]}),(0,n.jsxs)("div",{className:"Footer-module__footerLegal--jAGGe",children:[(0,n.jsxs)("div",{className:C,children:[(0,n.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,n.jsx)("p",{className:y,children:"Emerging Travel Germany ETG GmbH, HRB 213546, Business Address: Friedrichstraße 171, 10117 Berlin, Germany"}),(0,n.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,n.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,n.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,n.jsx)("div",{className:C,children:(0,n.jsx)("p",{className:y,children:(0,n.jsx)("a",{href:"https://www.ratehawk.com/legal/site/privacy-policy/",target:"_blank",rel:"noopener noreferrer",children:"Personal data processing and storage policy"})})}),(0,n.jsx)("div",{className:C,children:(0,n.jsx)("p",{className:y,children:"Digital Services Act"})}),(0,n.jsx)("div",{className:C,children:(0,n.jsx)("p",{className:y,children:"Ratehawk is a registered service mark in the European Union"})})]})]})]}),(0,n.jsx)(w,{isOpen:t,onClose:u,fluidMode:a})]})}},627:(e,a,t)=>{t.d(a,{A:()=>s.A});var s=t(374)},649:(e,t,s)=>{var n,l;e.exports=(n={createElement:()=>a.createElement,useCallback:()=>a.useCallback,useEffect:()=>a.useEffect,useRef:()=>a.useRef,useState:()=>a.useState},l={},s.d(l,n),l)},670:(e,a,t)=>{t.d(a,{A:()=>r});var s=t(178),n=t(130),l=t(39);const o={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:a,location:t,stars:r,image:i,dates:d,discountText:c,onClick:m,url:u,width:h="auto",price:x,fluidMode:p})=>{const _=(0,n.u)(p),f=u?"a":"div",g=u?{href:u,target:"_blank",rel:"noopener noreferrer"}:{};return(0,s.jsxs)(f,{className:(0,l.L)(o.root,_,"fixed"===h&&o.rootFixed,e,u&&o.clickable),onClick:m,...g,children:[(0,s.jsxs)("div",{className:o.imageContainer,children:[(0,s.jsx)("img",{src:i,alt:a,className:o.image}),c?(0,s.jsx)("div",{className:o.discount,children:(0,s.jsx)("span",{className:o.discountText,dangerouslySetInnerHTML:{__html:c}})}):null]}),(0,s.jsxs)("div",{className:o.content,children:[(()=>{if(!r)return null;const e=[];for(let t=0;t<5;t++)e.push((0,s.jsx)("div",{className:t<r?o.starFilled:o.starEmpty},`star-${a}-${t}`));return(0,s.jsx)("div",{className:o.stars,children:e})})(),(0,s.jsx)("h3",{className:o.title,children:a}),t&&(0,s.jsx)("p",{className:o.location,children:t}),d&&(0,s.jsxs)("p",{className:o.dates,children:["Travel Dates: ",d]}),(0,s.jsx)("div",{className:o.priceInfoWrapper,children:(0,s.jsx)("div",{className:o.priceInfo,children:x?(0,s.jsxs)("div",{className:o.priceText,children:[(0,s.jsxs)("div",{className:o.mainPriceText,children:["From ",(0,s.jsx)("strong",{children:x})]}),(0,s.jsx)("div",{className:o.infoPriceText,children:(0,s.jsx)("span",{children:"For 1 night and 2 guests"})})]}):(0,s.jsx)("div",{className:o.bookNowText,children:"Book now"})})})]})]})}},793:(e,a,t)=>{t.d(a,{A:()=>s.A});var s=t(94)},924:(e,a,t)=>{t.d(a,{A:()=>s.A});var s=t(670)},992:(e,a,t)=>{t.d(a,{b:()=>s}),globalThis.__fluidModeState||(globalThis.__fluidModeState={state:!1});const s=globalThis.__fluidModeState}},s={};function n(e){var a=s[e];if(void 0!==a)return a.exports;var l=s[e]={exports:{}};return t[e](l,l.exports,n),l.exports}n.d=(e,a)=>{for(var t in a)n.o(a,t)&&!n.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:a[t]})},n.o=(e,a)=>Object.prototype.hasOwnProperty.call(e,a),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var l={};n.r(l),n.d(l,{Button:()=>o.A,Footer:()=>r.A,Header:()=>i.A,HotelCard:()=>d.A,HotelsLanding:()=>c.A});var o=n(268),r=n(627),i=n(793),d=n(924),c=n(273),m=n(992);export{l as RHComponents};export const fluidModeState=m.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})]}),(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;
@@ -1 +1 @@
1
- {"version":3,"file":"ContactModal.d.ts","sourceRoot":"","sources":["../../../src/rh-components/Footer/ContactModal.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAK/B,MAAM,WAAW,iBAAiB;IAChC,MAAM,EAAE,OAAO,CAAC;IAChB,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,SAAS,EAAE,OAAO,GAAG,SAAS,CAAC;CAChC;AAmBD,QAAA,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAiQ7C,CAAC;AAEF,eAAe,YAAY,CAAC"}
1
+ {"version":3,"file":"ContactModal.d.ts","sourceRoot":"","sources":["../../../src/rh-components/Footer/ContactModal.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAK/B,MAAM,WAAW,iBAAiB;IAChC,MAAM,EAAE,OAAO,CAAC;IAChB,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,SAAS,EAAE,OAAO,GAAG,SAAS,CAAC;CAChC;AAmBD,QAAA,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CA6P7C,CAAC;AAEF,eAAe,YAAY,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"Footer.d.ts","sourceRoot":"","sources":["../../../src/rh-components/Footer/Footer.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAO/B,MAAM,WAAW,WAAW;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB;AAyDD,QAAA,MAAM,MAAM,EAAE,KAAK,CAAC,EAAE,CAAC,WAAW,CAoKjC,CAAC;AAEF,eAAe,MAAM,CAAC"}
1
+ {"version":3,"file":"Footer.d.ts","sourceRoot":"","sources":["../../../src/rh-components/Footer/Footer.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAO/B,MAAM,WAAW,WAAW;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB;AAyDD,QAAA,MAAM,MAAM,EAAE,KAAK,CAAC,EAAE,CAAC,WAAW,CAqKjC,CAAC;AAEF,eAAe,MAAM,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"Header.d.ts","sourceRoot":"","sources":["../../../src/rh-components/Header/Header.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAO/B,KAAK,QAAQ,GAAG;IAAE,KAAK,EAAE,MAAM,CAAC;IAAC,GAAG,CAAC,EAAE,MAAM,CAAC;IAAC,OAAO,CAAC,EAAE,MAAM,IAAI,CAAA;CAAE,CAAC;AAEtE,MAAM,WAAW,WAAW;IAC1B,KAAK,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,QAAQ,CAAC;IACpC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,IAAI,CAAC,EAAE,QAAQ,EAAE,CAAC;IAClB,OAAO,CAAC,EAAE,QAAQ,EAAE,CAAC;IACrB,iBAAiB,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACpC,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,YAAY,CAAC,EAAE,MAAM,IAAI,CAAC;IAC1B,eAAe,CAAC,EAAE,MAAM,IAAI,CAAC;CAC9B;AAcD,QAAA,MAAM,MAAM,EAAE,KAAK,CAAC,EAAE,CAAC,WAAW,CAsMjC,CAAC;AAEF,eAAe,MAAM,CAAC"}
1
+ {"version":3,"file":"Header.d.ts","sourceRoot":"","sources":["../../../src/rh-components/Header/Header.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAO/B,KAAK,QAAQ,GAAG;IAAE,KAAK,EAAE,MAAM,CAAC;IAAC,GAAG,CAAC,EAAE,MAAM,CAAC;IAAC,OAAO,CAAC,EAAE,MAAM,IAAI,CAAA;CAAE,CAAC;AAEtE,MAAM,WAAW,WAAW;IAC1B,KAAK,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,QAAQ,CAAC;IACpC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,IAAI,CAAC,EAAE,QAAQ,EAAE,CAAC;IAClB,OAAO,CAAC,EAAE,QAAQ,EAAE,CAAC;IACrB,iBAAiB,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACpC,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,YAAY,CAAC,EAAE,MAAM,IAAI,CAAC;IAC1B,eAAe,CAAC,EAAE,MAAM,IAAI,CAAC;CAC9B;AAWD,QAAA,MAAM,MAAM,EAAE,KAAK,CAAC,EAAE,CAAC,WAAW,CA2MjC,CAAC;AAEF,eAAe,MAAM,CAAC"}
@@ -1 +1 @@
1
- import*as e from"react/jsx-runtime";import*as n from"react";var t={39:(e,n,t)=>{t.d(n,{L:()=>r});const r=(...e)=>e.filter(Boolean).join(" ")},94:(e,n,t)=>{t.d(n,{A:()=>L});var r,a=t(178),l=t(268),s=t(130),o=t(39),i=t(649);function u(){return u=Object.assign?Object.assign.bind():function(e){for(var n=1;n<arguments.length;n++){var t=arguments[n];for(var r in t)({}).hasOwnProperty.call(t,r)&&(e[r]=t[r])}return e},u.apply(null,arguments)}const d=e=>i.createElement("svg",u({xmlns:"http://www.w3.org/2000/svg",width:28,height:28,fill:"none"},e),r||(r=i.createElement("path",{fill:"#8C1EFF",d:"M.32 9.41h28v2h-28zM.32 17.41h28v2h-28z"})));var c,h;function m(){return m=Object.assign?Object.assign.bind():function(e){for(var n=1;n<arguments.length;n++){var t=arguments[n];for(var r in t)({}).hasOwnProperty.call(t,r)&&(e[r]=t[r])}return e},m.apply(null,arguments)}const f=e=>i.createElement("svg",m({xmlns:"http://www.w3.org/2000/svg",width:28,height:28,fill:"none"},e),c||(c=i.createElement("path",{fill:"#8C1EFF",d:"m4.807 3.394 19.799 19.799-1.414 1.414-19.8-19.8z"})),h||(h=i.createElement("path",{fill:"#8C1EFF",d:"m3.393 23.193 19.799-19.8 1.414 1.415L4.807 24.607z"})));var _,g,v;function p(){return p=Object.assign?Object.assign.bind():function(e){for(var n=1;n<arguments.length;n++){var t=arguments[n];for(var r in t)({}).hasOwnProperty.call(t,r)&&(e[r]=t[r])}return e},p.apply(null,arguments)}const b={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"},w="burger-menu",x="sub-menu",j=(0,a.jsx)("a",{href:"https://www.ratehawk.com/",target:"_blank",rel:"noopener",children:(0,a.jsx)(e=>i.createElement("svg",p({xmlns:"http://www.w3.org/2000/svg",height:61,fill:"none",viewBox:"0 0 202 61"},e),_||(_=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"})),g||(g=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"})),v||(v=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:b.logo})}),L=({theme:e="dark",className:n="",menu:t,subMenu:r,extraRightContent:u,fluidMode:c,zIndex:h=1,onLoginClick:m,onRegisterClick:_})=>{const g=(0,s.u)(c),v=b[e],p=r&&r.length>0,[L,k]=(0,i.useState)(!1),[y,C]=(0,i.useState)(!1),[N,B]=(0,i.useState)(!1),[H,E]=(0,i.useState)(!1),O=(0,i.useRef)(null),z=(0,i.useRef)(null),A=t?.map(M)||[];let F=A;if(p){const e=r?.map(M)||[];F=[...A,(0,a.jsxs)("li",{children:[(0,a.jsx)("button",{type:"button",onClick:()=>B(!N),className:(0,o.L)(b.menuLink,g,b.subMenuOpener,x,N?b.subMenuOpenerActive:""),children:(0,a.jsx)("span",{className:b.menuLinkText,children:"More"})}),(0,a.jsx)("ul",{className:(0,o.L)(b.subNavList,N?b.subNavListOpened:"",x),children:e})]},"submenu")],A.push(...e)}const R=(0,i.useCallback)((()=>{let e=!1;return(...n)=>{e||((()=>{if(!O.current||!z.current)return;const e=z.current.getBoundingClientRect().right,n=O.current.getBoundingClientRect().left-e<20;k(n),E(!0),n?B(!1):C(!1)})(...n),e=!0,setTimeout(()=>{e=!1},100))}})(),[]),S=(0,a.jsxs)(a.Fragment,{children:[(0,a.jsx)(l.A,{theme:"secondary",variant:"dark"===e?"white":"black",url:"https://www.ratehawk.com/accounts/login/?lang=en&ref=rh_sign_in",onClick:m,children:"Sign in"}),(0,a.jsx)(l.A,{url:"https://www.ratehawk.com/registration/?lang=en&ref=rh_register",onClick:_,children:"Register"})]}),T=(0,i.useCallback)(e=>{if(!(e.target instanceof HTMLElement))return;const n=e.target.closest(`.${w}`),t=e.target.closest(`.${x}`);n||C(!1),t||B(!1)},[]);return(0,i.useEffect)(()=>(window.addEventListener("resize",R),window.addEventListener("click",T),R(),()=>{window.removeEventListener("resize",R),window.removeEventListener("click",T)}),[R,T]),(0,a.jsxs)("div",{className:(0,o.L)(b.root,n,v,g),style:{zIndex:h},children:[(0,a.jsxs)("div",{className:(0,o.L)(b.header,b.wideHeader,L?b.hidden:""),children:[(0,a.jsxs)("div",{className:b.leftContainer,ref:z,children:[j,(0,a.jsx)("nav",{className:b.navMenu,children:(0,a.jsx)("ul",{className:b.navList,children:F})})]}),(0,a.jsxs)("div",{className:(0,o.L)(b.rightContainer,!H&&b.hidden),ref:O,children:[u,S]})]}),(0,a.jsxs)("div",{className:(0,o.L)(b.header,b.compactHeader,L?b.visible:""),children:[(0,a.jsx)("div",{className:b.leftContainer,children:j}),(0,a.jsxs)("div",{className:b.rightContainer,children:[u,(0,a.jsx)("div",{className:b.burgerMenuContainer,children:(0,a.jsx)("button",{className:b.burgerMenuButton,onClick:()=>C(!y),type:"button",children:y?(0,a.jsx)(f,{}):(0,a.jsx)(d,{})})})]}),y&&(0,a.jsxs)("div",{className:(0,o.L)(b.burgerMenu,w),children:[A.length?(0,a.jsxs)(a.Fragment,{children:[(0,a.jsx)("nav",{className:b.navMenu,children:(0,a.jsx)("ul",{className:b.navList,children:A})}),(0,a.jsx)("div",{className:b.separator})]}):null,(0,a.jsx)("div",{className:b.burgerButtons,children:S})]})]})]})};function M(e){const n=e.url?"a":"button",t=e.url?{target:"_blank",href:e.url}:{type:"button"};return(0,a.jsx)("li",{children:(0,a.jsx)(n,{className:b.menuLink,onClick:e.onClick,...t,children:(0,a.jsx)("span",{className:b.menuLinkText,children:e.title})})},e.title)}},130:(e,n,t)=>{t.d(n,{N:()=>a,u:()=>l}),t(178);var r=t(992);const a=({children:e,fluidMode:n=!1})=>{fluidModeState.state=n;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 ${n?fluidLayoutCss:staticLayoutCss};\n `;return _jsxs(_Fragment,{children:[_jsx("style",{dangerouslySetInnerHTML:{__html:t}}),e]})},l=e=>("boolean"==typeof e?e:r.b.state)?"layout-module__fluidLayout--BNE04":"layout-module__staticLayout--x_6dR"},178:(n,t,r)=>{var a,l;n.exports=(a={Fragment:()=>e.Fragment,jsx:()=>e.jsx,jsxs:()=>e.jsxs},l={},r.d(l,a),l)},268:(e,n,t)=>{t.d(n,{A:()=>o});var r=t(178),a=t(130),l=t(39);const s={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"},o=({className:e,children:n,dimension:t="s",theme:o="primary",onClick:i,disabled:u=!1,type:d="button",variant:c="purple",url:h,isLoading:m,enableMediaDimension:f=!0,fluidMode:_})=>{const g=s[t]||"",v=s[o]||"",p=s[c],b=(0,a.u)(_),w=f?s.withMediaDimension:"",x=h?"a":"button",j=h?{target:"_blank",href:h}:{type:d},L=m?s.isLoading:"";return(0,r.jsxs)(x,{...j,onClick:i,className:(0,l.L)(s.root,e,b,g,v,L,p,w),disabled:u,children:[m?(0,r.jsx)("span",{className:s.spinner}):null,(0,r.jsx)("span",{className:(0,l.L)(s.text,m?s.hidden:null),children:n})]})}},649:(e,t,r)=>{var a,l;e.exports=(a={createElement:()=>n.createElement,useCallback:()=>n.useCallback,useEffect:()=>n.useEffect,useRef:()=>n.useRef,useState:()=>n.useState},l={},r.d(l,a),l)},992:(e,n,t)=>{t.d(n,{b:()=>r}),globalThis.__fluidModeState||(globalThis.__fluidModeState={state:!1});const r=globalThis.__fluidModeState}},r={};function a(e){var n=r[e];if(void 0!==n)return n.exports;var l=r[e]={exports:{}};return t[e](l,l.exports,a),l.exports}a.d=(e,n)=>{for(var t in n)a.o(n,t)&&!a.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:n[t]})},a.o=(e,n)=>Object.prototype.hasOwnProperty.call(e,n);var l={};a.d(l,{A:()=>s.A});var s=a(94);const o=l.A;export{o as default};
1
+ import*as e from"react/jsx-runtime";import*as n from"react";var t={39:(e,n,t)=>{t.d(n,{L:()=>r});const r=(...e)=>e.filter(Boolean).join(" ")},94:(e,n,t)=>{t.d(n,{A:()=>L});var r,a=t(178),l=t(268),s=t(130),o=t(39),i=t(649);function u(){return u=Object.assign?Object.assign.bind():function(e){for(var n=1;n<arguments.length;n++){var t=arguments[n];for(var r in t)({}).hasOwnProperty.call(t,r)&&(e[r]=t[r])}return e},u.apply(null,arguments)}const d=e=>i.createElement("svg",u({xmlns:"http://www.w3.org/2000/svg",width:28,height:28,fill:"none"},e),r||(r=i.createElement("path",{fill:"#8C1EFF",d:"M.32 9.41h28v2h-28zM.32 17.41h28v2h-28z"})));var c,h;function m(){return m=Object.assign?Object.assign.bind():function(e){for(var n=1;n<arguments.length;n++){var t=arguments[n];for(var r in t)({}).hasOwnProperty.call(t,r)&&(e[r]=t[r])}return e},m.apply(null,arguments)}const f=e=>i.createElement("svg",m({xmlns:"http://www.w3.org/2000/svg",width:28,height:28,fill:"none"},e),c||(c=i.createElement("path",{fill:"#8C1EFF",d:"m4.807 3.394 19.799 19.799-1.414 1.414-19.8-19.8z"})),h||(h=i.createElement("path",{fill:"#8C1EFF",d:"m3.393 23.193 19.799-19.8 1.414 1.415L4.807 24.607z"})));var _,g,v;function p(){return p=Object.assign?Object.assign.bind():function(e){for(var n=1;n<arguments.length;n++){var t=arguments[n];for(var r in t)({}).hasOwnProperty.call(t,r)&&(e[r]=t[r])}return e},p.apply(null,arguments)}const b={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"},w="burger-menu",x="sub-menu",j=(0,a.jsx)("a",{href:"https://www.ratehawk.com/",target:"_blank",rel:"noreferrer",children:(0,a.jsx)(e=>i.createElement("svg",p({xmlns:"http://www.w3.org/2000/svg",height:61,fill:"none",viewBox:"0 0 202 61"},e),_||(_=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"})),g||(g=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"})),v||(v=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:b.logo})}),L=({theme:e="dark",className:n="",menu:t,subMenu:r,extraRightContent:u,fluidMode:c,zIndex:h=1,onLoginClick:m,onRegisterClick:_})=>{const g=(0,s.u)(c),v=b[e],p=r&&r.length>0,[L,k]=(0,i.useState)(!1),[y,C]=(0,i.useState)(!1),[N,B]=(0,i.useState)(!1),[H,E]=(0,i.useState)(!1),O=(0,i.useRef)(null),z=(0,i.useRef)(null),A=t?.map(M)||[];let F=A;if(p){const e=r?.map(M)||[];F=[...A,(0,a.jsxs)("li",{children:[(0,a.jsx)("button",{type:"button",onClick:()=>B(!N),className:(0,o.L)(b.menuLink,g,b.subMenuOpener,x,N?b.subMenuOpenerActive:""),children:(0,a.jsx)("span",{className:b.menuLinkText,children:"More"})}),(0,a.jsx)("ul",{className:(0,o.L)(b.subNavList,N?b.subNavListOpened:"",x),children:e})]},"submenu")],A.push(...e)}const R=(0,i.useCallback)((()=>{let e=!1;return(...n)=>{e||((()=>{if(!O.current||!z.current)return;const e=z.current.getBoundingClientRect().right,n=O.current.getBoundingClientRect().left-e<20;k(n),E(!0),n?B(!1):C(!1)})(...n),e=!0,setTimeout(()=>{e=!1},100))}})(),[]),S=(0,a.jsxs)(a.Fragment,{children:[(0,a.jsx)(l.A,{theme:"secondary",variant:"dark"===e?"white":"black",url:"https://www.ratehawk.com/accounts/login/?lang=en&ref=rh_sign_in",onClick:m,children:"Sign in"}),(0,a.jsx)(l.A,{url:"https://www.ratehawk.com/registration/?lang=en&ref=rh_register",onClick:_,children:"Register"})]}),T=(0,i.useCallback)(e=>{if(!(e.target instanceof HTMLElement))return;const n=e.target.closest(`.${w}`),t=e.target.closest(`.${x}`);n||C(!1),t||B(!1)},[]);return(0,i.useEffect)(()=>(window.addEventListener("resize",R),window.addEventListener("click",T),R(),()=>{window.removeEventListener("resize",R),window.removeEventListener("click",T)}),[R,T]),(0,a.jsxs)("div",{className:(0,o.L)(b.root,n,v,g),style:{zIndex:h},children:[(0,a.jsxs)("div",{className:(0,o.L)(b.header,b.wideHeader,L?b.hidden:""),children:[(0,a.jsxs)("div",{className:b.leftContainer,ref:z,children:[j,(0,a.jsx)("nav",{className:b.navMenu,children:(0,a.jsx)("ul",{className:b.navList,children:F})})]}),(0,a.jsxs)("div",{className:(0,o.L)(b.rightContainer,!H&&b.hidden),ref:O,children:[u,S]})]}),(0,a.jsxs)("div",{className:(0,o.L)(b.header,b.compactHeader,L?b.visible:""),children:[(0,a.jsx)("div",{className:b.leftContainer,children:j}),(0,a.jsxs)("div",{className:b.rightContainer,children:[u,(0,a.jsx)("div",{className:b.burgerMenuContainer,children:(0,a.jsx)("button",{className:b.burgerMenuButton,onClick:()=>C(!y),type:"button",children:y?(0,a.jsx)(f,{}):(0,a.jsx)(d,{})})})]}),y&&(0,a.jsxs)("div",{className:(0,o.L)(b.burgerMenu,w),children:[A.length?(0,a.jsxs)(a.Fragment,{children:[(0,a.jsx)("nav",{className:b.navMenu,children:(0,a.jsx)("ul",{className:b.navList,children:A})}),(0,a.jsx)("div",{className:b.separator})]}):null,(0,a.jsx)("div",{className:b.burgerButtons,children:S})]})]})]})};function M(e){const n=e.url?"a":"button",t=e.url?{target:"_blank",href:e.url}:{type:"button"};return(0,a.jsx)("li",{children:(0,a.jsx)(n,{className:b.menuLink,onClick:e.onClick,...t,children:(0,a.jsx)("span",{className:b.menuLinkText,children:e.title})})},e.title)}},130:(e,n,t)=>{t.d(n,{N:()=>a,u:()=>l}),t(178);var r=t(992);const a=({children:e,fluidMode:n=!1})=>{fluidModeState.state=n;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 ${n?fluidLayoutCss:staticLayoutCss};\n `;return _jsxs(_Fragment,{children:[_jsx("style",{dangerouslySetInnerHTML:{__html:t}}),e]})},l=e=>("boolean"==typeof e?e:r.b.state)?"layout-module__fluidLayout--BNE04":"layout-module__staticLayout--x_6dR"},178:(n,t,r)=>{var a,l;n.exports=(a={Fragment:()=>e.Fragment,jsx:()=>e.jsx,jsxs:()=>e.jsxs},l={},r.d(l,a),l)},268:(e,n,t)=>{t.d(n,{A:()=>o});var r=t(178),a=t(130),l=t(39);const s={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"},o=({className:e,children:n,dimension:t="s",theme:o="primary",onClick:i,disabled:u=!1,type:d="button",variant:c="purple",url:h,isLoading:m,enableMediaDimension:f=!0,fluidMode:_})=>{const g=s[t]||"",v=s[o]||"",p=s[c],b=(0,a.u)(_),w=f?s.withMediaDimension:"",x=h?"a":"button",j=h?{target:"_blank",href:h}:{type:d},L=m?s.isLoading:"";return(0,r.jsxs)(x,{...j,onClick:i,className:(0,l.L)(s.root,e,b,g,v,L,p,w),disabled:u,children:[m?(0,r.jsx)("span",{className:s.spinner}):null,(0,r.jsx)("span",{className:(0,l.L)(s.text,m?s.hidden:null),children:n})]})}},649:(e,t,r)=>{var a,l;e.exports=(a={createElement:()=>n.createElement,useCallback:()=>n.useCallback,useEffect:()=>n.useEffect,useRef:()=>n.useRef,useState:()=>n.useState},l={},r.d(l,a),l)},992:(e,n,t)=>{t.d(n,{b:()=>r}),globalThis.__fluidModeState||(globalThis.__fluidModeState={state:!1});const r=globalThis.__fluidModeState}},r={};function a(e){var n=r[e];if(void 0!==n)return n.exports;var l=r[e]={exports:{}};return t[e](l,l.exports,a),l.exports}a.d=(e,n)=>{for(var t in n)a.o(n,t)&&!a.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:n[t]})},a.o=(e,n)=>Object.prototype.hasOwnProperty.call(e,n);var l={};a.d(l,{A:()=>s.A});var s=a(94);const o=l.A;export{o as default};
@@ -0,0 +1,14 @@
1
+ import type React from 'react';
2
+ export interface HeroSectionProps {
3
+ yellowText?: string;
4
+ whiteText?: string;
5
+ showLogo?: boolean;
6
+ backgroundMobile: string;
7
+ backgroundMobile2x: string;
8
+ backgroundDesktop: string;
9
+ backgroundDesktop2x: string;
10
+ fluidMode?: boolean;
11
+ }
12
+ declare const HeroSection: React.FC<HeroSectionProps>;
13
+ export default HeroSection;
14
+ //# sourceMappingURL=HeroSection.d.ts.map
@@ -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"}