@blinkpage/composer-tools 1.0.0

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 (709) hide show
  1. package/EventEmitter.ts +40 -0
  2. package/InlineEditorProvider.tsx +30 -0
  3. package/composer-base-components/base/base.module.scss +638 -0
  4. package/composer-base-components/base/base.tsx +692 -0
  5. package/composer-base-components/base/utitilities/iconList.ts +65 -0
  6. package/composer-base-components/base/utitilities/viewports.module.scss +2 -0
  7. package/composer-base-components/close/close.module.scss +16 -0
  8. package/composer-base-components/close/close.tsx +14 -0
  9. package/composer-base-components/embeded-link/embeded-link.tsx +38 -0
  10. package/composer-base-components/map/map.tsx +267 -0
  11. package/composer-base-components/media/media.tsx +0 -0
  12. package/composer-base-components/modal/index.ts +4 -0
  13. package/composer-base-components/modal/modal.module.scss +19 -0
  14. package/composer-base-components/modal/modal.service.ts +27 -0
  15. package/composer-base-components/modal/modal.tsx +22 -0
  16. package/composer-base-components/slider/slider.tsx +120 -0
  17. package/composer-base-components/ui/accordion/Accordion.module.scss +46 -0
  18. package/composer-base-components/ui/accordion/Accordion.tsx +48 -0
  19. package/composer-base-components/ui/cookie/Cookie.module.scss +473 -0
  20. package/composer-base-components/ui/cookie/Cookie.tsx +69 -0
  21. package/composer-base-components/ui/dropdown/Dropdown.module.scss +79 -0
  22. package/composer-base-components/ui/dropdown/Dropdown.tsx +133 -0
  23. package/context/DataContext.tsx +79 -0
  24. package/custom-component-loader.ts +84 -0
  25. package/custom-hooks/hex-to-rgb.tsx +6 -0
  26. package/custom-hooks/input-templates.tsx +243 -0
  27. package/custom-hooks/load-font.tsx +9 -0
  28. package/custom-hooks/placeholder-filler.tsx +23 -0
  29. package/custom-hooks/project.ts +9 -0
  30. package/editor-components/ComponentRegistery.tsx +42 -0
  31. package/editor-components/EditorComponent.tsx +1103 -0
  32. package/editor-components/Image_gallery/image_gallery_1/image-gallery1.module.scss +130 -0
  33. package/editor-components/Image_gallery/image_gallery_1/image-gallery1.tsx +619 -0
  34. package/editor-components/Image_gallery/image_gallery_10/image-gallery10.module.scss +179 -0
  35. package/editor-components/Image_gallery/image_gallery_10/image-gallery10.tsx +682 -0
  36. package/editor-components/Image_gallery/image_gallery_11/image-gallery11.module.scss +394 -0
  37. package/editor-components/Image_gallery/image_gallery_11/image-gallery11.tsx +595 -0
  38. package/editor-components/Image_gallery/image_gallery_2/image-gallery2.module.scss +267 -0
  39. package/editor-components/Image_gallery/image_gallery_2/image-gallery2.tsx +1028 -0
  40. package/editor-components/Image_gallery/image_gallery_3/image-gallery3.module.scss +158 -0
  41. package/editor-components/Image_gallery/image_gallery_3/image-gallery3.tsx +320 -0
  42. package/editor-components/Image_gallery/image_gallery_4/image-gallery4.module.scss +264 -0
  43. package/editor-components/Image_gallery/image_gallery_4/image-gallery4.tsx +787 -0
  44. package/editor-components/Image_gallery/image_gallery_5/image-gallery5.module.scss +216 -0
  45. package/editor-components/Image_gallery/image_gallery_5/image-gallery5.tsx +404 -0
  46. package/editor-components/Image_gallery/image_gallery_6/image-gallery6.module.scss +359 -0
  47. package/editor-components/Image_gallery/image_gallery_6/image-gallery6.tsx +824 -0
  48. package/editor-components/Image_gallery/image_gallery_7/image-gallery7.module.scss +142 -0
  49. package/editor-components/Image_gallery/image_gallery_7/image-gallery7.tsx +515 -0
  50. package/editor-components/Image_gallery/image_gallery_8/image-gallery8.module.scss +96 -0
  51. package/editor-components/Image_gallery/image_gallery_8/image-gallery8.tsx +443 -0
  52. package/editor-components/Image_gallery/image_gallery_9/image-gallery9.module.scss +196 -0
  53. package/editor-components/Image_gallery/image_gallery_9/image-gallery9.tsx +627 -0
  54. package/editor-components/about/about1/about1.module.scss +162 -0
  55. package/editor-components/about/about1/about1.tsx +343 -0
  56. package/editor-components/about/about10/about10.module.scss +273 -0
  57. package/editor-components/about/about10/about10.tsx +297 -0
  58. package/editor-components/about/about11/about11.module.scss +191 -0
  59. package/editor-components/about/about11/about11.tsx +267 -0
  60. package/editor-components/about/about12/about12.module.scss +195 -0
  61. package/editor-components/about/about12/about12.tsx +204 -0
  62. package/editor-components/about/about13/about13.module.scss +144 -0
  63. package/editor-components/about/about13/about13.tsx +118 -0
  64. package/editor-components/about/about14/about14.module.scss +193 -0
  65. package/editor-components/about/about14/about14.tsx +183 -0
  66. package/editor-components/about/about15/about15.module.scss +190 -0
  67. package/editor-components/about/about15/about15.tsx +194 -0
  68. package/editor-components/about/about16/about16.module.scss +198 -0
  69. package/editor-components/about/about16/about16.tsx +280 -0
  70. package/editor-components/about/about2/about2.module.scss +139 -0
  71. package/editor-components/about/about2/about2.tsx +121 -0
  72. package/editor-components/about/about3/about3.module.scss +249 -0
  73. package/editor-components/about/about3/about3.tsx +270 -0
  74. package/editor-components/about/about4/about4.module.scss +50 -0
  75. package/editor-components/about/about4/about4.tsx +88 -0
  76. package/editor-components/about/about5/about5.module.scss +188 -0
  77. package/editor-components/about/about5/about5.tsx +187 -0
  78. package/editor-components/about/about6/about6.module.scss +84 -0
  79. package/editor-components/about/about6/about6.tsx +141 -0
  80. package/editor-components/about/about7/about7.module.scss +268 -0
  81. package/editor-components/about/about7/about7.tsx +272 -0
  82. package/editor-components/about/about8/about8.module.scss +159 -0
  83. package/editor-components/about/about8/about8.tsx +240 -0
  84. package/editor-components/about/about9/about9.module.scss +79 -0
  85. package/editor-components/about/about9/about9.tsx +142 -0
  86. package/editor-components/blog/blog1/blog1.module.scss +542 -0
  87. package/editor-components/blog/blog1/blog1.tsx +540 -0
  88. package/editor-components/blog/blog2/blog2.module.scss +377 -0
  89. package/editor-components/blog/blog2/blog2.tsx +317 -0
  90. package/editor-components/blog/blog3/blog3.module.scss +477 -0
  91. package/editor-components/blog/blog3/blog3.tsx +709 -0
  92. package/editor-components/breadcrumb/breadcrumb1/breadcrumb1.module.scss +142 -0
  93. package/editor-components/breadcrumb/breadcrumb1/breadcrumb1.tsx +236 -0
  94. package/editor-components/breadcrumb/breadcrumb2/breadcrumb2.module.scss +139 -0
  95. package/editor-components/breadcrumb/breadcrumb2/breadcrumb2.tsx +224 -0
  96. package/editor-components/breadcrumb/breadcrumb3/breadcrumb3.module.scss +193 -0
  97. package/editor-components/breadcrumb/breadcrumb3/breadcrumb3.tsx +218 -0
  98. package/editor-components/breadcrumb/breadcrumb4/breadcrumb4.module.scss +201 -0
  99. package/editor-components/breadcrumb/breadcrumb4/breadcrumb4.tsx +297 -0
  100. package/editor-components/breadcrumb/breadcrumb5/breadcrumb5.module.scss +90 -0
  101. package/editor-components/breadcrumb/breadcrumb5/breadcrumb5.tsx +161 -0
  102. package/editor-components/breadcrumb/breadcrumb6/breadcrumb6.module.scss +168 -0
  103. package/editor-components/breadcrumb/breadcrumb6/breadcrumb6.tsx +235 -0
  104. package/editor-components/call_to_action/call_to_action1/call_to_action1.module.scss +41 -0
  105. package/editor-components/call_to_action/call_to_action1/call_to_action1.tsx +84 -0
  106. package/editor-components/call_to_action/call_to_action10/call_to_action10.module.scss +96 -0
  107. package/editor-components/call_to_action/call_to_action10/call_to_action10.tsx +233 -0
  108. package/editor-components/call_to_action/call_to_action11/call_to_action11.module.scss +99 -0
  109. package/editor-components/call_to_action/call_to_action11/call_to_action11.tsx +73 -0
  110. package/editor-components/call_to_action/call_to_action12/call_to_action12.module.scss +146 -0
  111. package/editor-components/call_to_action/call_to_action12/call_to_action12.tsx +147 -0
  112. package/editor-components/call_to_action/call_to_action13/call_to_action13.module.scss +149 -0
  113. package/editor-components/call_to_action/call_to_action13/call_to_action13.tsx +127 -0
  114. package/editor-components/call_to_action/call_to_action14/call_to_action14.module.scss +176 -0
  115. package/editor-components/call_to_action/call_to_action14/call_to_action14.tsx +99 -0
  116. package/editor-components/call_to_action/call_to_action15/call_to_action15.module.scss +32 -0
  117. package/editor-components/call_to_action/call_to_action15/call_to_action15.tsx +87 -0
  118. package/editor-components/call_to_action/call_to_action16/call_to_action16.module.scss +54 -0
  119. package/editor-components/call_to_action/call_to_action16/call_to_action16.tsx +95 -0
  120. package/editor-components/call_to_action/call_to_action17/call_to_action17.module.scss +43 -0
  121. package/editor-components/call_to_action/call_to_action17/call_to_action17.tsx +80 -0
  122. package/editor-components/call_to_action/call_to_action18/call_to_action18.module.scss +88 -0
  123. package/editor-components/call_to_action/call_to_action18/call_to_action18.tsx +104 -0
  124. package/editor-components/call_to_action/call_to_action2/call_to_action2.module.scss +271 -0
  125. package/editor-components/call_to_action/call_to_action2/call_to_action2.tsx +221 -0
  126. package/editor-components/call_to_action/call_to_action20/call_to_action20.module.scss +89 -0
  127. package/editor-components/call_to_action/call_to_action20/call_to_action20.tsx +96 -0
  128. package/editor-components/call_to_action/call_to_action21/call_to_action21.module.scss +84 -0
  129. package/editor-components/call_to_action/call_to_action21/call_to_action21.tsx +111 -0
  130. package/editor-components/call_to_action/call_to_action22/call_to_action22.module.scss +83 -0
  131. package/editor-components/call_to_action/call_to_action22/call_to_action22.tsx +118 -0
  132. package/editor-components/call_to_action/call_to_action3/call_to_action3.module.scss +94 -0
  133. package/editor-components/call_to_action/call_to_action3/call_to_action3.tsx +121 -0
  134. package/editor-components/call_to_action/call_to_action4/call_to_action4.module.scss +96 -0
  135. package/editor-components/call_to_action/call_to_action4/call_to_action4.tsx +253 -0
  136. package/editor-components/call_to_action/call_to_action5/call_to_action5.module.scss +185 -0
  137. package/editor-components/call_to_action/call_to_action5/call_to_action5.tsx +168 -0
  138. package/editor-components/call_to_action/call_to_action6/call_to_action6.module.scss +188 -0
  139. package/editor-components/call_to_action/call_to_action6/call_to_action6.tsx +230 -0
  140. package/editor-components/call_to_action/call_to_action7/call_to_action7.module.scss +158 -0
  141. package/editor-components/call_to_action/call_to_action7/call_to_action7.tsx +193 -0
  142. package/editor-components/call_to_action/call_to_action8/call_to_action8.module.scss +75 -0
  143. package/editor-components/call_to_action/call_to_action8/call_to_action8.tsx +113 -0
  144. package/editor-components/call_to_action/call_to_action9/call_to_action9.module.scss +71 -0
  145. package/editor-components/call_to_action/call_to_action9/call_to_action9.tsx +258 -0
  146. package/editor-components/coming-soon/coming-soon1/coming-soon1.module.scss +100 -0
  147. package/editor-components/coming-soon/coming-soon1/coming-soon1.tsx +200 -0
  148. package/editor-components/coming-soon/coming-soon2/coming-soon2.module.scss +230 -0
  149. package/editor-components/coming-soon/coming-soon2/coming-soon2.tsx +355 -0
  150. package/editor-components/coming-soon/coming-soon3/coming-soon3.module.scss +205 -0
  151. package/editor-components/coming-soon/coming-soon3/coming-soon3.tsx +250 -0
  152. package/editor-components/coming-soon/coming-soon4/coming-soon4.module.scss +139 -0
  153. package/editor-components/coming-soon/coming-soon4/coming-soon4.tsx +228 -0
  154. package/editor-components/comparison/comparison1/comparison1.module.scss +320 -0
  155. package/editor-components/comparison/comparison1/comparison1.tsx +315 -0
  156. package/editor-components/contacts/form1/form1.module.scss +77 -0
  157. package/editor-components/contacts/form1/form1.tsx +300 -0
  158. package/editor-components/contacts/form2/form2.module.scss +183 -0
  159. package/editor-components/contacts/form2/form2.tsx +425 -0
  160. package/editor-components/contacts/form3/form3.module.scss +496 -0
  161. package/editor-components/contacts/form3/form3.tsx +782 -0
  162. package/editor-components/contacts/form4/form4.module.scss +192 -0
  163. package/editor-components/contacts/form4/form4.tsx +593 -0
  164. package/editor-components/contacts/form5/form5.module.scss +159 -0
  165. package/editor-components/contacts/form5/form5.tsx +615 -0
  166. package/editor-components/contacts/form6/form6.module.scss +177 -0
  167. package/editor-components/contacts/form6/form6.tsx +580 -0
  168. package/editor-components/contacts/form7/form7.module.scss +167 -0
  169. package/editor-components/contacts/form7/form7.tsx +417 -0
  170. package/editor-components/contacts/form8/form8.module.scss +151 -0
  171. package/editor-components/contacts/form8/form8.tsx +506 -0
  172. package/editor-components/contacts/form9/form9.module.scss +314 -0
  173. package/editor-components/contacts/form9/form9.tsx +923 -0
  174. package/editor-components/download/download1/download1.module.scss +109 -0
  175. package/editor-components/download/download1/download1.tsx +119 -0
  176. package/editor-components/download/download10/download10.module.scss +142 -0
  177. package/editor-components/download/download10/download10.tsx +254 -0
  178. package/editor-components/download/download11/download11.module.scss +201 -0
  179. package/editor-components/download/download11/download11.tsx +253 -0
  180. package/editor-components/download/download2/download2.module.scss +95 -0
  181. package/editor-components/download/download2/download2.tsx +249 -0
  182. package/editor-components/download/download3/download3.module.scss +359 -0
  183. package/editor-components/download/download3/download3.tsx +185 -0
  184. package/editor-components/download/download4/download4.module.scss +102 -0
  185. package/editor-components/download/download4/download4.tsx +119 -0
  186. package/editor-components/download/download5/download5.module.scss +135 -0
  187. package/editor-components/download/download5/download5.tsx +135 -0
  188. package/editor-components/download/download6/download6.module.scss +83 -0
  189. package/editor-components/download/download6/download6.tsx +122 -0
  190. package/editor-components/download/download7/download7.module.scss +136 -0
  191. package/editor-components/download/download7/download7.tsx +135 -0
  192. package/editor-components/download/download8/download8.module.scss +316 -0
  193. package/editor-components/download/download8/download8.tsx +248 -0
  194. package/editor-components/download/download9/download9.module.scss +284 -0
  195. package/editor-components/download/download9/download9.tsx +154 -0
  196. package/editor-components/e-commerce/e-commerce1/e-commerce1.module.scss +459 -0
  197. package/editor-components/e-commerce/e-commerce1/e-commerce1.tsx +809 -0
  198. package/editor-components/e-commerce/e-commerce2/e-commerce2.module.scss +318 -0
  199. package/editor-components/e-commerce/e-commerce2/e-commerce2.tsx +3361 -0
  200. package/editor-components/e-commerce/e-commerce3/e-commerce3.module.scss +94 -0
  201. package/editor-components/e-commerce/e-commerce3/e-commerce3.tsx +350 -0
  202. package/editor-components/e-commerce/e-commerce4/e-commerce4.module.scss +289 -0
  203. package/editor-components/e-commerce/e-commerce4/e-commerce4.tsx +2234 -0
  204. package/editor-components/e-commerce/e-commerce5/e-commerce5.module.scss +264 -0
  205. package/editor-components/e-commerce/e-commerce5/e-commerce5.tsx +542 -0
  206. package/editor-components/e-commerce/e-commerce6/e-commerce6.module.scss +489 -0
  207. package/editor-components/e-commerce/e-commerce6/e-commerce6.tsx +518 -0
  208. package/editor-components/e-commerce/e-commerce7/e-commerce7.module.scss +688 -0
  209. package/editor-components/e-commerce/e-commerce7/e-commerce7.tsx +1442 -0
  210. package/editor-components/e-commerce/e-commerce8/e-commerce8.module.scss +310 -0
  211. package/editor-components/e-commerce/e-commerce8/e-commerce8.tsx +957 -0
  212. package/editor-components/faq/faq1/faq1.module.scss +93 -0
  213. package/editor-components/faq/faq1/faq1.tsx +195 -0
  214. package/editor-components/faq/faq10/faq10.module.scss +153 -0
  215. package/editor-components/faq/faq10/faq10.tsx +452 -0
  216. package/editor-components/faq/faq2/faq2.module.scss +123 -0
  217. package/editor-components/faq/faq2/faq2.tsx +374 -0
  218. package/editor-components/faq/faq3/faq3.module.scss +144 -0
  219. package/editor-components/faq/faq3/faq3.tsx +407 -0
  220. package/editor-components/faq/faq4/faq4.module.scss +124 -0
  221. package/editor-components/faq/faq4/faq4.tsx +303 -0
  222. package/editor-components/faq/faq5/faq5.module.scss +151 -0
  223. package/editor-components/faq/faq5/faq5.tsx +614 -0
  224. package/editor-components/faq/faq6/faq6.module.scss +116 -0
  225. package/editor-components/faq/faq6/faq6.tsx +241 -0
  226. package/editor-components/faq/faq7/faq7.module.scss +98 -0
  227. package/editor-components/faq/faq7/faq7.tsx +298 -0
  228. package/editor-components/faq/faq8/faq8.module.scss +217 -0
  229. package/editor-components/faq/faq8/faq8.tsx +796 -0
  230. package/editor-components/faq/faq9/faq9.module.scss +137 -0
  231. package/editor-components/faq/faq9/faq9.tsx +466 -0
  232. package/editor-components/feature/feature1/feature1.module.scss +115 -0
  233. package/editor-components/feature/feature1/feature1.tsx +148 -0
  234. package/editor-components/feature/feature10/feature10.module.scss +191 -0
  235. package/editor-components/feature/feature10/feature10.tsx +468 -0
  236. package/editor-components/feature/feature11/feature11.module.scss +99 -0
  237. package/editor-components/feature/feature11/feature11.tsx +337 -0
  238. package/editor-components/feature/feature12/feature12.module.scss +169 -0
  239. package/editor-components/feature/feature12/feature12.tsx +325 -0
  240. package/editor-components/feature/feature13/feature13.module.scss +151 -0
  241. package/editor-components/feature/feature13/feature13.tsx +680 -0
  242. package/editor-components/feature/feature14/feature14.module.scss +119 -0
  243. package/editor-components/feature/feature14/feature14.tsx +284 -0
  244. package/editor-components/feature/feature15/feature15.module.scss +214 -0
  245. package/editor-components/feature/feature15/feature15.tsx +344 -0
  246. package/editor-components/feature/feature16/feature16.module.scss +234 -0
  247. package/editor-components/feature/feature16/feature16.tsx +527 -0
  248. package/editor-components/feature/feature17/feature17.module.scss +187 -0
  249. package/editor-components/feature/feature17/feature17.tsx +527 -0
  250. package/editor-components/feature/feature18/feature18.module.scss +213 -0
  251. package/editor-components/feature/feature18/feature18.tsx +405 -0
  252. package/editor-components/feature/feature19/feature19.module.scss +212 -0
  253. package/editor-components/feature/feature19/feature19.tsx +239 -0
  254. package/editor-components/feature/feature2/feature2.module.scss +120 -0
  255. package/editor-components/feature/feature2/feature2.tsx +246 -0
  256. package/editor-components/feature/feature20/feature20.module.scss +239 -0
  257. package/editor-components/feature/feature20/feature20.tsx +238 -0
  258. package/editor-components/feature/feature21/feature21.module.scss +268 -0
  259. package/editor-components/feature/feature21/feature21.tsx +352 -0
  260. package/editor-components/feature/feature22/feature22.module.scss +191 -0
  261. package/editor-components/feature/feature22/feature22.tsx +266 -0
  262. package/editor-components/feature/feature24/feature24.module.scss +121 -0
  263. package/editor-components/feature/feature24/feature24.tsx +381 -0
  264. package/editor-components/feature/feature25/feature25.module.scss +213 -0
  265. package/editor-components/feature/feature25/feature25.tsx +398 -0
  266. package/editor-components/feature/feature26/feature26.module.scss +188 -0
  267. package/editor-components/feature/feature26/feature26.tsx +139 -0
  268. package/editor-components/feature/feature27/feature27.module.scss +155 -0
  269. package/editor-components/feature/feature27/feature27.tsx +164 -0
  270. package/editor-components/feature/feature28/feature28.module.scss +89 -0
  271. package/editor-components/feature/feature28/feature28.tsx +123 -0
  272. package/editor-components/feature/feature29/feature29.module.scss +285 -0
  273. package/editor-components/feature/feature29/feature29.tsx +482 -0
  274. package/editor-components/feature/feature3/feature3.module.scss +335 -0
  275. package/editor-components/feature/feature3/feature3.tsx +418 -0
  276. package/editor-components/feature/feature30/feature30.module.scss +85 -0
  277. package/editor-components/feature/feature30/feature30.tsx +316 -0
  278. package/editor-components/feature/feature31/feature31.module.scss +101 -0
  279. package/editor-components/feature/feature31/feature31.tsx +315 -0
  280. package/editor-components/feature/feature32/feature32.module.scss +131 -0
  281. package/editor-components/feature/feature32/feature32.tsx +226 -0
  282. package/editor-components/feature/feature33/feature33.module.scss +168 -0
  283. package/editor-components/feature/feature33/feature33.tsx +285 -0
  284. package/editor-components/feature/feature34/feature34.module.scss +151 -0
  285. package/editor-components/feature/feature34/feature34.tsx +207 -0
  286. package/editor-components/feature/feature35/feature35.module.scss +145 -0
  287. package/editor-components/feature/feature35/feature35.tsx +422 -0
  288. package/editor-components/feature/feature36/feature36.module.scss +106 -0
  289. package/editor-components/feature/feature36/feature36.tsx +194 -0
  290. package/editor-components/feature/feature37/feature37.module.scss +145 -0
  291. package/editor-components/feature/feature37/feature37.tsx +249 -0
  292. package/editor-components/feature/feature38/feature38.module.scss +174 -0
  293. package/editor-components/feature/feature38/feature38.tsx +402 -0
  294. package/editor-components/feature/feature39/feature39.module.scss +198 -0
  295. package/editor-components/feature/feature39/feature39.tsx +367 -0
  296. package/editor-components/feature/feature4/feature4.module.scss +220 -0
  297. package/editor-components/feature/feature4/feature4.tsx +543 -0
  298. package/editor-components/feature/feature40/feature40.module.scss +211 -0
  299. package/editor-components/feature/feature40/feature40.tsx +424 -0
  300. package/editor-components/feature/feature41/feature41.module.scss +142 -0
  301. package/editor-components/feature/feature41/feature41.tsx +255 -0
  302. package/editor-components/feature/feature43/feature43.module.scss +133 -0
  303. package/editor-components/feature/feature43/feature43.tsx +305 -0
  304. package/editor-components/feature/feature44/feature44.module.scss +211 -0
  305. package/editor-components/feature/feature44/feature44.tsx +331 -0
  306. package/editor-components/feature/feature45/feature45.module.scss +144 -0
  307. package/editor-components/feature/feature45/feature45.tsx +482 -0
  308. package/editor-components/feature/feature46/feature46.module.scss +131 -0
  309. package/editor-components/feature/feature46/feature46.tsx +352 -0
  310. package/editor-components/feature/feature47/feature47.module.scss +88 -0
  311. package/editor-components/feature/feature47/feature47.tsx +356 -0
  312. package/editor-components/feature/feature48/feature48.module.scss +143 -0
  313. package/editor-components/feature/feature48/feature48.tsx +302 -0
  314. package/editor-components/feature/feature49/feature49.module.scss +141 -0
  315. package/editor-components/feature/feature49/feature49.tsx +294 -0
  316. package/editor-components/feature/feature5/feature5.module.scss +534 -0
  317. package/editor-components/feature/feature5/feature5.tsx +509 -0
  318. package/editor-components/feature/feature6/feature6.module.scss +150 -0
  319. package/editor-components/feature/feature6/feature6.tsx +268 -0
  320. package/editor-components/feature/feature7/feature7.module.scss +159 -0
  321. package/editor-components/feature/feature7/feature7.tsx +263 -0
  322. package/editor-components/feature/feature8/feature8.module.scss +106 -0
  323. package/editor-components/feature/feature8/feature8.tsx +474 -0
  324. package/editor-components/feature/feature9/feature9.module.scss +172 -0
  325. package/editor-components/feature/feature9/feature9.tsx +377 -0
  326. package/editor-components/feedback/feedbackmodal1/feedbackmodal1.module.scss +305 -0
  327. package/editor-components/feedback/feedbackmodal1/feedbackmodal1.tsx +386 -0
  328. package/editor-components/footer/footer1/footer1.module.scss +445 -0
  329. package/editor-components/footer/footer1/footer1.tsx +474 -0
  330. package/editor-components/footer/footer10/footer10.module.scss +391 -0
  331. package/editor-components/footer/footer10/footer10.tsx +371 -0
  332. package/editor-components/footer/footer11/footer11.module.scss +143 -0
  333. package/editor-components/footer/footer11/footer11.tsx +196 -0
  334. package/editor-components/footer/footer12/footer12.module.scss +293 -0
  335. package/editor-components/footer/footer12/footer12.tsx +568 -0
  336. package/editor-components/footer/footer2/footer2.module.scss +154 -0
  337. package/editor-components/footer/footer2/footer2.tsx +385 -0
  338. package/editor-components/footer/footer3/footer3.module.scss +420 -0
  339. package/editor-components/footer/footer3/footer3.tsx +875 -0
  340. package/editor-components/footer/footer4/footer4.module.scss +477 -0
  341. package/editor-components/footer/footer4/footer4.tsx +703 -0
  342. package/editor-components/footer/footer5/footer5.module.scss +283 -0
  343. package/editor-components/footer/footer5/footer5.tsx +208 -0
  344. package/editor-components/footer/footer6/footer6.module.scss +155 -0
  345. package/editor-components/footer/footer6/footer6.tsx +372 -0
  346. package/editor-components/footer/footer7/footer7.module.scss +197 -0
  347. package/editor-components/footer/footer7/footer7.tsx +190 -0
  348. package/editor-components/footer/footer8/footer8.module.scss +456 -0
  349. package/editor-components/footer/footer8/footer8.tsx +715 -0
  350. package/editor-components/footer/footer9/footer9.module.scss +386 -0
  351. package/editor-components/footer/footer9/footer9.tsx +514 -0
  352. package/editor-components/hero-section/hero-section1/hero-section1.module.scss +578 -0
  353. package/editor-components/hero-section/hero-section1/hero-section1.tsx +493 -0
  354. package/editor-components/hero-section/hero-section10/hero-section10.module.scss +492 -0
  355. package/editor-components/hero-section/hero-section10/hero-section10.tsx +611 -0
  356. package/editor-components/hero-section/hero-section11/hero-section11.module.scss +295 -0
  357. package/editor-components/hero-section/hero-section11/hero-section11.tsx +224 -0
  358. package/editor-components/hero-section/hero-section12/hero-section12.module.scss +504 -0
  359. package/editor-components/hero-section/hero-section12/hero-section12.tsx +974 -0
  360. package/editor-components/hero-section/hero-section13/hero-section13.module.scss +171 -0
  361. package/editor-components/hero-section/hero-section13/hero-section13.tsx +417 -0
  362. package/editor-components/hero-section/hero-section14/hero-section14.module.scss +210 -0
  363. package/editor-components/hero-section/hero-section14/hero-section14.tsx +333 -0
  364. package/editor-components/hero-section/hero-section15/hero-section15.module.scss +330 -0
  365. package/editor-components/hero-section/hero-section15/hero-section15.tsx +254 -0
  366. package/editor-components/hero-section/hero-section16/hero-section16.module.scss +392 -0
  367. package/editor-components/hero-section/hero-section16/hero-section16.tsx +369 -0
  368. package/editor-components/hero-section/hero-section17/hero-section17.module.scss +240 -0
  369. package/editor-components/hero-section/hero-section17/hero-section17.tsx +263 -0
  370. package/editor-components/hero-section/hero-section18/hero-section18.module.scss +403 -0
  371. package/editor-components/hero-section/hero-section18/hero-section18.tsx +569 -0
  372. package/editor-components/hero-section/hero-section19/hero-section19.module.scss +333 -0
  373. package/editor-components/hero-section/hero-section19/hero-section19.tsx +384 -0
  374. package/editor-components/hero-section/hero-section2/hero-section2.module.scss +329 -0
  375. package/editor-components/hero-section/hero-section2/hero-section2.tsx +393 -0
  376. package/editor-components/hero-section/hero-section20/hero-section20.module.scss +475 -0
  377. package/editor-components/hero-section/hero-section20/hero-section20.tsx +994 -0
  378. package/editor-components/hero-section/hero-section21/hero-section21.module.scss +264 -0
  379. package/editor-components/hero-section/hero-section21/hero-section21.tsx +249 -0
  380. package/editor-components/hero-section/hero-section22/hero-section22.module.scss +394 -0
  381. package/editor-components/hero-section/hero-section22/hero-section22.tsx +421 -0
  382. package/editor-components/hero-section/hero-section23/hero-section23.module.scss +573 -0
  383. package/editor-components/hero-section/hero-section23/hero-section23.tsx +592 -0
  384. package/editor-components/hero-section/hero-section24/hero-section24.module.scss +531 -0
  385. package/editor-components/hero-section/hero-section24/hero-section24.tsx +462 -0
  386. package/editor-components/hero-section/hero-section25/hero-section25.module.scss +538 -0
  387. package/editor-components/hero-section/hero-section25/hero-section25.tsx +656 -0
  388. package/editor-components/hero-section/hero-section26/hero-section26.module.scss +242 -0
  389. package/editor-components/hero-section/hero-section26/hero-section26.tsx +441 -0
  390. package/editor-components/hero-section/hero-section27/hero-section27.module.scss +684 -0
  391. package/editor-components/hero-section/hero-section27/hero-section27.tsx +717 -0
  392. package/editor-components/hero-section/hero-section28/hero-section28.module.scss +368 -0
  393. package/editor-components/hero-section/hero-section28/hero-section28.tsx +477 -0
  394. package/editor-components/hero-section/hero-section29/hero-section29.module.scss +298 -0
  395. package/editor-components/hero-section/hero-section29/hero-section29.tsx +334 -0
  396. package/editor-components/hero-section/hero-section3/hero-section3.module.scss +810 -0
  397. package/editor-components/hero-section/hero-section3/hero-section3.tsx +468 -0
  398. package/editor-components/hero-section/hero-section30/hero-section30.module.scss +234 -0
  399. package/editor-components/hero-section/hero-section30/hero-section30.tsx +208 -0
  400. package/editor-components/hero-section/hero-section31/hero-section31.module.scss +468 -0
  401. package/editor-components/hero-section/hero-section31/hero-section31.tsx +1083 -0
  402. package/editor-components/hero-section/hero-section32/hero-section32.module.scss +488 -0
  403. package/editor-components/hero-section/hero-section32/hero-section32.tsx +530 -0
  404. package/editor-components/hero-section/hero-section33/hero-section33.module.scss +401 -0
  405. package/editor-components/hero-section/hero-section33/hero-section33.tsx +471 -0
  406. package/editor-components/hero-section/hero-section34/hero-section34.module.scss +384 -0
  407. package/editor-components/hero-section/hero-section34/hero-section34.tsx +465 -0
  408. package/editor-components/hero-section/hero-section35/hero-section35.module.scss +522 -0
  409. package/editor-components/hero-section/hero-section35/hero-section35.tsx +441 -0
  410. package/editor-components/hero-section/hero-section38/hero-section38.module.scss +617 -0
  411. package/editor-components/hero-section/hero-section38/hero-section38.tsx +458 -0
  412. package/editor-components/hero-section/hero-section4/hero-section4.module.scss +283 -0
  413. package/editor-components/hero-section/hero-section4/hero-section4.tsx +292 -0
  414. package/editor-components/hero-section/hero-section5/hero-section5.module.scss +178 -0
  415. package/editor-components/hero-section/hero-section5/hero-section5.tsx +159 -0
  416. package/editor-components/hero-section/hero-section6/hero-section6.module.scss +339 -0
  417. package/editor-components/hero-section/hero-section6/hero-section6.tsx +244 -0
  418. package/editor-components/hero-section/hero-section7/hero-section7.module.scss +117 -0
  419. package/editor-components/hero-section/hero-section7/hero-section7.tsx +277 -0
  420. package/editor-components/hero-section/hero-section8/hero-section8.module.scss +296 -0
  421. package/editor-components/hero-section/hero-section8/hero-section8.tsx +500 -0
  422. package/editor-components/hero-section/hero-section9/hero-section9.module.scss +292 -0
  423. package/editor-components/hero-section/hero-section9/hero-section9.tsx +536 -0
  424. package/editor-components/intro-section/intro-section1/intro-section1.module.scss +392 -0
  425. package/editor-components/intro-section/intro-section1/intro-section1.tsx +263 -0
  426. package/editor-components/intro-section/intro-section10/intro-section10.module.scss +182 -0
  427. package/editor-components/intro-section/intro-section10/intro-section10.tsx +167 -0
  428. package/editor-components/intro-section/intro-section11/intro-section11.module.scss +121 -0
  429. package/editor-components/intro-section/intro-section11/intro-section11.tsx +142 -0
  430. package/editor-components/intro-section/intro-section2/intro-section2.module.scss +125 -0
  431. package/editor-components/intro-section/intro-section2/intro-section2.tsx +147 -0
  432. package/editor-components/intro-section/intro-section3/intro-section3.module.scss +106 -0
  433. package/editor-components/intro-section/intro-section3/intro-section3.tsx +140 -0
  434. package/editor-components/intro-section/intro-section4/intro-section4.module.scss +102 -0
  435. package/editor-components/intro-section/intro-section4/intro-section4.tsx +128 -0
  436. package/editor-components/intro-section/intro-section5/intro-section5.module.scss +185 -0
  437. package/editor-components/intro-section/intro-section5/intro-section5.tsx +142 -0
  438. package/editor-components/intro-section/intro-section6/intro-section6.module.scss +219 -0
  439. package/editor-components/intro-section/intro-section6/intro-section6.tsx +269 -0
  440. package/editor-components/intro-section/intro-section7/intro-section7.module.scss +147 -0
  441. package/editor-components/intro-section/intro-section7/intro-section7.tsx +161 -0
  442. package/editor-components/intro-section/intro-section8/intro-section8.module.scss +151 -0
  443. package/editor-components/intro-section/intro-section8/intro-section8.tsx +182 -0
  444. package/editor-components/intro-section/intro-section9/intro-section9.module.scss +66 -0
  445. package/editor-components/intro-section/intro-section9/intro-section9.tsx +132 -0
  446. package/editor-components/legal/privacy-policy.module.scss +19 -0
  447. package/editor-components/legal/privacy-policy.tsx +126 -0
  448. package/editor-components/list/list1/list1.module.scss +224 -0
  449. package/editor-components/list/list1/list1.tsx +386 -0
  450. package/editor-components/list/list10/list10.module.scss +293 -0
  451. package/editor-components/list/list10/list10.tsx +240 -0
  452. package/editor-components/list/list11/list11.module.scss +164 -0
  453. package/editor-components/list/list11/list11.tsx +277 -0
  454. package/editor-components/list/list12/list12.module.scss +207 -0
  455. package/editor-components/list/list12/list12.tsx +241 -0
  456. package/editor-components/list/list2/list2.module.scss +178 -0
  457. package/editor-components/list/list2/list2.tsx +416 -0
  458. package/editor-components/list/list3/list3.module.scss +239 -0
  459. package/editor-components/list/list3/list3.tsx +337 -0
  460. package/editor-components/list/list4/list4.module.scss +243 -0
  461. package/editor-components/list/list4/list4.tsx +221 -0
  462. package/editor-components/list/list5/list5.module.scss +183 -0
  463. package/editor-components/list/list5/list5.tsx +323 -0
  464. package/editor-components/list/list6/list6.module.scss +230 -0
  465. package/editor-components/list/list6/list6.tsx +263 -0
  466. package/editor-components/list/list7/list7.module.scss +127 -0
  467. package/editor-components/list/list7/list7.tsx +178 -0
  468. package/editor-components/list/list8/list8.module.scss +146 -0
  469. package/editor-components/list/list8/list8.tsx +256 -0
  470. package/editor-components/list/list9/list9.module.scss +320 -0
  471. package/editor-components/list/list9/list9.tsx +265 -0
  472. package/editor-components/location/location1/location1.module.scss +218 -0
  473. package/editor-components/location/location1/location1.tsx +387 -0
  474. package/editor-components/location/location2/location2.module.scss +181 -0
  475. package/editor-components/location/location2/location2.tsx +507 -0
  476. package/editor-components/location/location3/location3.module.scss +118 -0
  477. package/editor-components/location/location3/location3.tsx +347 -0
  478. package/editor-components/location/location4/location4.module.scss +138 -0
  479. package/editor-components/location/location4/location4.tsx +221 -0
  480. package/editor-components/location/location5/location5.module.scss +89 -0
  481. package/editor-components/location/location5/location5.tsx +258 -0
  482. package/editor-components/location/location6/location6.module.scss +211 -0
  483. package/editor-components/location/location6/location6.tsx +476 -0
  484. package/editor-components/location/location7/location7.module.scss +245 -0
  485. package/editor-components/location/location7/location7.tsx +347 -0
  486. package/editor-components/location/themes.tsx +229 -0
  487. package/editor-components/logo-clouds/logo-comp1/logo-comp1.module.scss +36 -0
  488. package/editor-components/logo-clouds/logo-comp1/logo-comp1.tsx +119 -0
  489. package/editor-components/logo-clouds/logo-comp10/logo-comp10.module.scss +83 -0
  490. package/editor-components/logo-clouds/logo-comp10/logo-comp10.tsx +336 -0
  491. package/editor-components/logo-clouds/logo-comp2/logo-comp2.module.scss +90 -0
  492. package/editor-components/logo-clouds/logo-comp2/logo-comp2.tsx +139 -0
  493. package/editor-components/logo-clouds/logo-comp3/logo-comp3.module.scss +110 -0
  494. package/editor-components/logo-clouds/logo-comp3/logo-comp3.tsx +144 -0
  495. package/editor-components/logo-clouds/logo-comp4/logo-comp4.module.scss +96 -0
  496. package/editor-components/logo-clouds/logo-comp4/logo-comp4.tsx +151 -0
  497. package/editor-components/logo-clouds/logo-comp5/logo-comp5.module.scss +70 -0
  498. package/editor-components/logo-clouds/logo-comp5/logo-comp5.tsx +116 -0
  499. package/editor-components/logo-clouds/logo-comp6/logo-comp6.module.scss +58 -0
  500. package/editor-components/logo-clouds/logo-comp6/logo-comp6.tsx +245 -0
  501. package/editor-components/logo-clouds/logo-comp7/logo-comp7.module.scss +114 -0
  502. package/editor-components/logo-clouds/logo-comp7/logo-comp7.tsx +100 -0
  503. package/editor-components/logo-clouds/logo-comp8/logo-comp8.module.scss +116 -0
  504. package/editor-components/logo-clouds/logo-comp8/logo-comp8.tsx +275 -0
  505. package/editor-components/logo-clouds/logo-comp9/logo-comp9.module.scss +130 -0
  506. package/editor-components/logo-clouds/logo-comp9/logo-comp9.tsx +206 -0
  507. package/editor-components/modal/confirmation-modal-2/confirmation-modal-2.module.scss +384 -0
  508. package/editor-components/modal/confirmation-modal-2/confirmation-modal-2.tsx +355 -0
  509. package/editor-components/modal/confirmation-modal1/confirmationmodal1.module.scss +113 -0
  510. package/editor-components/modal/confirmation-modal1/confirmationmodal1.tsx +106 -0
  511. package/editor-components/modal/formmodal1/formmodal1.module.scss +156 -0
  512. package/editor-components/modal/formmodal1/formmodal1.tsx +563 -0
  513. package/editor-components/modal/notice-modal/notice.module.scss +92 -0
  514. package/editor-components/modal/notice-modal/notice.tsx +97 -0
  515. package/editor-components/modal/notification-modal1/notificationmodal1.module.scss +166 -0
  516. package/editor-components/modal/notification-modal1/notificationmodal1.tsx +136 -0
  517. package/editor-components/modal/notificationmodal2/notificationmodal2.module.scss +134 -0
  518. package/editor-components/modal/notificationmodal2/notificationmodal2.tsx +170 -0
  519. package/editor-components/modal/subscription-modal/subscription-modal.module.scss +151 -0
  520. package/editor-components/modal/subscription-modal/subscription-modal.tsx +141 -0
  521. package/editor-components/modal/survey-modal/survey-modal.module.scss +277 -0
  522. package/editor-components/modal/survey-modal/survey-modal.tsx +327 -0
  523. package/editor-components/modal/terms-of-use/terms-of-use.module.scss +214 -0
  524. package/editor-components/modal/terms-of-use/terms-of-use.tsx +142 -0
  525. package/editor-components/navigators/navbar1/navbar1.module.scss +633 -0
  526. package/editor-components/navigators/navbar1/navbar1.tsx +1644 -0
  527. package/editor-components/navigators/navbar10/navbar10.module.scss +961 -0
  528. package/editor-components/navigators/navbar10/navbar10.tsx +3070 -0
  529. package/editor-components/navigators/navbar2/navbar2.module.scss +559 -0
  530. package/editor-components/navigators/navbar2/navbar2.tsx +1009 -0
  531. package/editor-components/navigators/navbar3/navbar3.module.scss +583 -0
  532. package/editor-components/navigators/navbar3/navbar3.tsx +1790 -0
  533. package/editor-components/navigators/navbar4/navbar4.module.scss +708 -0
  534. package/editor-components/navigators/navbar4/navbar4.tsx +1864 -0
  535. package/editor-components/navigators/navbar5/navbar5.module.scss +415 -0
  536. package/editor-components/navigators/navbar5/navbar5.tsx +639 -0
  537. package/editor-components/navigators/navbar6/navbar6.module.scss +586 -0
  538. package/editor-components/navigators/navbar6/navbar6.tsx +1613 -0
  539. package/editor-components/navigators/navbar7/navbar7.module.scss +598 -0
  540. package/editor-components/navigators/navbar7/navbar7.tsx +1638 -0
  541. package/editor-components/navigators/navbar8/navbar8.module.scss +444 -0
  542. package/editor-components/navigators/navbar8/navbar8.tsx +637 -0
  543. package/editor-components/navigators/navbar9/navbar9.module.scss +604 -0
  544. package/editor-components/navigators/navbar9/navbar9.tsx +1610 -0
  545. package/editor-components/portfolio/portfolio1/portfolio1.module.scss +333 -0
  546. package/editor-components/portfolio/portfolio1/portfolio1.tsx +815 -0
  547. package/editor-components/portfolio/portfolio2/portfolio2.module.scss +164 -0
  548. package/editor-components/portfolio/portfolio2/portfolio2.tsx +332 -0
  549. package/editor-components/portfolio/portfolio3/portfolio3.module.scss +438 -0
  550. package/editor-components/portfolio/portfolio3/portfolio3.tsx +915 -0
  551. package/editor-components/pricing-table/pricing-table1/pricing-table1.module.scss +204 -0
  552. package/editor-components/pricing-table/pricing-table1/pricing-table1.tsx +698 -0
  553. package/editor-components/pricing-table/pricing-table2/pricing-table2.module.scss +142 -0
  554. package/editor-components/pricing-table/pricing-table2/pricing-table2.tsx +703 -0
  555. package/editor-components/pricing-table/pricing-table3/pricing-table3.module.scss +210 -0
  556. package/editor-components/pricing-table/pricing-table3/pricing-table3.tsx +430 -0
  557. package/editor-components/pricing-table/pricing-table4/pricing-table4.module.scss +170 -0
  558. package/editor-components/pricing-table/pricing-table4/pricing-table4.tsx +594 -0
  559. package/editor-components/pricing-table/pricing-table5/pricing-table5.module.scss +316 -0
  560. package/editor-components/pricing-table/pricing-table5/pricing-table5.tsx +267 -0
  561. package/editor-components/pricing-table/pricing-table6/pricing-table6.module.scss +409 -0
  562. package/editor-components/pricing-table/pricing-table6/pricing-table6.tsx +1189 -0
  563. package/editor-components/pricing-table/pricing-table7/pricing-table7.module.scss +269 -0
  564. package/editor-components/pricing-table/pricing-table7/pricing-table7.tsx +1161 -0
  565. package/editor-components/pricing-table/pricing-table8/pricing-table8.module.scss +366 -0
  566. package/editor-components/pricing-table/pricing-table8/pricing-table8.tsx +574 -0
  567. package/editor-components/pricing-table/pricing-table9/pricing-table9.module.scss +357 -0
  568. package/editor-components/pricing-table/pricing-table9/pricing-table9.tsx +857 -0
  569. package/editor-components/registerables.tsx +681 -0
  570. package/editor-components/slider/slider1/slider1.module.scss +324 -0
  571. package/editor-components/slider/slider1/slider1.tsx +254 -0
  572. package/editor-components/slider/slider10/slider10.module.scss +287 -0
  573. package/editor-components/slider/slider10/slider10.tsx +446 -0
  574. package/editor-components/slider/slider11/slider11.module.scss +216 -0
  575. package/editor-components/slider/slider11/slider11.tsx +366 -0
  576. package/editor-components/slider/slider12/slider12.module.scss +273 -0
  577. package/editor-components/slider/slider12/slider12.tsx +535 -0
  578. package/editor-components/slider/slider2/slider2.module.scss +213 -0
  579. package/editor-components/slider/slider2/slider2.tsx +331 -0
  580. package/editor-components/slider/slider3/slider3.module.scss +227 -0
  581. package/editor-components/slider/slider3/slider3.tsx +280 -0
  582. package/editor-components/slider/slider4/slider4.module.scss +221 -0
  583. package/editor-components/slider/slider4/slider4.tsx +334 -0
  584. package/editor-components/slider/slider5/slider5.module.scss +39 -0
  585. package/editor-components/slider/slider5/slider5.tsx +106 -0
  586. package/editor-components/slider/slider6/slider6.module.scss +205 -0
  587. package/editor-components/slider/slider6/slider6.tsx +337 -0
  588. package/editor-components/slider/slider7/slider7.module.scss +134 -0
  589. package/editor-components/slider/slider7/slider7.tsx +270 -0
  590. package/editor-components/slider/slider8/slider8.module.scss +580 -0
  591. package/editor-components/slider/slider8/slider8.tsx +350 -0
  592. package/editor-components/slider/slider9/slider9.module.scss +1160 -0
  593. package/editor-components/slider/slider9/slider9.tsx +556 -0
  594. package/editor-components/social/social1/social1.module.scss +229 -0
  595. package/editor-components/social/social1/social1.tsx +726 -0
  596. package/editor-components/social/social2/social2.module.scss +299 -0
  597. package/editor-components/social/social2/social2.tsx +1086 -0
  598. package/editor-components/social/social3/social3.module.scss +131 -0
  599. package/editor-components/social/social3/social3.tsx +296 -0
  600. package/editor-components/social/social4/social4.module.scss +405 -0
  601. package/editor-components/social/social4/social4.tsx +1940 -0
  602. package/editor-components/social_widget/social_widget1/social_widget1.module.scss +10 -0
  603. package/editor-components/social_widget/social_widget1/social_widget1.tsx +31 -0
  604. package/editor-components/social_widget/social_widget2/social_widget2.module.scss +10 -0
  605. package/editor-components/social_widget/social_widget2/social_widget2.tsx +35 -0
  606. package/editor-components/social_widget/social_widget3/social_widget3.module.scss +10 -0
  607. package/editor-components/social_widget/social_widget3/social_widget3.tsx +32 -0
  608. package/editor-components/social_widget/social_widget4/social_widget4.module.scss +10 -0
  609. package/editor-components/social_widget/social_widget4/social_widget4.tsx +32 -0
  610. package/editor-components/social_widget/social_widget5/social_widget5.module.scss +10 -0
  611. package/editor-components/social_widget/social_widget5/social_widget5.tsx +32 -0
  612. package/editor-components/stats/stats1/stats1.module.scss +153 -0
  613. package/editor-components/stats/stats1/stats1.tsx +279 -0
  614. package/editor-components/stats/stats10/stats10.module.scss +346 -0
  615. package/editor-components/stats/stats10/stats10.tsx +364 -0
  616. package/editor-components/stats/stats11/stats11.module.scss +167 -0
  617. package/editor-components/stats/stats11/stats11.tsx +242 -0
  618. package/editor-components/stats/stats12/stats12.module.scss +244 -0
  619. package/editor-components/stats/stats12/stats12.tsx +174 -0
  620. package/editor-components/stats/stats13/stats13.module.scss +311 -0
  621. package/editor-components/stats/stats13/stats13.tsx +432 -0
  622. package/editor-components/stats/stats14/stats14.module.scss +192 -0
  623. package/editor-components/stats/stats14/stats14.tsx +222 -0
  624. package/editor-components/stats/stats15/stats15.module.scss +174 -0
  625. package/editor-components/stats/stats15/stats15.tsx +242 -0
  626. package/editor-components/stats/stats2/stats2.module.scss +243 -0
  627. package/editor-components/stats/stats2/stats2.tsx +333 -0
  628. package/editor-components/stats/stats3/stats3.module.scss +302 -0
  629. package/editor-components/stats/stats3/stats3.tsx +212 -0
  630. package/editor-components/stats/stats4/stats4.module.scss +133 -0
  631. package/editor-components/stats/stats4/stats4.tsx +467 -0
  632. package/editor-components/stats/stats5/stats5.module.scss +104 -0
  633. package/editor-components/stats/stats5/stats5.tsx +257 -0
  634. package/editor-components/stats/stats6/stats6.module.scss +76 -0
  635. package/editor-components/stats/stats6/stats6.tsx +241 -0
  636. package/editor-components/stats/stats7/stats7.module.scss +101 -0
  637. package/editor-components/stats/stats7/stats7.tsx +184 -0
  638. package/editor-components/stats/stats8/stats8.module.scss +321 -0
  639. package/editor-components/stats/stats8/stats8.tsx +358 -0
  640. package/editor-components/stats/stats9/stats9.module.scss +282 -0
  641. package/editor-components/stats/stats9/stats9.tsx +330 -0
  642. package/editor-components/team/team-1/team1.module.scss +247 -0
  643. package/editor-components/team/team-1/team1.tsx +357 -0
  644. package/editor-components/team/team-10/team10.module.scss +307 -0
  645. package/editor-components/team/team-10/team10.tsx +510 -0
  646. package/editor-components/team/team-11/team11.module.scss +245 -0
  647. package/editor-components/team/team-11/team11.tsx +435 -0
  648. package/editor-components/team/team-12/team12.module.scss +186 -0
  649. package/editor-components/team/team-12/team12.tsx +305 -0
  650. package/editor-components/team/team-13/team13.module.scss +271 -0
  651. package/editor-components/team/team-13/team13.tsx +255 -0
  652. package/editor-components/team/team-14/team14.module.scss +203 -0
  653. package/editor-components/team/team-14/team14.tsx +202 -0
  654. package/editor-components/team/team-15/team15.module.scss +275 -0
  655. package/editor-components/team/team-15/team15.tsx +417 -0
  656. package/editor-components/team/team-16/team16.module.scss +145 -0
  657. package/editor-components/team/team-16/team16.tsx +219 -0
  658. package/editor-components/team/team-2/team2.module.scss +175 -0
  659. package/editor-components/team/team-2/team2.tsx +397 -0
  660. package/editor-components/team/team-3/team3.module.scss +251 -0
  661. package/editor-components/team/team-3/team3.tsx +380 -0
  662. package/editor-components/team/team-4/team4.module.scss +66 -0
  663. package/editor-components/team/team-4/team4.tsx +194 -0
  664. package/editor-components/team/team-5/team5.module.scss +219 -0
  665. package/editor-components/team/team-5/team5.tsx +492 -0
  666. package/editor-components/team/team-6/team6.module.scss +157 -0
  667. package/editor-components/team/team-6/team6.tsx +620 -0
  668. package/editor-components/team/team-7/team7.module.scss +211 -0
  669. package/editor-components/team/team-7/team7.tsx +333 -0
  670. package/editor-components/team/team-8/team8.module.scss +214 -0
  671. package/editor-components/team/team-8/team8.tsx +349 -0
  672. package/editor-components/team/team-9/team9.module.scss +307 -0
  673. package/editor-components/team/team-9/team9.tsx +363 -0
  674. package/editor-components/testimonials/testimonials1/testimonials1.module.scss +156 -0
  675. package/editor-components/testimonials/testimonials1/testimonials1.tsx +190 -0
  676. package/editor-components/testimonials/testimonials10/testimonials10.module.scss +281 -0
  677. package/editor-components/testimonials/testimonials10/testimonials10.tsx +360 -0
  678. package/editor-components/testimonials/testimonials11/testimonials11.module.scss +78 -0
  679. package/editor-components/testimonials/testimonials11/testimonials11.tsx +267 -0
  680. package/editor-components/testimonials/testimonials12/testimonials12.module.scss +115 -0
  681. package/editor-components/testimonials/testimonials12/testimonials12.tsx +293 -0
  682. package/editor-components/testimonials/testimonials13/testimonials13.module.scss +220 -0
  683. package/editor-components/testimonials/testimonials13/testimonials13.tsx +357 -0
  684. package/editor-components/testimonials/testimonials14/testimonials14.module.scss +216 -0
  685. package/editor-components/testimonials/testimonials14/testimonials14.tsx +364 -0
  686. package/editor-components/testimonials/testimonials15/testimonials15.module.scss +685 -0
  687. package/editor-components/testimonials/testimonials15/testimonials15.tsx +422 -0
  688. package/editor-components/testimonials/testimonials16/testimonials16.module.scss +754 -0
  689. package/editor-components/testimonials/testimonials16/testimonials16.tsx +625 -0
  690. package/editor-components/testimonials/testimonials2/testimonials2.module.scss +100 -0
  691. package/editor-components/testimonials/testimonials2/testimonials2.tsx +301 -0
  692. package/editor-components/testimonials/testimonials3/testimonials3.module.scss +37 -0
  693. package/editor-components/testimonials/testimonials3/testimonials3.tsx +148 -0
  694. package/editor-components/testimonials/testimonials4/testimonials4.module.scss +205 -0
  695. package/editor-components/testimonials/testimonials4/testimonials4.tsx +266 -0
  696. package/editor-components/testimonials/testimonials5/testimonials5.module.scss +221 -0
  697. package/editor-components/testimonials/testimonials5/testimonials5.tsx +319 -0
  698. package/editor-components/testimonials/testimonials6/testimonials6.module.scss +82 -0
  699. package/editor-components/testimonials/testimonials6/testimonials6.tsx +344 -0
  700. package/editor-components/testimonials/testimonials7/testimonials7.module.scss +316 -0
  701. package/editor-components/testimonials/testimonials7/testimonials7.tsx +248 -0
  702. package/editor-components/testimonials/testimonials8/testimonials8.module.scss +197 -0
  703. package/editor-components/testimonials/testimonials8/testimonials8.tsx +287 -0
  704. package/editor-components/testimonials/testimonials9/testimonials9.module.scss +137 -0
  705. package/editor-components/testimonials/testimonials9/testimonials9.tsx +372 -0
  706. package/index.ts +103 -0
  707. package/package.json +40 -0
  708. package/utils/css-processor.ts +131 -0
  709. package/utils/currency.ts +89 -0
@@ -0,0 +1,3070 @@
1
+ import * as React from "react";
2
+ import { BaseNavigator, TypeMediaInputValue } from "../../EditorComponent";
3
+ import styles from "./navbar10.module.scss";
4
+ import ComposerLink from "../../../../custom-hooks/composer-base-components/Link/link";
5
+
6
+ import { Base } from "composer-tools/composer-base-components/base/base";
7
+ import { INPUTS } from "composer-tools/custom-hooks/input-templates";
8
+
9
+ interface CategoryItem {
10
+ label: string;
11
+ description: string;
12
+ url: string;
13
+ icon?: TypeMediaInputValue;
14
+ image: TypeMediaInputValue;
15
+ }
16
+
17
+ interface Category {
18
+ title: string;
19
+ items: CategoryItem[];
20
+ url: string;
21
+ icon?: TypeMediaInputValue;
22
+ image: TypeMediaInputValue;
23
+ }
24
+
25
+ interface RightSection {
26
+ enabled: boolean;
27
+ image: TypeMediaInputValue;
28
+ ctaTitle: string;
29
+ ctaLink: string;
30
+ }
31
+
32
+ interface MenuItems {
33
+ title: string;
34
+ url: string;
35
+ menuType: "Normal" | "Dropdown";
36
+ rowCount?: number;
37
+ categories?: Category[];
38
+ rightCategories?: Category[];
39
+ rightSection?: RightSection;
40
+ }
41
+ interface Logo {
42
+ image: TypeMediaInputValue;
43
+ urlTo: string;
44
+ }
45
+
46
+ class Navbar10 extends BaseNavigator {
47
+ private containerRef = React.createRef<HTMLDivElement>();
48
+
49
+ constructor(props?: any) {
50
+ super(props, styles);
51
+
52
+ this.addProp(INPUTS.NAVBAR_POSITION("position", "Type"));
53
+
54
+ this.addProp({
55
+ type: "object",
56
+ key: "defaultLogo",
57
+ displayer: "Default Logo",
58
+ value: [
59
+ {
60
+ type: "media",
61
+ key: "image",
62
+ displayer: "Image",
63
+ additionalParams: {
64
+ availableTypes: ["image"],
65
+ },
66
+ value: {
67
+ type: "image",
68
+ url: "https://storage.googleapis.com/download/storage/v1/b/hq-composer-0b0f0/o/67769b510655f8002cafc965?alt=media&timestamp=1735826277716",
69
+ },
70
+ },
71
+ {
72
+ type: "page",
73
+ key: "urlTo",
74
+ value: "",
75
+ displayer: "Navigate To",
76
+ },
77
+ ],
78
+ });
79
+ this.addProp({
80
+ type: "object",
81
+ key: "absoluteLogo",
82
+ displayer: "Absolute Logo",
83
+ value: [
84
+ {
85
+ type: "media",
86
+ key: "image",
87
+ displayer: "Image",
88
+ additionalParams: {
89
+ availableTypes: ["image"],
90
+ },
91
+ value: {
92
+ type: "image",
93
+ url: "https://storage.googleapis.com/download/storage/v1/b/hq-composer-0b0f0/o/67769b510655f8002cafc964?alt=media&timestamp=1735826277716",
94
+ },
95
+ },
96
+ {
97
+ type: "page",
98
+ key: "urlTo",
99
+ value: "",
100
+ displayer: "Navigate To",
101
+ },
102
+ ],
103
+ });
104
+ this.addProp({
105
+ type: "array",
106
+ key: "menuItems",
107
+ displayer: "Menu Items",
108
+ value: [
109
+ {
110
+ type: "object",
111
+ key: "item",
112
+ displayer: "Item",
113
+ value: [
114
+ {
115
+ type: "string",
116
+ key: "title",
117
+ displayer: "Title",
118
+ value: "Platform",
119
+ },
120
+ {
121
+ type: "page",
122
+ key: "url",
123
+ displayer: "Navigate To",
124
+ value: "",
125
+ },
126
+ {
127
+ type: "select",
128
+ key: "menuType",
129
+ displayer: "Type",
130
+ value: "Dropdown",
131
+ additionalParams: { selectItems: ["Dropdown", "Normal"] },
132
+ },
133
+ {
134
+ type: "number",
135
+ key: "rowCount",
136
+ displayer: "Item Count In a Row",
137
+ value: 3,
138
+ },
139
+ {
140
+ type: "array",
141
+ key: "categories",
142
+ displayer: "Categories",
143
+ value: [
144
+ {
145
+ type: "object",
146
+ key: "category",
147
+ displayer: "Category",
148
+ value: [
149
+ {
150
+ type: "string",
151
+ key: "title",
152
+ displayer: "Title",
153
+ value: "BUILD HIGH PERFORMING SITES",
154
+ },
155
+ {
156
+ type: "page",
157
+ key: "url",
158
+ displayer: "Navigate To",
159
+ value: "",
160
+ },
161
+ {
162
+ type: "array",
163
+ key: "items",
164
+ displayer: "Items",
165
+ value: [
166
+ {
167
+ type: "object",
168
+ key: "item",
169
+ displayer: "Item",
170
+ value: [
171
+ {
172
+ type: "string",
173
+ key: "label",
174
+ displayer: "Label",
175
+ value: "Website builder",
176
+ },
177
+ {
178
+ type: "string",
179
+ key: "description",
180
+ displayer: "Description",
181
+ value: "Create beautiful websites at scale",
182
+ },
183
+ {
184
+ type: "page",
185
+ key: "url",
186
+ displayer: "Navigate To",
187
+ value: "",
188
+ },
189
+ {
190
+ type: "media",
191
+ key: "icon",
192
+ displayer: "Icon",
193
+ additionalParams: {
194
+ availableTypes: ["icon"],
195
+ },
196
+ value: {
197
+ type: "icon",
198
+ name: "",
199
+ },
200
+ },
201
+ ],
202
+ },
203
+ ],
204
+ },
205
+ {
206
+ type: "media",
207
+ key: "image",
208
+ displayer: "Image",
209
+ additionalParams: {
210
+ availableTypes: ["image"],
211
+ },
212
+ value: {
213
+ type: "image",
214
+ url: "",
215
+ },
216
+ },
217
+ {
218
+ type: "page",
219
+ key: "imageUrl",
220
+ displayer: "Navigate To",
221
+ value: "",
222
+ },
223
+ {
224
+ type: "page",
225
+ key: "imageUrl",
226
+ displayer: "Navigate To",
227
+ value: "",
228
+ },
229
+ ],
230
+ },
231
+ {
232
+ type: "object",
233
+ key: "category",
234
+ displayer: "Category",
235
+ value: [
236
+ {
237
+ type: "string",
238
+ key: "title",
239
+ displayer: "Title",
240
+ value: "ACCLERATE YOUR GROWTH",
241
+ },
242
+ {
243
+ type: "page",
244
+ key: "url",
245
+ displayer: "Navigate To",
246
+ value: "",
247
+ },
248
+ {
249
+ type: "array",
250
+ key: "items",
251
+ displayer: "Items",
252
+ value: [
253
+ {
254
+ type: "object",
255
+ key: "item",
256
+ displayer: "Item",
257
+ value: [
258
+ {
259
+ type: "string",
260
+ key: "label",
261
+ displayer: "Label",
262
+ value: "White label platform",
263
+ },
264
+ {
265
+ type: "string",
266
+ key: "description",
267
+ displayer: "Description",
268
+ value: "Fully own your customer experience",
269
+ },
270
+ {
271
+ type: "page",
272
+ key: "url",
273
+ displayer: "Navigate To",
274
+ value: "",
275
+ },
276
+ {
277
+ type: "media",
278
+ key: "icon",
279
+ displayer: "Icon",
280
+ additionalParams: {
281
+ availableTypes: ["icon"],
282
+ },
283
+ value: {
284
+ type: "icon",
285
+ name: "",
286
+ },
287
+ },
288
+ ],
289
+ },
290
+ {
291
+ type: "object",
292
+ key: "item",
293
+ displayer: "Item",
294
+ value: [
295
+ {
296
+ type: "string",
297
+ key: "label",
298
+ displayer: "Label",
299
+ value: "Client management",
300
+ },
301
+ {
302
+ type: "page",
303
+ key: "url",
304
+ displayer: "Navigate To",
305
+ value: "",
306
+ },
307
+ {
308
+ type: "string",
309
+ key: "description",
310
+ displayer: "Description",
311
+ value: "Manage all of your projects in one place",
312
+ },
313
+ {
314
+ type: "media",
315
+ key: "icon",
316
+ displayer: "Icon",
317
+ additionalParams: {
318
+ availableTypes: ["icon"],
319
+ },
320
+ value: {
321
+ type: "icon",
322
+ name: "",
323
+ },
324
+ },
325
+ ],
326
+ },
327
+ {
328
+ type: "object",
329
+ key: "item",
330
+ displayer: "Item",
331
+ value: [
332
+ {
333
+ type: "string",
334
+ key: "label",
335
+ displayer: "Label",
336
+ value: "Team Collaboration",
337
+ },
338
+ {
339
+ type: "page",
340
+ key: "url",
341
+ displayer: "Navigate To",
342
+ value: "",
343
+ },
344
+ {
345
+ type: "string",
346
+ key: "description",
347
+ displayer: "Description",
348
+ value: "Manage all of your projects in one place",
349
+ },
350
+ {
351
+ type: "media",
352
+ key: "icon",
353
+ displayer: "Icon",
354
+ additionalParams: {
355
+ availableTypes: ["icon"],
356
+ },
357
+ value: {
358
+ type: "icon",
359
+ name: "",
360
+ },
361
+ },
362
+ ],
363
+ },
364
+ {
365
+ type: "object",
366
+ key: "item",
367
+ displayer: "Item",
368
+ value: [
369
+ {
370
+ type: "string",
371
+ key: "label",
372
+ displayer: "Label",
373
+ value: "Client billing",
374
+ },
375
+ {
376
+ type: "page",
377
+ key: "url",
378
+ displayer: "Navigate To",
379
+ value: "",
380
+ },
381
+ {
382
+ type: "string",
383
+ key: "description",
384
+ displayer: "Description",
385
+ value: "Manage client payments hassle-free",
386
+ },
387
+ {
388
+ type: "media",
389
+ key: "icon",
390
+ displayer: "Icon",
391
+ additionalParams: {
392
+ availableTypes: ["icon"],
393
+ },
394
+ value: {
395
+ type: "icon",
396
+ name: "",
397
+ },
398
+ },
399
+ ],
400
+ },
401
+ {
402
+ type: "object",
403
+ key: "item",
404
+ displayer: "Item",
405
+ value: [
406
+ {
407
+ type: "string",
408
+ key: "label",
409
+ displayer: "Label",
410
+ value: "Automation",
411
+ },
412
+ {
413
+ type: "page",
414
+ key: "url",
415
+ displayer: "Navigate To",
416
+ value: "",
417
+ },
418
+ {
419
+ type: "string",
420
+ key: "description",
421
+ displayer: "Description",
422
+ value: "Unlock efficiency with smart automations",
423
+ },
424
+ {
425
+ type: "media",
426
+ key: "icon",
427
+ displayer: "Icon",
428
+ additionalParams: {
429
+ availableTypes: ["icon"],
430
+ },
431
+ value: {
432
+ type: "icon",
433
+ name: "",
434
+ },
435
+ },
436
+ ],
437
+ },
438
+ ],
439
+ },
440
+ ],
441
+ },
442
+ {
443
+ type: "object",
444
+ key: "category",
445
+ displayer: "Category",
446
+ value: [
447
+ {
448
+ type: "string",
449
+ key: "title",
450
+ displayer: "Title",
451
+ value: "EXPAND YOUR BUSINESS",
452
+ },
453
+ {
454
+ type: "page",
455
+ key: "url",
456
+ displayer: "Navigate To",
457
+ value: "",
458
+ },
459
+ {
460
+ type: "array",
461
+ key: "items",
462
+ displayer: "Items",
463
+ value: [
464
+ {
465
+ type: "object",
466
+ key: "item",
467
+ displayer: "Item",
468
+ value: [
469
+ {
470
+ type: "string",
471
+ key: "label",
472
+ displayer: "Label",
473
+ value: "App Store",
474
+ },
475
+ {
476
+ type: "string",
477
+ key: "description",
478
+ displayer: "Description",
479
+ value: "Drive recurring revenue with apps",
480
+ },
481
+ {
482
+ type: "page",
483
+ key: "url",
484
+ displayer: "Navigate To",
485
+ value: "",
486
+ },
487
+ {
488
+ type: "media",
489
+ key: "icon",
490
+ displayer: "Icon",
491
+ additionalParams: {
492
+ availableTypes: ["icon"],
493
+ },
494
+ value: {
495
+ type: "icon",
496
+ name: "",
497
+ },
498
+ },
499
+ ],
500
+ },
501
+ {
502
+ type: "object",
503
+ key: "item",
504
+ displayer: "Item",
505
+ value: [
506
+ {
507
+ type: "string",
508
+ key: "label",
509
+ displayer: "Label",
510
+ value: "The Simple Editor(DIY)",
511
+ },
512
+ {
513
+ type: "page",
514
+ key: "url",
515
+ displayer: "Navigate To",
516
+ value: "",
517
+ },
518
+ {
519
+ type: "string",
520
+ key: "description",
521
+ displayer: "Description",
522
+ value: "Simple interface for non-technical users",
523
+ },
524
+ {
525
+ type: "media",
526
+ key: "icon",
527
+ displayer: "Icon",
528
+ additionalParams: {
529
+ availableTypes: ["icon"],
530
+ },
531
+ value: {
532
+ type: "icon",
533
+ name: "",
534
+ },
535
+ },
536
+ ],
537
+ },
538
+ ],
539
+ },
540
+ {
541
+ type: "media",
542
+ key: "image",
543
+ displayer: "Image",
544
+ additionalParams: {
545
+ availableTypes: ["image"],
546
+ },
547
+ value: {
548
+ type: "image",
549
+ url: "",
550
+ },
551
+ },
552
+ {
553
+ type: "page",
554
+ key: "imageUrl",
555
+ displayer: "Navigate To",
556
+ value: "",
557
+ },
558
+ ],
559
+ },
560
+ {
561
+ type: "object",
562
+ key: "category",
563
+ displayer: "Category",
564
+ value: [
565
+ {
566
+ type: "string",
567
+ key: "title",
568
+ displayer: "Title",
569
+ value: "ALL ESSENTIALS INCLUDED",
570
+ },
571
+ {
572
+ type: "page",
573
+ key: "url",
574
+ displayer: "Navigate To",
575
+ value: "",
576
+ },
577
+ {
578
+ type: "array",
579
+ key: "items",
580
+ displayer: "Items",
581
+ value: [
582
+ {
583
+ type: "object",
584
+ key: "item",
585
+ displayer: "Item",
586
+ value: [
587
+ {
588
+ type: "string",
589
+ key: "label",
590
+ displayer: "Label",
591
+ value: "AI Assistant",
592
+ },
593
+ {
594
+ type: "string",
595
+ key: "description",
596
+ displayer: "Description",
597
+ value:
598
+ "Boost your efficiency with built-in AI tools",
599
+ },
600
+ {
601
+ type: "page",
602
+ key: "url",
603
+ displayer: "Navigate To",
604
+ value: "",
605
+ },
606
+ {
607
+ type: "media",
608
+ key: "icon",
609
+ displayer: "Icon",
610
+ additionalParams: {
611
+ availableTypes: ["icon"],
612
+ },
613
+ value: {
614
+ type: "icon",
615
+ name: "",
616
+ },
617
+ },
618
+ ],
619
+ },
620
+ {
621
+ type: "object",
622
+ key: "item",
623
+ displayer: "Item",
624
+ value: [
625
+ {
626
+ type: "string",
627
+ key: "label",
628
+ displayer: "Label",
629
+ value: "SEO",
630
+ },
631
+ {
632
+ type: "string",
633
+ key: "description",
634
+ displayer: "Description",
635
+ value: "Build sites that rank higher",
636
+ },
637
+ {
638
+ type: "page",
639
+ key: "url",
640
+ displayer: "Navigate To",
641
+ value: "",
642
+ },
643
+ {
644
+ type: "media",
645
+ key: "icon",
646
+ displayer: "Icon",
647
+ additionalParams: {
648
+ availableTypes: ["icon"],
649
+ },
650
+ value: {
651
+ type: "icon",
652
+ name: "",
653
+ },
654
+ },
655
+ ],
656
+ },
657
+ {
658
+ type: "object",
659
+ key: "item",
660
+ displayer: "Item",
661
+ value: [
662
+ {
663
+ type: "string",
664
+ key: "label",
665
+ displayer: "Label",
666
+ value: "eCommerce",
667
+ },
668
+ {
669
+ type: "page",
670
+ key: "url",
671
+ displayer: "Navigate To",
672
+ value: "",
673
+ },
674
+ {
675
+ type: "string",
676
+ key: "description",
677
+ displayer: "Description",
678
+ value: "Sell products online and offline",
679
+ },
680
+
681
+ {
682
+ type: "media",
683
+ key: "icon",
684
+ displayer: "Icon",
685
+ additionalParams: {
686
+ availableTypes: ["icon"],
687
+ },
688
+ value: {
689
+ type: "icon",
690
+ name: "",
691
+ },
692
+ },
693
+ ],
694
+ },
695
+ {
696
+ type: "object",
697
+ key: "item",
698
+ displayer: "Item",
699
+ value: [
700
+ {
701
+ type: "string",
702
+ key: "label",
703
+ displayer: "Label",
704
+ value: "Transactional sites",
705
+ },
706
+ {
707
+ type: "string",
708
+ key: "description",
709
+ displayer: "Description",
710
+ value: "Sell services, subscriptions, and more",
711
+ },
712
+ {
713
+ type: "page",
714
+ key: "url",
715
+ displayer: "Navigate To",
716
+ value: "",
717
+ },
718
+ {
719
+ type: "media",
720
+ key: "icon",
721
+ displayer: "Icon",
722
+ additionalParams: {
723
+ availableTypes: ["icon"],
724
+ },
725
+ value: {
726
+ type: "icon",
727
+ name: "",
728
+ },
729
+ },
730
+ ],
731
+ },
732
+ ],
733
+ },
734
+ {
735
+ type: "media",
736
+ key: "image",
737
+ displayer: "Image",
738
+ additionalParams: {
739
+ availableTypes: ["image"],
740
+ },
741
+ value: {
742
+ type: "image",
743
+ url: "",
744
+ },
745
+ },
746
+ {
747
+ type: "page",
748
+ key: "imageUrl",
749
+ displayer: "Navigate To",
750
+ value: "",
751
+ },
752
+ ],
753
+ },
754
+ ],
755
+ },
756
+ {
757
+ type: "array",
758
+ key: "rightCategories",
759
+ displayer: "Right Categories",
760
+ value: [
761
+ {
762
+ type: "object",
763
+ key: "category",
764
+ displayer: "Category",
765
+ value: [
766
+ {
767
+ type: "string",
768
+ key: "title",
769
+ displayer: "Title",
770
+ value: "MORE FROM DUDA",
771
+ },
772
+ {
773
+ type: "page",
774
+ key: "url",
775
+ displayer: "Navigate To",
776
+ value: "",
777
+ },
778
+ {
779
+ type: "array",
780
+ key: "items",
781
+ displayer: "Items",
782
+ value: [
783
+ {
784
+ type: "object",
785
+ key: "item",
786
+ displayer: "Item",
787
+ value: [
788
+ {
789
+ type: "string",
790
+ key: "label",
791
+ displayer: "Label",
792
+ value: "Templates",
793
+ },
794
+ {
795
+ type: "page",
796
+ key: "url",
797
+ displayer: "Navigate To",
798
+ value: "",
799
+ },
800
+ {
801
+ type: "media",
802
+ key: "icon",
803
+ displayer: "Icon",
804
+ additionalParams: {
805
+ availableTypes: ["icon"],
806
+ },
807
+ value: {
808
+ type: "icon",
809
+ name: "FiArrowUpRight",
810
+ },
811
+ },
812
+ ],
813
+ },
814
+ {
815
+ type: "object",
816
+ key: "item",
817
+ displayer: "Item",
818
+ value: [
819
+ {
820
+ type: "string",
821
+ key: "label",
822
+ displayer: "Label",
823
+ value: "Made with Duda",
824
+ },
825
+ {
826
+ type: "page",
827
+ key: "url",
828
+ displayer: "Navigate To",
829
+ value: "",
830
+ },
831
+ {
832
+ type: "media",
833
+ key: "icon",
834
+ displayer: "Icon",
835
+ additionalParams: {
836
+ availableTypes: ["icon"],
837
+ },
838
+ value: {
839
+ type: "icon",
840
+ name: "FiArrowUpRight",
841
+ },
842
+ },
843
+ ],
844
+ },
845
+ {
846
+ type: "object",
847
+ key: "item",
848
+ displayer: "Item",
849
+ value: [
850
+ {
851
+ type: "string",
852
+ key: "label",
853
+ displayer: "Label",
854
+ value: "Accessibility",
855
+ },
856
+ {
857
+ type: "page",
858
+ key: "url",
859
+ displayer: "Navigate To",
860
+ value: "",
861
+ },
862
+ {
863
+ type: "media",
864
+ key: "icon",
865
+ displayer: "Icon",
866
+ additionalParams: {
867
+ availableTypes: ["icon"],
868
+ },
869
+ value: {
870
+ type: "icon",
871
+ name: "FiArrowUpRight",
872
+ },
873
+ },
874
+ ],
875
+ },
876
+ ],
877
+ },
878
+ {
879
+ type: "media",
880
+ key: "image",
881
+ displayer: "Image",
882
+ additionalParams: {
883
+ availableTypes: ["image"],
884
+ },
885
+ value: {
886
+ type: "image",
887
+ url: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/68906a03d3784c002c811913?alt=media&timestamp=1754294795993",
888
+ },
889
+ },
890
+ {
891
+ type: "page",
892
+ key: "imageUrl",
893
+ displayer: "Navigate To",
894
+ value: "",
895
+ },
896
+ ],
897
+ },
898
+ ],
899
+ },
900
+ ],
901
+ },
902
+ {
903
+ type: "object",
904
+ key: "item",
905
+ displayer: "Item",
906
+ value: [
907
+ {
908
+ type: "string",
909
+ key: "title",
910
+ displayer: "Title",
911
+ value: "Solutions",
912
+ },
913
+ {
914
+ type: "page",
915
+ key: "url",
916
+ displayer: "Navigate To",
917
+ value: "",
918
+ },
919
+ {
920
+ type: "select",
921
+ key: "menuType",
922
+ displayer: "Type",
923
+ value: "Dropdown",
924
+ additionalParams: { selectItems: ["Dropdown", "Normal"] },
925
+ },
926
+ {
927
+ type: "number",
928
+ key: "rowCount",
929
+ displayer: "Item Count In a Row",
930
+ value: 2,
931
+ },
932
+ {
933
+ type: "array",
934
+ key: "categories",
935
+ displayer: "Categories",
936
+ value: [
937
+ {
938
+ type: "object",
939
+ key: "category",
940
+ displayer: "Category",
941
+ value: [
942
+ {
943
+ type: "string",
944
+ key: "title",
945
+ displayer: "Title",
946
+ value: "DUDA FOR",
947
+ },
948
+ {
949
+ type: "page",
950
+ key: "url",
951
+ displayer: "Navigate To",
952
+ value: "",
953
+ },
954
+ {
955
+ type: "array",
956
+ key: "items",
957
+ displayer: "Items",
958
+ value: [
959
+ {
960
+ type: "object",
961
+ key: "item",
962
+ displayer: "Item",
963
+ value: [
964
+ {
965
+ type: "string",
966
+ key: "label",
967
+ displayer: "Label",
968
+ value: "Agencies",
969
+ },
970
+ {
971
+ type: "page",
972
+ key: "url",
973
+ displayer: "Navigate To",
974
+ value: "",
975
+ },
976
+ {
977
+ type: "string",
978
+ key: "description",
979
+ displayer: "Description",
980
+ value:
981
+ "See why Duda is the top website builder for agency growth",
982
+ },
983
+ {
984
+ type: "media",
985
+ key: "icon",
986
+ displayer: "Icon",
987
+ additionalParams: {
988
+ availableTypes: ["icon"],
989
+ },
990
+ value: {
991
+ type: "icon",
992
+ name: "",
993
+ },
994
+ },
995
+ ],
996
+ },
997
+ {
998
+ type: "object",
999
+ key: "item",
1000
+ displayer: "Item",
1001
+ value: [
1002
+ {
1003
+ type: "string",
1004
+ key: "label",
1005
+ displayer: "Label",
1006
+ value: "SaaS",
1007
+ },
1008
+ {
1009
+ type: "page",
1010
+ key: "url",
1011
+ displayer: "Navigate To",
1012
+ value: "",
1013
+ },
1014
+ {
1015
+ type: "string",
1016
+ key: "description",
1017
+ displayer: "Description",
1018
+ value:
1019
+ "Add a seamless-integrated website builder to your SaaS offering",
1020
+ },
1021
+ {
1022
+ type: "media",
1023
+ key: "icon",
1024
+ displayer: "Icon",
1025
+ additionalParams: {
1026
+ availableTypes: ["icon"],
1027
+ },
1028
+ value: {
1029
+ type: "icon",
1030
+ name: "",
1031
+ },
1032
+ },
1033
+ ],
1034
+ },
1035
+ ],
1036
+ },
1037
+ {
1038
+ type: "media",
1039
+ key: "image",
1040
+ displayer: "Image",
1041
+ additionalParams: {
1042
+ availableTypes: ["image"],
1043
+ },
1044
+ value: {
1045
+ type: "image",
1046
+ url: "",
1047
+ },
1048
+ },
1049
+ ],
1050
+ },
1051
+ {
1052
+ type: "object",
1053
+ key: "category",
1054
+ displayer: "Category",
1055
+ value: [
1056
+ {
1057
+ type: "string",
1058
+ key: "title",
1059
+ displayer: "Title",
1060
+ value: "",
1061
+ },
1062
+ {
1063
+ type: "page",
1064
+ key: "url",
1065
+ displayer: "Navigate To",
1066
+ value: "",
1067
+ },
1068
+ {
1069
+ type: "array",
1070
+ key: "items",
1071
+ displayer: "Items",
1072
+ value: [
1073
+ {
1074
+ type: "object",
1075
+ key: "item",
1076
+ displayer: "Item",
1077
+ value: [
1078
+ {
1079
+ type: "string",
1080
+ key: "label",
1081
+ displayer: "Label",
1082
+ value: "Hosts",
1083
+ },
1084
+ {
1085
+ type: "page",
1086
+ key: "url",
1087
+ displayer: "Navigate To",
1088
+ value: "",
1089
+ },
1090
+ {
1091
+ type: "string",
1092
+ key: "description",
1093
+ displayer: "Description",
1094
+ value:
1095
+ "Provide high-end website solutions integrated with your services",
1096
+ },
1097
+ {
1098
+ type: "media",
1099
+ key: "icon",
1100
+ displayer: "Icon",
1101
+ additionalParams: {
1102
+ availableTypes: ["icon"],
1103
+ },
1104
+ value: {
1105
+ type: "icon",
1106
+ name: "",
1107
+ },
1108
+ },
1109
+ ],
1110
+ },
1111
+ ],
1112
+ },
1113
+ {
1114
+ type: "media",
1115
+ key: "image",
1116
+ displayer: "Image",
1117
+ additionalParams: {
1118
+ availableTypes: ["image"],
1119
+ },
1120
+ value: {
1121
+ type: "image",
1122
+ url: "",
1123
+ },
1124
+ },
1125
+ {
1126
+ type: "page",
1127
+ key: "imageUrl",
1128
+ displayer: "Navigate To",
1129
+ value: "",
1130
+ },
1131
+ ],
1132
+ },
1133
+ ],
1134
+ },
1135
+ {
1136
+ type: "array",
1137
+ key: "rightCategories",
1138
+ displayer: "Right Categories",
1139
+ value: [
1140
+ {
1141
+ type: "object",
1142
+ key: "category",
1143
+ displayer: "Category",
1144
+ value: [
1145
+ {
1146
+ type: "string",
1147
+ key: "title",
1148
+ displayer: "Title",
1149
+ value: "INDUSTRY CASE STUDIES",
1150
+ },
1151
+ {
1152
+ type: "page",
1153
+ key: "url",
1154
+ displayer: "Navigate To",
1155
+ value: "",
1156
+ },
1157
+ {
1158
+ type: "array",
1159
+ key: "items",
1160
+ displayer: "Items",
1161
+ value: [
1162
+ {
1163
+ type: "object",
1164
+ key: "item",
1165
+ displayer: "Item",
1166
+ value: [
1167
+ {
1168
+ type: "string",
1169
+ key: "label",
1170
+ displayer: "Label",
1171
+ value: "Real Estate",
1172
+ },
1173
+ {
1174
+ type: "page",
1175
+ key: "url",
1176
+ displayer: "Navigate To",
1177
+ value: "",
1178
+ },
1179
+ {
1180
+ type: "media",
1181
+ key: "icon",
1182
+ displayer: "Icon",
1183
+ additionalParams: {
1184
+ availableTypes: ["icon"],
1185
+ },
1186
+ value: {
1187
+ type: "icon",
1188
+ name: "FiArrowUpRight",
1189
+ },
1190
+ },
1191
+ ],
1192
+ },
1193
+ {
1194
+ type: "object",
1195
+ key: "item",
1196
+ displayer: "Item",
1197
+ value: [
1198
+ {
1199
+ type: "string",
1200
+ key: "label",
1201
+ displayer: "Label",
1202
+ value: "Travel & Hospitality",
1203
+ },
1204
+ {
1205
+ type: "page",
1206
+ key: "url",
1207
+ displayer: "Navigate To",
1208
+ value: "",
1209
+ },
1210
+ {
1211
+ type: "media",
1212
+ key: "icon",
1213
+ displayer: "Icon",
1214
+ additionalParams: {
1215
+ availableTypes: ["icon"],
1216
+ },
1217
+ value: {
1218
+ type: "icon",
1219
+ name: "FiArrowUpRight",
1220
+ },
1221
+ },
1222
+ ],
1223
+ },
1224
+ {
1225
+ type: "object",
1226
+ key: "item",
1227
+ displayer: "Item",
1228
+ value: [
1229
+ {
1230
+ type: "string",
1231
+ key: "label",
1232
+ displayer: "Label",
1233
+ value: "Transportation",
1234
+ },
1235
+ {
1236
+ type: "page",
1237
+ key: "url",
1238
+ displayer: "Navigate To",
1239
+ value: "",
1240
+ },
1241
+ {
1242
+ type: "media",
1243
+ key: "icon",
1244
+ displayer: "Icon",
1245
+ additionalParams: {
1246
+ availableTypes: ["icon"],
1247
+ },
1248
+ value: {
1249
+ type: "icon",
1250
+ name: "FiArrowUpRight",
1251
+ },
1252
+ },
1253
+ ],
1254
+ },
1255
+ {
1256
+ type: "object",
1257
+ key: "item",
1258
+ displayer: "Item",
1259
+ value: [
1260
+ {
1261
+ type: "string",
1262
+ key: "label",
1263
+ displayer: "Label",
1264
+ value: "View all success stories",
1265
+ },
1266
+ {
1267
+ type: "page",
1268
+ key: "url",
1269
+ displayer: "Navigate To",
1270
+ value: "",
1271
+ },
1272
+ {
1273
+ type: "media",
1274
+ key: "icon",
1275
+ displayer: "Icon",
1276
+ additionalParams: {
1277
+ availableTypes: ["icon"],
1278
+ },
1279
+ value: {
1280
+ type: "icon",
1281
+ name: "FiArrowUpRight",
1282
+ },
1283
+ },
1284
+ ],
1285
+ },
1286
+ ],
1287
+ },
1288
+ {
1289
+ type: "media",
1290
+ key: "image",
1291
+ displayer: "Image",
1292
+ additionalParams: {
1293
+ availableTypes: ["image"],
1294
+ },
1295
+ value: {
1296
+ type: "image",
1297
+ url: "",
1298
+ },
1299
+ },
1300
+ ],
1301
+ },
1302
+ ],
1303
+ },
1304
+ ],
1305
+ },
1306
+ {
1307
+ type: "object",
1308
+ key: "item",
1309
+ displayer: "Item",
1310
+ value: [
1311
+ {
1312
+ type: "string",
1313
+ key: "title",
1314
+ displayer: "Title",
1315
+ value: "Resources",
1316
+ },
1317
+ {
1318
+ type: "page",
1319
+ key: "url",
1320
+ displayer: "Navigate To",
1321
+ value: "",
1322
+ },
1323
+ {
1324
+ type: "select",
1325
+ key: "menuType",
1326
+ displayer: "Type",
1327
+ value: "Dropdown",
1328
+ additionalParams: { selectItems: ["Dropdown", "Normal"] },
1329
+ },
1330
+ {
1331
+ type: "number",
1332
+ key: "rowCount",
1333
+ displayer: "Item Count In a Row",
1334
+ value: 3,
1335
+ },
1336
+ {
1337
+ type: "array",
1338
+ key: "categories",
1339
+ displayer: "Categories",
1340
+ value: [
1341
+ {
1342
+ type: "object",
1343
+ key: "category",
1344
+ displayer: "Category",
1345
+ value: [
1346
+ {
1347
+ type: "string",
1348
+ key: "title",
1349
+ displayer: "Title",
1350
+ value: "BUILD",
1351
+ },
1352
+ {
1353
+ type: "page",
1354
+ key: "url",
1355
+ displayer: "Navigate To",
1356
+ value: "",
1357
+ },
1358
+ {
1359
+ type: "array",
1360
+ key: "items",
1361
+ displayer: "Items",
1362
+ value: [
1363
+ {
1364
+ type: "object",
1365
+ key: "item",
1366
+ displayer: "Item",
1367
+ value: [
1368
+ {
1369
+ type: "string",
1370
+ key: "label",
1371
+ displayer: "Label",
1372
+ value: "Templates",
1373
+ },
1374
+ {
1375
+ type: "page",
1376
+ key: "url",
1377
+ displayer: "Navigate To",
1378
+ value: "",
1379
+ },
1380
+ {
1381
+ type: "string",
1382
+ key: "description",
1383
+ displayer: "Description",
1384
+ value: "Get started with beautiful templates",
1385
+ },
1386
+ {
1387
+ type: "media",
1388
+ key: "icon",
1389
+ displayer: "Icon",
1390
+ additionalParams: {
1391
+ availableTypes: ["icon"],
1392
+ },
1393
+ value: {
1394
+ type: "icon",
1395
+ name: "",
1396
+ },
1397
+ },
1398
+ ],
1399
+ },
1400
+ {
1401
+ type: "object",
1402
+ key: "item",
1403
+ displayer: "Item",
1404
+ value: [
1405
+ {
1406
+ type: "string",
1407
+ key: "label",
1408
+ displayer: "Label",
1409
+ value: "Developer portal",
1410
+ },
1411
+ {
1412
+ type: "page",
1413
+ key: "url",
1414
+ displayer: "Navigate To",
1415
+ value: "",
1416
+ },
1417
+ {
1418
+ type: "string",
1419
+ key: "description",
1420
+ displayer: "Description",
1421
+ value: "API, extensions, and developer tools",
1422
+ },
1423
+ {
1424
+ type: "media",
1425
+ key: "icon",
1426
+ displayer: "Icon",
1427
+ additionalParams: {
1428
+ availableTypes: ["icon"],
1429
+ },
1430
+ value: {
1431
+ type: "icon",
1432
+ name: "",
1433
+ },
1434
+ },
1435
+ ],
1436
+ },
1437
+ {
1438
+ type: "object",
1439
+ key: "item",
1440
+ displayer: "Item",
1441
+ value: [
1442
+ {
1443
+ type: "string",
1444
+ key: "label",
1445
+ displayer: "Label",
1446
+ value: "Hire an expert",
1447
+ },
1448
+ {
1449
+ type: "page",
1450
+ key: "url",
1451
+ displayer: "Navigate To",
1452
+ value: "",
1453
+ },
1454
+ {
1455
+ type: "string",
1456
+ key: "description",
1457
+ displayer: "Description",
1458
+ value: "Get expert help for your next project",
1459
+ },
1460
+ {
1461
+ type: "media",
1462
+ key: "icon",
1463
+ displayer: "Icon",
1464
+ additionalParams: {
1465
+ availableTypes: ["icon"],
1466
+ },
1467
+ value: {
1468
+ type: "icon",
1469
+ name: "",
1470
+ },
1471
+ },
1472
+ ],
1473
+ },
1474
+ ],
1475
+ },
1476
+ ],
1477
+ },
1478
+ {
1479
+ type: "object",
1480
+ key: "category",
1481
+ displayer: "Category",
1482
+ value: [
1483
+ {
1484
+ type: "string",
1485
+ key: "title",
1486
+ displayer: "Title",
1487
+ value: "CONNECT",
1488
+ },
1489
+ {
1490
+ type: "page",
1491
+ key: "url",
1492
+ displayer: "Navigate To",
1493
+ value: "",
1494
+ },
1495
+ {
1496
+ type: "array",
1497
+ key: "items",
1498
+ displayer: "Items",
1499
+ value: [
1500
+ {
1501
+ type: "object",
1502
+ key: "item",
1503
+ displayer: "Item",
1504
+ value: [
1505
+ {
1506
+ type: "string",
1507
+ key: "label",
1508
+ displayer: "Label",
1509
+ value: "Webinars & events",
1510
+ },
1511
+ {
1512
+ type: "page",
1513
+ key: "url",
1514
+ displayer: "Navigate To",
1515
+ value: "",
1516
+ },
1517
+ {
1518
+ type: "string",
1519
+ key: "description",
1520
+ displayer: "Description",
1521
+ value: "Learn from experts, online or in-person",
1522
+ },
1523
+ {
1524
+ type: "media",
1525
+ key: "icon",
1526
+ displayer: "Icon",
1527
+ additionalParams: {
1528
+ availableTypes: ["icon"],
1529
+ },
1530
+ value: {
1531
+ type: "icon",
1532
+ name: "",
1533
+ },
1534
+ },
1535
+ ],
1536
+ },
1537
+ {
1538
+ type: "object",
1539
+ key: "item",
1540
+ displayer: "Item",
1541
+ value: [
1542
+ {
1543
+ type: "string",
1544
+ key: "label",
1545
+ displayer: "Label",
1546
+ value: "Community",
1547
+ },
1548
+ {
1549
+ type: "page",
1550
+ key: "url",
1551
+ displayer: "Navigate To",
1552
+ value: "",
1553
+ },
1554
+ {
1555
+ type: "string",
1556
+ key: "description",
1557
+ displayer: "Description",
1558
+ value: "Collaborate with other Duda users",
1559
+ },
1560
+ {
1561
+ type: "media",
1562
+ key: "icon",
1563
+ displayer: "Icon",
1564
+ additionalParams: {
1565
+ availableTypes: ["icon"],
1566
+ },
1567
+ value: {
1568
+ type: "icon",
1569
+ name: "",
1570
+ },
1571
+ },
1572
+ ],
1573
+ },
1574
+ ],
1575
+ },
1576
+ ],
1577
+ },
1578
+ {
1579
+ type: "object",
1580
+ key: "category",
1581
+ displayer: "Category",
1582
+ value: [
1583
+ {
1584
+ type: "string",
1585
+ key: "title",
1586
+ displayer: "Title",
1587
+ value: "LEARN",
1588
+ },
1589
+ {
1590
+ type: "page",
1591
+ key: "url",
1592
+ displayer: "Navigate To",
1593
+ value: "",
1594
+ },
1595
+ {
1596
+ type: "array",
1597
+ key: "items",
1598
+ displayer: "Items",
1599
+ value: [
1600
+ {
1601
+ type: "object",
1602
+ key: "item",
1603
+ displayer: "Item",
1604
+ value: [
1605
+ {
1606
+ type: "string",
1607
+ key: "label",
1608
+ displayer: "Label",
1609
+ value: "Blog",
1610
+ },
1611
+ {
1612
+ type: "page",
1613
+ key: "url",
1614
+ displayer: "Navigate To",
1615
+ value: "",
1616
+ },
1617
+ {
1618
+ type: "string",
1619
+ key: "description",
1620
+ displayer: "Description",
1621
+ value: "Get insights to fuel your business",
1622
+ },
1623
+ {
1624
+ type: "media",
1625
+ key: "icon",
1626
+ displayer: "Icon",
1627
+ additionalParams: {
1628
+ availableTypes: ["icon"],
1629
+ },
1630
+ value: {
1631
+ type: "icon",
1632
+ name: "",
1633
+ },
1634
+ },
1635
+ ],
1636
+ },
1637
+ {
1638
+ type: "object",
1639
+ key: "item",
1640
+ displayer: "Item",
1641
+ value: [
1642
+ {
1643
+ type: "string",
1644
+ key: "label",
1645
+ displayer: "Label",
1646
+ value: "Product Updates",
1647
+ },
1648
+ {
1649
+ type: "page",
1650
+ key: "url",
1651
+ displayer: "Navigate To",
1652
+ value: "",
1653
+ },
1654
+ {
1655
+ type: "string",
1656
+ key: "description",
1657
+ displayer: "Description",
1658
+ value: "Discover Duda's latest releases",
1659
+ },
1660
+ {
1661
+ type: "media",
1662
+ key: "icon",
1663
+ displayer: "Icon",
1664
+ additionalParams: {
1665
+ availableTypes: ["icon"],
1666
+ },
1667
+ value: {
1668
+ type: "icon",
1669
+ name: "",
1670
+ },
1671
+ },
1672
+ ],
1673
+ },
1674
+ {
1675
+ type: "object",
1676
+ key: "item",
1677
+ displayer: "Item",
1678
+ value: [
1679
+ {
1680
+ type: "string",
1681
+ key: "label",
1682
+ displayer: "Label",
1683
+ value: "Duda University",
1684
+ },
1685
+ {
1686
+ type: "page",
1687
+ key: "url",
1688
+ displayer: "Navigate To",
1689
+ value: "",
1690
+ },
1691
+ {
1692
+ type: "string",
1693
+ key: "description",
1694
+ displayer: "Description",
1695
+ value: "Take your skills to the next level",
1696
+ },
1697
+ {
1698
+ type: "media",
1699
+ key: "icon",
1700
+ displayer: "Icon",
1701
+ additionalParams: {
1702
+ availableTypes: ["icon"],
1703
+ },
1704
+ value: {
1705
+ type: "icon",
1706
+ name: "",
1707
+ },
1708
+ },
1709
+ ],
1710
+ },
1711
+ {
1712
+ type: "object",
1713
+ key: "item",
1714
+ displayer: "Item",
1715
+ value: [
1716
+ {
1717
+ type: "string",
1718
+ key: "label",
1719
+ displayer: "Label",
1720
+ value: "Success Stories",
1721
+ },
1722
+ {
1723
+ type: "page",
1724
+ key: "url",
1725
+ displayer: "Navigate To",
1726
+ value: "",
1727
+ },
1728
+ {
1729
+ type: "string",
1730
+ key: "description",
1731
+ displayer: "Description",
1732
+ value: "Get inspired by real wins",
1733
+ },
1734
+ {
1735
+ type: "media",
1736
+ key: "icon",
1737
+ displayer: "Icon",
1738
+ additionalParams: {
1739
+ availableTypes: ["icon"],
1740
+ },
1741
+ value: {
1742
+ type: "icon",
1743
+ name: "",
1744
+ },
1745
+ },
1746
+ ],
1747
+ },
1748
+ ],
1749
+ },
1750
+ {
1751
+ type: "media",
1752
+ key: "image",
1753
+ displayer: "Image",
1754
+ additionalParams: {
1755
+ availableTypes: ["image"],
1756
+ },
1757
+ value: {
1758
+ type: "image",
1759
+ url: "",
1760
+ },
1761
+ },
1762
+ {
1763
+ type: "page",
1764
+ key: "imageUrl",
1765
+ displayer: "Navigate To",
1766
+ value: "",
1767
+ },
1768
+ ],
1769
+ },
1770
+ ],
1771
+ },
1772
+ {
1773
+ type: "array",
1774
+ key: "rightCategories",
1775
+ displayer: "Right Categories",
1776
+ value: [
1777
+ {
1778
+ type: "object",
1779
+ key: "category",
1780
+ displayer: "Category",
1781
+ value: [
1782
+ {
1783
+ type: "string",
1784
+ key: "title",
1785
+ displayer: "Title",
1786
+ value: "GET HELP",
1787
+ },
1788
+ {
1789
+ type: "page",
1790
+ key: "url",
1791
+ displayer: "Navigate To",
1792
+ value: "",
1793
+ },
1794
+ {
1795
+ type: "array",
1796
+ key: "items",
1797
+ displayer: "Items",
1798
+ value: [
1799
+ {
1800
+ type: "object",
1801
+ key: "item",
1802
+ displayer: "Item",
1803
+ value: [
1804
+ {
1805
+ type: "string",
1806
+ key: "label",
1807
+ displayer: "Label",
1808
+ value: "Support portal",
1809
+ },
1810
+ {
1811
+ type: "page",
1812
+ key: "url",
1813
+ displayer: "Navigate To",
1814
+ value: "",
1815
+ },
1816
+ {
1817
+ type: "media",
1818
+ key: "icon",
1819
+ displayer: "Icon",
1820
+ additionalParams: {
1821
+ availableTypes: ["icon"],
1822
+ },
1823
+ value: {
1824
+ type: "icon",
1825
+ name: "FiArrowUpRight",
1826
+ },
1827
+ },
1828
+ ],
1829
+ },
1830
+ {
1831
+ type: "object",
1832
+ key: "item",
1833
+ displayer: "Item",
1834
+ value: [
1835
+ {
1836
+ type: "string",
1837
+ key: "label",
1838
+ displayer: "Label",
1839
+ value: "System health check",
1840
+ },
1841
+ {
1842
+ type: "page",
1843
+ key: "url",
1844
+ displayer: "Navigate To",
1845
+ value: "",
1846
+ },
1847
+ {
1848
+ type: "media",
1849
+ key: "icon",
1850
+ displayer: "Icon",
1851
+ additionalParams: {
1852
+ availableTypes: ["icon"],
1853
+ },
1854
+ value: {
1855
+ type: "icon",
1856
+ name: "FiArrowUpRight",
1857
+ },
1858
+ },
1859
+ ],
1860
+ },
1861
+ ],
1862
+ },
1863
+ {
1864
+ type: "media",
1865
+ key: "image",
1866
+ displayer: "Image",
1867
+ additionalParams: {
1868
+ availableTypes: ["image"],
1869
+ },
1870
+ value: {
1871
+ type: "image",
1872
+ url: "https://storage.googleapis.com/download/storage/v1/b/hq-blinkpage-staging-bbc49/o/68906a03d3784c002c811913?alt=media&timestamp=1754294795993",
1873
+ },
1874
+ },
1875
+ {
1876
+ type: "page",
1877
+ key: "imageUrl",
1878
+ displayer: "Navigate To",
1879
+ value: "",
1880
+ },
1881
+ ],
1882
+ },
1883
+ ],
1884
+ },
1885
+ ],
1886
+ },
1887
+ {
1888
+ type: "object",
1889
+ key: "item",
1890
+ displayer: "Item",
1891
+ value: [
1892
+ {
1893
+ type: "string",
1894
+ key: "title",
1895
+ displayer: "Title",
1896
+ value: "Pricing",
1897
+ },
1898
+ {
1899
+ type: "page",
1900
+ key: "url",
1901
+ displayer: "Navigate To",
1902
+ value: "",
1903
+ },
1904
+ {
1905
+ type: "select",
1906
+ key: "menuType",
1907
+ displayer: "Type",
1908
+ value: "Normal",
1909
+ additionalParams: { selectItems: ["Dropdown", "Normal"] },
1910
+ },
1911
+ {
1912
+ type: "number",
1913
+ key: "rowCount",
1914
+ displayer: "Item Count In a Row",
1915
+ value: 4,
1916
+ },
1917
+ {
1918
+ type: "array",
1919
+ key: "categories",
1920
+ displayer: "Categories",
1921
+ value: [
1922
+ {
1923
+ type: "object",
1924
+ key: "category",
1925
+ displayer: "Category",
1926
+ value: [
1927
+ {
1928
+ type: "string",
1929
+ key: "title",
1930
+ displayer: "Title",
1931
+ value: "",
1932
+ },
1933
+ {
1934
+ type: "array",
1935
+ key: "items",
1936
+ displayer: "Items",
1937
+ value: [
1938
+ {
1939
+ type: "object",
1940
+ key: "item",
1941
+ displayer: "Item",
1942
+ value: [
1943
+ {
1944
+ type: "string",
1945
+ key: "label",
1946
+ displayer: "Label",
1947
+ value: "",
1948
+ },
1949
+ {
1950
+ type: "string",
1951
+ key: "description",
1952
+ displayer: "Description",
1953
+ value: "",
1954
+ },
1955
+ {
1956
+ type: "media",
1957
+ key: "icon",
1958
+ displayer: "Icon",
1959
+ additionalParams: {
1960
+ availableTypes: ["icon"],
1961
+ },
1962
+ value: {
1963
+ type: "icon",
1964
+ name: "",
1965
+ },
1966
+ },
1967
+ ],
1968
+ },
1969
+ ],
1970
+ },
1971
+ ],
1972
+ },
1973
+ ],
1974
+ },
1975
+ {
1976
+ type: "array",
1977
+ key: "rightCategories",
1978
+ displayer: "Right Categories",
1979
+ value: [
1980
+ {
1981
+ type: "object",
1982
+ key: "category",
1983
+ displayer: "Category",
1984
+ value: [
1985
+ {
1986
+ type: "string",
1987
+ key: "title",
1988
+ displayer: "Title",
1989
+ value: "",
1990
+ },
1991
+ {
1992
+ type: "page",
1993
+ key: "url",
1994
+ displayer: "Navigate To",
1995
+ value: "",
1996
+ },
1997
+ {
1998
+ type: "array",
1999
+ key: "items",
2000
+ displayer: "Items",
2001
+ value: [
2002
+ {
2003
+ type: "object",
2004
+ key: "item",
2005
+ displayer: "Item",
2006
+ value: [
2007
+ {
2008
+ type: "string",
2009
+ key: "label",
2010
+ displayer: "Label",
2011
+ value: "",
2012
+ },
2013
+ {
2014
+ type: "page",
2015
+ key: "url",
2016
+ displayer: "Navigate To",
2017
+ value: "",
2018
+ },
2019
+ {
2020
+ type: "media",
2021
+ key: "icon",
2022
+ displayer: "Icon",
2023
+ additionalParams: {
2024
+ availableTypes: ["icon"],
2025
+ },
2026
+ value: {
2027
+ type: "icon",
2028
+ name: "",
2029
+ },
2030
+ },
2031
+ ],
2032
+ },
2033
+ ],
2034
+ },
2035
+ {
2036
+ type: "media",
2037
+ key: "image",
2038
+ displayer: "Image",
2039
+ additionalParams: {
2040
+ availableTypes: ["image"],
2041
+ },
2042
+ value: {
2043
+ type: "image",
2044
+ url: "",
2045
+ },
2046
+ },
2047
+ {
2048
+ type: "page",
2049
+ key: "imageUrl",
2050
+ displayer: "Navigate To",
2051
+ value: "",
2052
+ },
2053
+ ],
2054
+ },
2055
+ ],
2056
+ },
2057
+ ],
2058
+ },
2059
+ {
2060
+ type: "object",
2061
+ key: "item",
2062
+ displayer: "Item",
2063
+ value: [
2064
+ {
2065
+ type: "string",
2066
+ key: "title",
2067
+ displayer: "Title",
2068
+ value: "Enterprise",
2069
+ },
2070
+ {
2071
+ type: "page",
2072
+ key: "url",
2073
+ displayer: "Navigate To",
2074
+ value: "",
2075
+ },
2076
+ {
2077
+ type: "select",
2078
+ key: "menuType",
2079
+ displayer: "Type",
2080
+ value: "Normal",
2081
+ additionalParams: { selectItems: ["Dropdown", "Normal"] },
2082
+ },
2083
+ {
2084
+ type: "number",
2085
+ key: "rowCount",
2086
+ displayer: "Item Count In a Row",
2087
+ value: 4,
2088
+ },
2089
+ {
2090
+ type: "array",
2091
+ key: "categories",
2092
+ displayer: "Categories",
2093
+ value: [
2094
+ {
2095
+ type: "object",
2096
+ key: "category",
2097
+ displayer: "Category",
2098
+ value: [
2099
+ {
2100
+ type: "string",
2101
+ key: "title",
2102
+ displayer: "Title",
2103
+ value: "",
2104
+ },
2105
+ {
2106
+ type: "array",
2107
+ key: "items",
2108
+ displayer: "Items",
2109
+ value: [
2110
+ {
2111
+ type: "object",
2112
+ key: "item",
2113
+ displayer: "Item",
2114
+ value: [
2115
+ {
2116
+ type: "string",
2117
+ key: "label",
2118
+ displayer: "Label",
2119
+ value: "",
2120
+ },
2121
+ {
2122
+ type: "string",
2123
+ key: "description",
2124
+ displayer: "Description",
2125
+ value: "",
2126
+ },
2127
+ {
2128
+ type: "media",
2129
+ key: "icon",
2130
+ displayer: "Icon",
2131
+ additionalParams: {
2132
+ availableTypes: ["icon"],
2133
+ },
2134
+ value: {
2135
+ type: "icon",
2136
+ name: "",
2137
+ },
2138
+ },
2139
+ ],
2140
+ },
2141
+ ],
2142
+ },
2143
+ {
2144
+ type: "media",
2145
+ key: "image",
2146
+ displayer: "Image",
2147
+ additionalParams: {
2148
+ availableTypes: ["image"],
2149
+ },
2150
+ value: {
2151
+ type: "image",
2152
+ url: "",
2153
+ },
2154
+ },
2155
+ {
2156
+ type: "page",
2157
+ key: "imageUrl",
2158
+ displayer: "Navigate To",
2159
+ value: "",
2160
+ },
2161
+ ],
2162
+ },
2163
+ ],
2164
+ },
2165
+ {
2166
+ type: "array",
2167
+ key: "rightCategories",
2168
+ displayer: "Right Categories",
2169
+ value: [
2170
+ {
2171
+ type: "object",
2172
+ key: "category",
2173
+ displayer: "Category",
2174
+ value: [
2175
+ {
2176
+ type: "string",
2177
+ key: "title",
2178
+ displayer: "Title",
2179
+ value: "",
2180
+ },
2181
+ {
2182
+ type: "page",
2183
+ key: "url",
2184
+ displayer: "Navigate To",
2185
+ value: "",
2186
+ },
2187
+ {
2188
+ type: "array",
2189
+ key: "items",
2190
+ displayer: "Items",
2191
+ value: [
2192
+ {
2193
+ type: "object",
2194
+ key: "item",
2195
+ displayer: "Item",
2196
+ value: [
2197
+ {
2198
+ type: "string",
2199
+ key: "label",
2200
+ displayer: "Label",
2201
+ value: "",
2202
+ },
2203
+ {
2204
+ type: "page",
2205
+ key: "url",
2206
+ displayer: "Navigate To",
2207
+ value: "",
2208
+ },
2209
+ {
2210
+ type: "media",
2211
+ key: "icon",
2212
+ displayer: "Icon",
2213
+ additionalParams: {
2214
+ availableTypes: ["icon"],
2215
+ },
2216
+ value: {
2217
+ type: "icon",
2218
+ name: "",
2219
+ },
2220
+ },
2221
+ ],
2222
+ },
2223
+ ],
2224
+ },
2225
+ {
2226
+ type: "media",
2227
+ key: "image",
2228
+ displayer: "Image",
2229
+ additionalParams: {
2230
+ availableTypes: ["image"],
2231
+ },
2232
+ value: {
2233
+ type: "image",
2234
+ url: "",
2235
+ },
2236
+ },
2237
+ {
2238
+ type: "page",
2239
+ key: "imageUrl",
2240
+ displayer: "Navigate To",
2241
+ value: "",
2242
+ },
2243
+ ],
2244
+ },
2245
+ ],
2246
+ },
2247
+ ],
2248
+ },
2249
+ ],
2250
+ });
2251
+
2252
+ this.addProp({
2253
+ type: "array",
2254
+ key: "buttons",
2255
+ displayer: "Button",
2256
+ value: [
2257
+ INPUTS.BUTTON("button", "Button", "Log In", "", null, null, "Tertiary"),
2258
+ INPUTS.BUTTON(
2259
+ "button",
2260
+ "Button",
2261
+ "Contact Sales",
2262
+ "",
2263
+ null,
2264
+ null,
2265
+ "Tertiary"
2266
+ ),
2267
+ INPUTS.BUTTON(
2268
+ "button",
2269
+ "Button",
2270
+ "Start free Trial",
2271
+ "",
2272
+ null,
2273
+ null,
2274
+ "Primary"
2275
+ ),
2276
+ ],
2277
+ });
2278
+
2279
+ this.addProp({
2280
+ type: "object",
2281
+ key: "navigationIcons",
2282
+ displayer: "Navigation Icons",
2283
+ value: [
2284
+ {
2285
+ type: "media",
2286
+ key: "dropdownIcon",
2287
+ displayer: "Dropdown Icon",
2288
+ additionalParams: {
2289
+ availableTypes: ["icon", "image"],
2290
+ },
2291
+ value: {
2292
+ type: "icon",
2293
+ name: "BiChevronDown",
2294
+ },
2295
+ },
2296
+ {
2297
+ type: "media",
2298
+ key: "rightIcon",
2299
+ displayer: "Right Arrow Icon",
2300
+ additionalParams: {
2301
+ availableTypes: ["icon", "image"],
2302
+ },
2303
+ value: {
2304
+ type: "icon",
2305
+ name: "MdKeyboardArrowRight",
2306
+ },
2307
+ },
2308
+ {
2309
+ type: "media",
2310
+ key: "hamburgerIcon",
2311
+ displayer: "Hamburger Icon",
2312
+ additionalParams: {
2313
+ availableTypes: ["icon", "image"],
2314
+ },
2315
+ value: {
2316
+ type: "icon",
2317
+ name: "RxHamburgerMenu",
2318
+ },
2319
+ },
2320
+ {
2321
+ type: "media",
2322
+ key: "closeIcon",
2323
+ displayer: "Close Icon",
2324
+ additionalParams: {
2325
+ availableTypes: ["icon", "image"],
2326
+ },
2327
+ value: {
2328
+ type: "icon",
2329
+ name: "RxCross2",
2330
+ },
2331
+ },
2332
+ ],
2333
+ });
2334
+
2335
+ this.addProp({
2336
+ type: "boolean",
2337
+ key: "mobileDivider",
2338
+ displayer: "Mobile Menu Divider",
2339
+ value: true,
2340
+ })
2341
+
2342
+ this.setComponentState("isScrolled", false);
2343
+ this.setComponentState("hamburgerNavActive", false);
2344
+ this.setComponentState("navActive", false);
2345
+ this.setComponentState("subNavActiveIndex", null);
2346
+ this.setComponentState("subNavActive", null);
2347
+ this.setComponentState("changeBackground", false);
2348
+ this.setComponentState("isMobile", false);
2349
+ this.setComponentState("navbarOverflowShow", false);
2350
+ this.setComponentState("activeDropdown", null);
2351
+ }
2352
+
2353
+ static getName(): string {
2354
+ return "Navbar 10";
2355
+ }
2356
+
2357
+ onComponentDidMount() {
2358
+ this.handleResize();
2359
+ window.addEventListener('resize', this.handleResize);
2360
+ document.addEventListener('click', this.handleClickOutside);
2361
+ }
2362
+
2363
+ onComponentWillUnmount() {
2364
+ window.removeEventListener('resize', this.handleResize);
2365
+ document.removeEventListener('click', this.handleClickOutside);
2366
+ }
2367
+
2368
+ private handleResize = () => {
2369
+ const el = this.containerRef.current;
2370
+
2371
+ if (!el) return;
2372
+
2373
+ const width = el.clientWidth;
2374
+ const phonePxInt = 640;
2375
+
2376
+ const isMobile = width <= phonePxInt;
2377
+
2378
+ this.setComponentState("isMobile", isMobile);
2379
+ };
2380
+
2381
+ handleOpenMenu = () => {
2382
+ Base.Navigator.changeScrollBehaviour("hidden");
2383
+ const wrapper = Base.Navigator.getWrapperContainer();
2384
+ this.setComponentState("changeBackground", wrapper?.scrollY === 0);
2385
+ setTimeout(() => {
2386
+ this.setComponentState("hamburgerNavActive", true);
2387
+ setTimeout(() => {
2388
+ this.setComponentState("navbarOverflowShow", true);
2389
+ }, 300);
2390
+ }, 100);
2391
+ };
2392
+
2393
+ handleCloseMenu = () => {
2394
+ Base.Navigator.changeScrollBehaviour("auto");
2395
+ this.setComponentState("hamburgerNavActive", false);
2396
+ this.setComponentState("navbarOverflowShow", false);
2397
+ this.setComponentState("activeDropdown", null);
2398
+ setTimeout(() => {
2399
+ this.setComponentState("changeBackground", false);
2400
+ }, 200);
2401
+ };
2402
+
2403
+ navClick = (index: number) => {
2404
+ const isActive = this.getComponentState("subNavActiveIndex") === index;
2405
+ this.setComponentState("navActive", !isActive);
2406
+ this.setComponentState("subNavActiveIndex", isActive ? null : index);
2407
+ this.setComponentState("subNavActive", null);
2408
+ };
2409
+
2410
+ subNavClick = (index: any) => {
2411
+ const currentValue = this.getComponentState("subNavActive");
2412
+ if (currentValue === index) {
2413
+ this.setComponentState("subNavActive", null);
2414
+ } else {
2415
+ this.setComponentState("subNavActive", index);
2416
+ }
2417
+ };
2418
+
2419
+ handleDropdownClick = (index: number, e: any) => {
2420
+ e.preventDefault();
2421
+ e.stopPropagation();
2422
+ const currentActive = this.getComponentState("activeDropdown");
2423
+ if (currentActive === index) {
2424
+ this.setComponentState("activeDropdown", null);
2425
+ Base.Navigator.changeScrollBehaviour("auto");
2426
+ } else {
2427
+ this.setComponentState("activeDropdown", index);
2428
+ Base.Navigator.changeScrollBehaviour("hidden");
2429
+ }
2430
+ };
2431
+
2432
+ handleClickOutside = (e: any) => {
2433
+ const dropdownElement = e.target.closest(`.${this.decorateCSS("dropdown")}`);
2434
+ const menuItemElement = e.target.closest(`.${this.decorateCSS("menuItem")}`);
2435
+ const playgroundElement = e.target.closest('#playground');
2436
+
2437
+ if (!playgroundElement) {
2438
+ return;
2439
+ }
2440
+
2441
+ if (!dropdownElement && !menuItemElement) {
2442
+ this.setComponentState("activeDropdown", null);
2443
+ Base.Navigator.changeScrollBehaviour("auto");
2444
+ }
2445
+ };
2446
+
2447
+ componentWillUnmount(): void {
2448
+ this.handleCloseMenu();
2449
+ }
2450
+
2451
+ render() {
2452
+ const defaultLogo = this.castToObject<Logo>("defaultLogo");
2453
+ const absoluteLogo = this.castToObject<Logo>("absoluteLogo");
2454
+ const position = this.getPropValue("position");
2455
+ const menuItems = this.castToObject<MenuItems[]>("menuItems");
2456
+ const hamburgerNavActive = this.getComponentState("hamburgerNavActive");
2457
+ const navbarOverflowShow = this.getComponentState("navbarOverflowShow");
2458
+ const isScrolled = this.getComponentState("isScrolled");
2459
+ const isMobile = this.getComponentState("isMobile");
2460
+ const activeDropdown = this.getComponentState("activeDropdown");
2461
+ const mobileDivider = this.getPropValue("mobileDivider");
2462
+
2463
+ const isStickyTransparent = position === "Sticky Transparent";
2464
+ const isAbsolute = position === "Absolute";
2465
+ const transparentBackground =
2466
+ (isStickyTransparent && !isScrolled) || isAbsolute;
2467
+
2468
+ const changeBackground = this.getComponentState("changeBackground");
2469
+
2470
+ const currentLogo =
2471
+ (transparentBackground && !changeBackground) ||
2472
+ (hamburgerNavActive && !isMobile)
2473
+ ? absoluteLogo
2474
+ : defaultLogo;
2475
+
2476
+ const buttons = this.castToObject<INPUTS.CastedButton[]>("buttons");
2477
+ const navigationIcons = this.castToObject<{
2478
+ dropdownIcon?: TypeMediaInputValue;
2479
+ rightIcon?: TypeMediaInputValue;
2480
+ hamburgerIcon?: TypeMediaInputValue;
2481
+ closeIcon?: TypeMediaInputValue;
2482
+ }>("navigationIcons");
2483
+
2484
+ const isVisible = hamburgerNavActive && isMobile;
2485
+ const isOverlayVisible = hamburgerNavActive || activeDropdown !== null;
2486
+
2487
+ return (
2488
+ <>
2489
+ <Base.Navigator.Container
2490
+ ref={this.containerRef}
2491
+ position={position}
2492
+ hamburgerNavActive={hamburgerNavActive}
2493
+ positionContainer={`${this.decorateCSS("navbarContainer")} ${
2494
+ changeBackground ? this.decorateCSS("filledBackground") : ""
2495
+ } ${hamburgerNavActive ? this.decorateCSS("hamburgerActive") : ""}`}
2496
+ setIsScrolled={(val: boolean) =>
2497
+ this.setComponentState("isScrolled", val)
2498
+ }
2499
+ className={this.decorateCSS("filledBackground")}
2500
+ >
2501
+ <Base.MaxContent
2502
+ className={`${this.decorateCSS("maxContent")} ${
2503
+ [
2504
+ "Sticky Transparent" === position && !isScrolled,
2505
+ position === "Absolute",
2506
+ ].some(Boolean)
2507
+ ? this.decorateCSS("transparentBackground")
2508
+ : ""
2509
+ }`}
2510
+ >
2511
+ <div className={this.decorateCSS("leftSection")}>
2512
+ {currentLogo && (
2513
+ <div
2514
+ className={this.decorateCSS("logo")}
2515
+ onClick={() => this.handleCloseMenu()}
2516
+ >
2517
+ <ComposerLink path={currentLogo.urlTo}>
2518
+ <Base.Media
2519
+ value={currentLogo.image}
2520
+ className={this.decorateCSS("logoImage")}
2521
+ />
2522
+ </ComposerLink>
2523
+ </div>
2524
+ )}
2525
+
2526
+ {!isMobile && (
2527
+ <nav className={this.decorateCSS("pcNavbar")}>
2528
+ {menuItems
2529
+ .filter((item) => item && item.title)
2530
+ .map((item, index) => (
2531
+ <div
2532
+ key={index}
2533
+ className={this.decorateCSS("menuItemContainer")}
2534
+ >
2535
+ {item.menuType === "Dropdown" ? (
2536
+ <div
2537
+ className={`${this.decorateCSS("menuItem")} ${
2538
+ activeDropdown === index ? this.decorateCSS("active") : ""
2539
+ }`}
2540
+ onClick={(e) => this.handleDropdownClick(index, e)}
2541
+ >
2542
+ <Base.P
2543
+ className={`${this.decorateCSS(
2544
+ "menuItemTitle"
2545
+ )}`}
2546
+ >
2547
+ {item.title}
2548
+ </Base.P>
2549
+ <Base.Media
2550
+ value={navigationIcons?.dropdownIcon}
2551
+ className={`${this.decorateCSS("dropdownIcon")} ${
2552
+ activeDropdown === index ? this.decorateCSS("active") : ""
2553
+ }`}
2554
+ />
2555
+ </div>
2556
+ ) : (
2557
+ <ComposerLink path={item.url}>
2558
+ <div className={this.decorateCSS("menuItem")}>
2559
+ <Base.P
2560
+ className={`${this.decorateCSS(
2561
+ "menuItemTitle"
2562
+ )}`}
2563
+ >
2564
+ {item.title}
2565
+ </Base.P>
2566
+ </div>
2567
+ </ComposerLink>
2568
+ )}
2569
+ {item.menuType === "Dropdown" && item.categories && (
2570
+ <div className={`${this.decorateCSS("dropdown")} ${
2571
+ activeDropdown === index ? this.decorateCSS("visible") : this.decorateCSS("hidden")
2572
+ }`} style={{ display: 'block' }}>
2573
+ {(() => {
2574
+ const rowCount = item.rowCount || 4;
2575
+ const categories = item.categories || [];
2576
+ const rightCategories = item.rightCategories || [];
2577
+ const columns: Category[][] = Array.from(
2578
+ { length: rowCount },
2579
+ () => []
2580
+ );
2581
+ categories.forEach((category, index) => {
2582
+ columns[index % rowCount].push(category);
2583
+ });
2584
+ return (
2585
+ <div
2586
+ className={this.decorateCSS(
2587
+ "dropdownContentContainer"
2588
+ )}
2589
+ >
2590
+ {columns.map((column, colIndex) => (
2591
+ <div
2592
+ key={colIndex}
2593
+ className={this.decorateCSS("dropdownColumn")}
2594
+ >
2595
+ {column.map((category, catIndex) => (
2596
+ <div
2597
+ key={catIndex}
2598
+ className={this.decorateCSS(
2599
+ "dropdownItem"
2600
+ )}
2601
+ >
2602
+ <ComposerLink path={category.url}>
2603
+ <Base.P
2604
+ className={`${this.decorateCSS(
2605
+ "dropdownItemTitle"
2606
+ )}`}
2607
+ >
2608
+ {category.title}
2609
+ {category.icon && (
2610
+ <Base.Media
2611
+ value={category.icon}
2612
+ className={this.decorateCSS(
2613
+ "DropdownSectionItemIcon"
2614
+ )}
2615
+ />
2616
+ )}
2617
+ </Base.P>
2618
+ </ComposerLink>
2619
+ {category.items.map((catItem, iIndex) => (
2620
+ <ComposerLink
2621
+ key={iIndex}
2622
+ path={catItem.url}
2623
+ >
2624
+ <div
2625
+ className={this.decorateCSS(
2626
+ "DropdownSectionItemContainer"
2627
+ )}
2628
+ >
2629
+ <div
2630
+ className={this.decorateCSS(
2631
+ "DropdownSectionItemSectionContainer"
2632
+ )}
2633
+ >
2634
+ <Base.P
2635
+ className={this.decorateCSS(
2636
+ "DropdownSectionItemTitle"
2637
+ )}
2638
+ >
2639
+ {catItem.label}
2640
+ {catItem.icon && (
2641
+ <Base.Media
2642
+ value={catItem.icon}
2643
+ className={this.decorateCSS(
2644
+ "DropdownSectionItemIcon"
2645
+ )}
2646
+ />
2647
+ )}
2648
+ </Base.P>
2649
+ {catItem.description && (
2650
+ <Base.P
2651
+ className={this.decorateCSS(
2652
+ "DropdownSectionItemDescription"
2653
+ )}
2654
+ >
2655
+ {catItem.description}
2656
+ </Base.P>
2657
+ )}
2658
+ </div>
2659
+ </div>
2660
+ </ComposerLink>
2661
+ ))}
2662
+ {category.image && (
2663
+ <div className={this.decorateCSS("dropdownCategoryImage")}>
2664
+ <Base.Media
2665
+ value={category.image}
2666
+ className={this.decorateCSS("categoryImage")}
2667
+ />
2668
+ </div>
2669
+ )}
2670
+ </div>
2671
+ ))}
2672
+ </div>
2673
+ ))}
2674
+
2675
+ {rightCategories.length > 0 && (
2676
+ <div className={this.decorateCSS("dropdownRightColumn")}>
2677
+ {rightCategories.map((category, catIndex) => {
2678
+ const rightContainerExists = category.items.length > 0 || category.image || category.url || category.title || category.icon;
2679
+ console.log(rightContainerExists, "rightContainerExists");
2680
+ return rightContainerExists && (
2681
+ <div
2682
+ key={catIndex}
2683
+ className={this.decorateCSS(
2684
+ "dropdownItem"
2685
+ )}
2686
+ >
2687
+ <ComposerLink path={category.url}>
2688
+ <Base.P
2689
+ className={`${this.decorateCSS(
2690
+ "dropdownItemTitle"
2691
+ )}`}
2692
+ >
2693
+ {category.title}
2694
+ {category.icon && (
2695
+ <Base.Media
2696
+ value={category.icon}
2697
+ className={this.decorateCSS(
2698
+ "DropdownSectionItemIcon"
2699
+ )}
2700
+ />
2701
+ )}
2702
+ </Base.P>
2703
+ </ComposerLink>
2704
+ {category.items.map((catItem, iIndex) => (
2705
+ <ComposerLink
2706
+ key={iIndex}
2707
+ path={catItem.url}
2708
+ >
2709
+ <div
2710
+ className={this.decorateCSS(
2711
+ "DropdownSectionItemContainer"
2712
+ )}
2713
+ >
2714
+ <div
2715
+ className={this.decorateCSS(
2716
+ "DropdownSectionItemSectionContainer"
2717
+ )}
2718
+ >
2719
+ <Base.P
2720
+ className={this.decorateCSS(
2721
+ "DropdownSectionItemTitle"
2722
+ )}
2723
+ >
2724
+ {catItem.label}
2725
+ {catItem.icon && (
2726
+ <Base.Media
2727
+ value={catItem.icon}
2728
+ className={this.decorateCSS(
2729
+ "DropdownSectionItemIcon"
2730
+ )}
2731
+ />
2732
+ )}
2733
+ </Base.P>
2734
+ {catItem.description && (
2735
+ <Base.P
2736
+ className={this.decorateCSS(
2737
+ "DropdownSectionItemDescription"
2738
+ )}
2739
+ >
2740
+ {catItem.description}
2741
+ </Base.P>
2742
+ )}
2743
+ </div>
2744
+ </div>
2745
+ </ComposerLink>
2746
+ ))}
2747
+ {category.image && ((category.image.type === "image" && category.image.url) || (category.image.type === "icon" && category.image.name)) && (
2748
+ <div className={this.decorateCSS("dropdownCategoryImage")}>
2749
+ <Base.Media
2750
+ value={category.image}
2751
+ className={this.decorateCSS("categoryImage")}
2752
+ />
2753
+ </div>
2754
+ )}
2755
+ </div>
2756
+ )
2757
+ })}
2758
+ </div>
2759
+ )}
2760
+ </div>
2761
+ );
2762
+ })()}
2763
+ {item.rightSection?.enabled && (
2764
+ <div
2765
+ className={this.decorateCSS("dropdownRightSection")}
2766
+ >
2767
+ <Base.Media
2768
+ value={item.rightSection.image}
2769
+ className={this.decorateCSS("rightImage")}
2770
+ />
2771
+ <ComposerLink path={item.rightSection.ctaLink}>
2772
+ <Base.P className={this.decorateCSS("ctaTitle")}>
2773
+ {item.rightSection.ctaTitle}
2774
+ </Base.P>
2775
+ </ComposerLink>
2776
+ </div>
2777
+ )}
2778
+ </div>
2779
+ )}
2780
+ </div>
2781
+ ))}
2782
+ </nav>
2783
+ )}
2784
+ </div>
2785
+
2786
+ <div className={this.decorateCSS("rightSide")}>
2787
+ {buttons.length > 0 && !isMobile && (
2788
+ <div className={this.decorateCSS("buttons")}>
2789
+ {buttons.map((btn, idx) => this.castToString(btn.text) && (
2790
+ <ComposerLink key={idx} path={btn.url}>
2791
+ <Base.Button
2792
+ className={`${this.decorateCSS("button")} ${
2793
+ [
2794
+ "Sticky Transparent" === position && !isScrolled,
2795
+ position === "Absolute",
2796
+ ].some(Boolean) && !hamburgerNavActive
2797
+ ? this.decorateCSS(`${btn.type}`)
2798
+ : ""
2799
+ }`}
2800
+ buttonType={btn.type}
2801
+ >
2802
+ <Base.P className={this.decorateCSS("buttonText")}>{btn.text}</Base.P>
2803
+ </Base.Button>
2804
+ </ComposerLink>
2805
+ ))}
2806
+ </div>
2807
+ )}
2808
+
2809
+ {isMobile &&
2810
+ (hamburgerNavActive ? (
2811
+ <div
2812
+ onClick={(e: any) => {
2813
+ e.preventDefault();
2814
+ e.stopPropagation();
2815
+ this.handleCloseMenu();
2816
+ }}
2817
+ >
2818
+ <Base.Media
2819
+ value={navigationIcons?.closeIcon}
2820
+ className={this.decorateCSS("closeIcon")}
2821
+ />
2822
+ </div>
2823
+ ) : (
2824
+ <div
2825
+ onClick={(e: any) => {
2826
+ e.preventDefault();
2827
+ e.stopPropagation();
2828
+ this.handleOpenMenu();
2829
+ }}
2830
+ >
2831
+ <Base.Media
2832
+ value={navigationIcons?.hamburgerIcon}
2833
+ className={this.decorateCSS("hamburgerIcon")}
2834
+ />
2835
+ </div>
2836
+ ))}
2837
+ </div>
2838
+ </Base.MaxContent>
2839
+
2840
+ {isVisible && (
2841
+ <div
2842
+ className={`${this.decorateCSS("hamburgerNav")} ${
2843
+ hamburgerNavActive ? this.decorateCSS("active") : ""
2844
+ } ${navbarOverflowShow ? this.decorateCSS("overflowShow") : ""} ${
2845
+ mobileDivider ? this.decorateCSS("mobileDivider") : ""
2846
+ }`}
2847
+ >
2848
+ <div className={this.decorateCSS("hamburgerNavContainer")}>
2849
+ <div className={this.decorateCSS("hamburgerNavMaxContent")}>
2850
+ <div className={this.decorateCSS("hamburgerMenu")}>
2851
+ {menuItems
2852
+ .filter((item) => item && item.title)
2853
+ .map((item, index) => {
2854
+ const isActive =
2855
+ this.getComponentState("subNavActiveIndex") === index;
2856
+ return (
2857
+ <div
2858
+ className={this.decorateCSS("hamburgerMenuItem")}
2859
+ key={index}
2860
+ >
2861
+ <div
2862
+ className={`${this.decorateCSS(
2863
+ "hamburgerMenuItemHeader"
2864
+ )}`}
2865
+ onClick={() => this.navClick(index)}
2866
+ >
2867
+ <Base.P
2868
+ className={`${this.decorateCSS(
2869
+ "hamburgerMenuItemTitle"
2870
+ )}`}
2871
+ >
2872
+ {item.title}
2873
+ </Base.P>
2874
+ {item.menuType === "Dropdown" && (
2875
+ <Base.Media
2876
+ value={navigationIcons?.dropdownIcon}
2877
+ className={`${this.decorateCSS(
2878
+ "dropdownIcon"
2879
+ )} ${
2880
+ isActive ? this.decorateCSS("active") : ""
2881
+ }`}
2882
+ />
2883
+ )}
2884
+ </div>
2885
+ {item.menuType === "Dropdown" &&
2886
+ ((item.categories && item.categories.length > 0) || (item.rightCategories && item.rightCategories.length > 0)) && (
2887
+ <div
2888
+ className={`${this.decorateCSS(
2889
+ "hamburgerSubmenu"
2890
+ )} ${
2891
+ isActive ? this.decorateCSS("active") : ""
2892
+ }`}
2893
+ >
2894
+ {item.categories?.map((category, catIndex) => (
2895
+ <div
2896
+ className={this.decorateCSS(
2897
+ "hamburgerCategorySection"
2898
+ )}
2899
+ key={catIndex}
2900
+ >
2901
+ <ComposerLink path={category.url}>
2902
+ <Base.P
2903
+ className={`${this.decorateCSS(
2904
+ "hamburgerCategoryTitle"
2905
+ )}`}
2906
+ >
2907
+ {category.title}
2908
+ {category.icon && (
2909
+ <Base.Media
2910
+ value={category.icon}
2911
+ className={this.decorateCSS(
2912
+ "DropdownSectionItemIcon"
2913
+ )}
2914
+ />
2915
+ )}
2916
+ </Base.P>
2917
+ </ComposerLink>
2918
+ <div
2919
+ className={this.decorateCSS(
2920
+ "hamburgerCategoryItems"
2921
+ )}
2922
+ >
2923
+ {category.items?.map(
2924
+ (subItem, subIndex) => (
2925
+ <div
2926
+ className={this.decorateCSS(
2927
+ "hamburgerCategoryItem"
2928
+ )}
2929
+ key={subIndex}
2930
+ >
2931
+ <ComposerLink path={subItem.url}>
2932
+ <Base.P
2933
+ className={`${this.decorateCSS(
2934
+ "hamburgerCategoryItemTitle"
2935
+ )}`}
2936
+ >
2937
+ {subItem.label}
2938
+ {subItem.icon && (
2939
+ <Base.Media
2940
+ value={subItem.icon}
2941
+ className={this.decorateCSS(
2942
+ "DropdownSectionItemIcon"
2943
+ )}
2944
+ />
2945
+ )}
2946
+ </Base.P>
2947
+ </ComposerLink>
2948
+ </div>
2949
+ )
2950
+ )}
2951
+ </div>
2952
+ {category.image && ((category.image.type === "image" && category.image.url) || (category.image.type === "icon" && category.image.name)) && (
2953
+ <div className={this.decorateCSS("dropdownCategoryImage")}>
2954
+ <Base.Media
2955
+ value={category.image}
2956
+ className={this.decorateCSS("categoryImage")}
2957
+ />
2958
+ </div>
2959
+ )}
2960
+ </div>
2961
+ ))}
2962
+
2963
+ {item.rightCategories?.map((category, catIndex) => (
2964
+ <div
2965
+ className={this.decorateCSS(
2966
+ "hamburgerCategorySection"
2967
+ )}
2968
+ key={`right-${catIndex}`}
2969
+ >
2970
+ <ComposerLink path={category.url}>
2971
+ <Base.P
2972
+ className={`${this.decorateCSS(
2973
+ "hamburgerCategoryTitle"
2974
+ )}`}
2975
+ >
2976
+ {category.title}
2977
+ {category.icon && (
2978
+ <Base.Media
2979
+ value={category.icon}
2980
+ className={this.decorateCSS(
2981
+ "DropdownSectionItemIcon"
2982
+ )}
2983
+ />
2984
+ )}
2985
+ </Base.P>
2986
+ </ComposerLink>
2987
+ <div
2988
+ className={this.decorateCSS(
2989
+ "hamburgerCategoryItems"
2990
+ )}
2991
+ >
2992
+ {category.items?.map(
2993
+ (subItem, subIndex) => (
2994
+ <div
2995
+ className={this.decorateCSS(
2996
+ "hamburgerCategoryItem"
2997
+ )}
2998
+ key={subIndex}
2999
+ >
3000
+ <ComposerLink path={subItem.url}>
3001
+ <Base.P
3002
+ className={`${this.decorateCSS(
3003
+ "hamburgerCategoryItemTitle"
3004
+ )}`}
3005
+ >
3006
+ {subItem.label}
3007
+ {subItem.icon && (
3008
+ <Base.Media
3009
+ value={subItem.icon}
3010
+ className={this.decorateCSS(
3011
+ "DropdownSectionItemIcon"
3012
+ )}
3013
+ />
3014
+ )}
3015
+ </Base.P>
3016
+ </ComposerLink>
3017
+ </div>
3018
+ )
3019
+ )}
3020
+ </div>
3021
+ {category.image && ((category.image.type === "image" && category.image.url) || (category.image.type === "icon" && category.image.name)) && (
3022
+ <div className={this.decorateCSS("dropdownCategoryImage")}>
3023
+ <Base.Media
3024
+ value={category.image}
3025
+ className={this.decorateCSS("categoryImage")}
3026
+ />
3027
+ </div>
3028
+ )}
3029
+ </div>
3030
+ ))}
3031
+ </div>
3032
+ )}
3033
+ </div>
3034
+ );
3035
+ })}
3036
+ </div>
3037
+ {buttons.length > 0 && isMobile && (
3038
+ <div className={this.decorateCSS("hamburgerButtons")}>
3039
+ {buttons.map((btn, idx) => (
3040
+ <ComposerLink key={idx} path={btn.url}>
3041
+ <Base.Button
3042
+ className={`${this.decorateCSS(
3043
+ "hamburgerButton"
3044
+ )} ${this.decorateCSS(btn.type)}`}
3045
+ buttonType={btn.type}
3046
+ onClick={() => this.handleCloseMenu()}
3047
+ >
3048
+ {btn.text}
3049
+ </Base.Button>
3050
+ </ComposerLink>
3051
+ ))}
3052
+ </div>
3053
+ )}
3054
+ </div>
3055
+ </div>
3056
+ </div>
3057
+ )}
3058
+ </Base.Navigator.Container>
3059
+
3060
+ <Base.Overlay
3061
+ className={this.decorateCSS("overlay")}
3062
+ isVisible={isOverlayVisible}
3063
+ onClick={() => this.handleCloseMenu()}
3064
+ />
3065
+ </>
3066
+ );
3067
+ }
3068
+ }
3069
+
3070
+ export default Navbar10;