@levo-so/blocks 0.1.1 → 0.1.52

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 (501) hide show
  1. package/package.json +6 -10
  2. package/src/blocks/about-us/about-us-1.schema.ts +577 -0
  3. package/src/blocks/about-us/about-us-1.tsx +53 -0
  4. package/src/blocks/about-us/about-us-2.schema.ts +269 -0
  5. package/src/blocks/about-us/about-us-2.tsx +47 -0
  6. package/src/blocks/blogs/blog-listing-1.schema.ts +473 -0
  7. package/src/blocks/blogs/blog-listing-1.tsx +102 -0
  8. package/src/blocks/blogs/blog-listing-2.schema.ts +3718 -0
  9. package/src/blocks/blogs/blog-listing-2.tsx +88 -0
  10. package/src/blocks/blogs/blog-listing-3.schema.ts +2476 -0
  11. package/src/blocks/blogs/blog-listing-3.tsx +84 -0
  12. package/src/blocks/blogs/blog-post-1.schema.ts +400 -0
  13. package/src/blocks/blogs/blog-post-1.tsx +52 -0
  14. package/src/blocks/blogs/blog-post-2.schema.ts +791 -0
  15. package/src/blocks/blogs/blog-post-2.tsx +131 -0
  16. package/src/blocks/blogs/blog-post-3.schema.ts +284 -0
  17. package/src/blocks/blogs/blog-post-3.tsx +58 -0
  18. package/src/blocks/cards/cards-10.schema.ts +1012 -0
  19. package/src/blocks/cards/cards-10.tsx +48 -0
  20. package/src/blocks/cards/cards-11.schema.ts +918 -0
  21. package/src/blocks/cards/cards-11.tsx +50 -0
  22. package/src/blocks/cards/cards-12.schema.ts +578 -0
  23. package/src/blocks/cards/cards-12.tsx +54 -0
  24. package/src/blocks/cards/cards-13.schema.ts +615 -0
  25. package/src/blocks/cards/cards-13.tsx +67 -0
  26. package/src/blocks/cards/cards-2.schema.ts +290 -0
  27. package/src/blocks/cards/cards-2.tsx +42 -0
  28. package/src/blocks/cards/cards-3.schema.ts +355 -0
  29. package/src/blocks/cards/cards-3.tsx +49 -0
  30. package/src/blocks/cards/cards-4.schema.ts +655 -0
  31. package/src/blocks/cards/cards-4.tsx +50 -0
  32. package/src/blocks/cards/cards-5.schema.ts +245 -0
  33. package/src/blocks/cards/cards-5.tsx +34 -0
  34. package/src/blocks/cards/cards-6.schema.ts +2139 -0
  35. package/src/blocks/cards/cards-6.tsx +140 -0
  36. package/src/blocks/cards/cards-7.schema.ts +3538 -0
  37. package/src/blocks/cards/cards-7.tsx +197 -0
  38. package/src/blocks/cards/cards-8.schema.ts +691 -0
  39. package/src/blocks/cards/cards-8.tsx +43 -0
  40. package/src/blocks/cards/cards-9.schema.ts +827 -0
  41. package/src/blocks/cards/cards-9.tsx +54 -0
  42. package/src/blocks/carousel/carousel-1.schema.ts +250 -0
  43. package/src/blocks/carousel/carousel-1.tsx +79 -0
  44. package/src/blocks/contact-us/contact-us-1.schema.ts +233 -0
  45. package/src/blocks/contact-us/contact-us-1.tsx +39 -0
  46. package/src/blocks/contact-us/contact-us-2.schema.ts +524 -0
  47. package/src/blocks/contact-us/contact-us-2.tsx +71 -0
  48. package/src/blocks/content/content-1.schema.ts +862 -0
  49. package/src/blocks/content/content-1.tsx +69 -0
  50. package/src/blocks/content/content-2.schema.ts +212 -0
  51. package/src/blocks/content/content-2.tsx +32 -0
  52. package/src/blocks/content/content-3.schema.ts +766 -0
  53. package/src/blocks/content/content-3.tsx +55 -0
  54. package/src/blocks/content/content-4.schema.ts +287 -0
  55. package/src/blocks/content/content-4.tsx +47 -0
  56. package/src/blocks/content/content-5.schema.ts +944 -0
  57. package/src/blocks/content/content-5.tsx +59 -0
  58. package/src/blocks/content/content-6.schema.ts +991 -0
  59. package/src/blocks/content/content-6.tsx +62 -0
  60. package/src/blocks/content/content-7.schema.ts +723 -0
  61. package/src/blocks/content/content-7.tsx +53 -0
  62. package/src/blocks/cta/cta-1.schema.ts +353 -0
  63. package/src/blocks/cta/cta-1.tsx +33 -0
  64. package/src/blocks/cta/cta-2.schema.ts +209 -0
  65. package/src/blocks/cta/cta-2.tsx +28 -0
  66. package/src/blocks/cta/cta-3.schema.ts +216 -0
  67. package/src/blocks/cta/cta-3.tsx +48 -0
  68. package/src/blocks/embed/embed-1.schema.ts +153 -0
  69. package/src/blocks/embed/embed-1.tsx +38 -0
  70. package/src/blocks/event/event-details.schema.ts +732 -0
  71. package/src/blocks/event/event-details.tsx +102 -0
  72. package/src/blocks/event/event-listing-2.schema.ts +555 -0
  73. package/src/blocks/event/event-listing-2.tsx +94 -0
  74. package/src/blocks/event/event-listing-3.schema.ts +621 -0
  75. package/src/blocks/event/event-listing-3.tsx +90 -0
  76. package/src/blocks/event/event-listing-4.schema.ts +3528 -0
  77. package/src/blocks/event/event-listing-4.tsx +97 -0
  78. package/src/blocks/event/event-listing.schema.ts +1353 -0
  79. package/src/blocks/event/event-listing.tsx +88 -0
  80. package/src/blocks/faq/faq-1.schema.ts +360 -0
  81. package/src/blocks/faq/faq-1.tsx +65 -0
  82. package/src/blocks/faq/faq-2.schema.ts +358 -0
  83. package/src/blocks/faq/faq-2.tsx +84 -0
  84. package/src/blocks/faq/faq-3.schema.ts +475 -0
  85. package/src/blocks/faq/faq-3.tsx +70 -0
  86. package/src/blocks/features/features-1/features-1.schema.ts +165 -0
  87. package/src/blocks/features/features-1/features-1.tsx +48 -0
  88. package/src/blocks/features/features-1/variants/default.ts +206 -0
  89. package/{dist/blocks/features/features-1/variants/index.js → src/blocks/features/features-1/variants/index.ts} +7 -1
  90. package/src/blocks/features/features-1/variants/stylized-cards-v1.ts +138 -0
  91. package/src/blocks/features/features-1/variants/stylized-cards-v2.ts +487 -0
  92. package/src/blocks/features/features-2.schema.ts +471 -0
  93. package/src/blocks/features/features-2.tsx +66 -0
  94. package/src/blocks/features/features-3.schema.ts +424 -0
  95. package/src/blocks/features/features-3.tsx +56 -0
  96. package/src/blocks/features/features-4.schema.ts +616 -0
  97. package/src/blocks/features/features-4.tsx +75 -0
  98. package/src/blocks/features/features-5.schema.ts +728 -0
  99. package/src/blocks/features/features-5.tsx +49 -0
  100. package/src/blocks/features/features-6.schema.ts +849 -0
  101. package/src/blocks/features/features-6.tsx +125 -0
  102. package/src/blocks/footer/footer-1.schema.ts +612 -0
  103. package/src/blocks/footer/footer-1.tsx +90 -0
  104. package/src/blocks/footer/footer-2.schema.ts +913 -0
  105. package/src/blocks/footer/footer-2.tsx +77 -0
  106. package/src/blocks/footer/footer-3.schema.ts +412 -0
  107. package/src/blocks/footer/footer-3.tsx +99 -0
  108. package/src/blocks/footer/footer-4.schema.ts +649 -0
  109. package/src/blocks/footer/footer-4.tsx +97 -0
  110. package/src/blocks/footer/footer-5.schema.ts +435 -0
  111. package/src/blocks/footer/footer-5.tsx +99 -0
  112. package/src/blocks/footer/footer-6.schema.ts +730 -0
  113. package/src/blocks/footer/footer-6.tsx +100 -0
  114. package/src/blocks/hero/hero-1.schema.ts +746 -0
  115. package/src/blocks/hero/hero-1.tsx +52 -0
  116. package/src/blocks/hero/hero-10.schema.ts +175 -0
  117. package/src/blocks/hero/hero-10.tsx +35 -0
  118. package/src/blocks/hero/hero-2.schema.ts +272 -0
  119. package/src/blocks/hero/hero-2.tsx +57 -0
  120. package/src/blocks/hero/hero-3.schema.ts +419 -0
  121. package/src/blocks/hero/hero-3.tsx +50 -0
  122. package/src/blocks/hero/hero-4.schema.ts +425 -0
  123. package/src/blocks/hero/hero-4.tsx +89 -0
  124. package/src/blocks/hero/hero-5.schema.ts +198 -0
  125. package/src/blocks/hero/hero-5.tsx +86 -0
  126. package/src/blocks/hero/hero-6.schema.ts +665 -0
  127. package/src/blocks/hero/hero-6.tsx +62 -0
  128. package/src/blocks/hero/hero-7.schema.ts +505 -0
  129. package/src/blocks/hero/hero-7.tsx +115 -0
  130. package/src/blocks/hero/hero-8.schema.ts +376 -0
  131. package/src/blocks/hero/hero-8.tsx +113 -0
  132. package/src/blocks/hero/hero-9.schema.ts +379 -0
  133. package/src/blocks/hero/hero-9.tsx +49 -0
  134. package/src/blocks/index.ts +89 -0
  135. package/src/blocks/logos/logos-1.schema.ts +270 -0
  136. package/src/blocks/logos/logos-1.tsx +60 -0
  137. package/src/blocks/navbar/navbar-1.schema.ts +959 -0
  138. package/src/blocks/navbar/navbar-1.tsx +384 -0
  139. package/src/blocks/navbar/navbar-2.schema.ts +1224 -0
  140. package/src/blocks/navbar/navbar-2.tsx +403 -0
  141. package/src/blocks/navbar/navbar-3.schema.ts +6834 -0
  142. package/src/blocks/navbar/navbar-3.tsx +551 -0
  143. package/src/blocks/pricing/pricing-1.schema.ts +988 -0
  144. package/src/blocks/pricing/pricing-1.tsx +88 -0
  145. package/src/blocks/products/products-listing-1.schema.ts +271 -0
  146. package/src/blocks/products/products-listing-1.tsx +48 -0
  147. package/src/blocks/profile/profile-1.schema.ts +399 -0
  148. package/src/blocks/profile/profile-1.tsx +64 -0
  149. package/src/blocks/stats/stats-1.schema.ts +262 -0
  150. package/src/blocks/stats/stats-1.tsx +38 -0
  151. package/src/blocks/stats/stats-2.schema.ts +111 -0
  152. package/src/blocks/stats/stats-2.tsx +52 -0
  153. package/src/blocks/stats/variants/default.ts +189 -0
  154. package/src/blocks/stats/variants/hero.ts +142 -0
  155. package/{dist/blocks/stats/variants/index.js → src/blocks/stats/variants/index.ts} +1 -0
  156. package/src/blocks/team/team-1.schema.ts +544 -0
  157. package/src/blocks/team/team-1.tsx +86 -0
  158. package/src/blocks/team/team-2.schema.ts +2742 -0
  159. package/src/blocks/team/team-2.tsx +74 -0
  160. package/src/blocks/team/team-3.schema.ts +690 -0
  161. package/src/blocks/team/team-3.tsx +103 -0
  162. package/src/blocks/team/team-4.schema.ts +551 -0
  163. package/src/blocks/team/team-4.tsx +59 -0
  164. package/src/blocks/termsAndPrivacy/terms-and-conditions-1.schema.ts +158 -0
  165. package/src/blocks/termsAndPrivacy/terms-and-conditions-1.tsx +29 -0
  166. package/src/blocks/testimonial/testimonial-1.schema.ts +351 -0
  167. package/src/blocks/testimonial/testimonial-1.tsx +79 -0
  168. package/src/blocks/testimonial/testimonial-2.schema.ts +816 -0
  169. package/src/blocks/testimonial/testimonial-2.tsx +161 -0
  170. package/src/blocks/testimonial/testimonial-3.schema.ts +273 -0
  171. package/src/blocks/testimonial/testimonial-3.tsx +128 -0
  172. package/src/blocks/testimonial/testimonial-4.schema.ts +3378 -0
  173. package/src/blocks/testimonial/testimonial-4.tsx +202 -0
  174. package/src/blocks/testimonial/testimonial-5/variants/default.ts +510 -0
  175. package/src/blocks/testimonial/testimonial-5/variants/index.ts +4 -0
  176. package/src/blocks/testimonial/testimonial-5/variants/testimonialWithLogo.ts +887 -0
  177. package/src/blocks/testimonial/testimonial-5/variants/testimonialWithRatings.ts +923 -0
  178. package/src/blocks/testimonial/testimonial-5.schema.ts +250 -0
  179. package/src/blocks/testimonial/testimonial-5.tsx +130 -0
  180. package/src/blocks/testimonial/testimonial-6.schema.ts +1672 -0
  181. package/src/blocks/testimonial/testimonial-6.tsx +178 -0
  182. package/{dist/index.js → src/index.ts} +5 -2
  183. package/{dist/schemas/blocks.js → src/schemas/blocks.ts} +97 -72
  184. package/src/schemas/categories.ts +140 -0
  185. package/src/styles.d.ts +4 -0
  186. package/dist/blocks/about-us/about-us-1.d.ts +0 -5
  187. package/dist/blocks/about-us/about-us-1.js +0 -5
  188. package/dist/blocks/about-us/about-us-1.schema.d.ts +0 -38
  189. package/dist/blocks/about-us/about-us-1.schema.js +0 -537
  190. package/dist/blocks/blogs/blog-listing-1.d.ts +0 -5
  191. package/dist/blocks/blogs/blog-listing-1.js +0 -12
  192. package/dist/blocks/blogs/blog-listing-1.schema.d.ts +0 -59
  193. package/dist/blocks/blogs/blog-listing-1.schema.js +0 -387
  194. package/dist/blocks/blogs/blog-listing-2.d.ts +0 -5
  195. package/dist/blocks/blogs/blog-listing-2.js +0 -9
  196. package/dist/blocks/blogs/blog-listing-2.schema.d.ts +0 -104
  197. package/dist/blocks/blogs/blog-listing-2.schema.js +0 -572
  198. package/dist/blocks/blogs/blog-post-1.d.ts +0 -6
  199. package/dist/blocks/blogs/blog-post-1.js +0 -8
  200. package/dist/blocks/blogs/blog-post-1.schema.d.ts +0 -48
  201. package/dist/blocks/blogs/blog-post-1.schema.js +0 -358
  202. package/dist/blocks/blogs/blog-post-2.d.ts +0 -6
  203. package/dist/blocks/blogs/blog-post-2.js +0 -8
  204. package/dist/blocks/blogs/blog-post-2.schema.d.ts +0 -74
  205. package/dist/blocks/blogs/blog-post-2.schema.js +0 -779
  206. package/dist/blocks/cards/cards-10.d.ts +0 -6
  207. package/dist/blocks/cards/cards-10.js +0 -4
  208. package/dist/blocks/cards/cards-10.schema.d.ts +0 -44
  209. package/dist/blocks/cards/cards-10.schema.js +0 -405
  210. package/dist/blocks/cards/cards-11.d.ts +0 -6
  211. package/dist/blocks/cards/cards-11.js +0 -4
  212. package/dist/blocks/cards/cards-11.schema.d.ts +0 -58
  213. package/dist/blocks/cards/cards-11.schema.js +0 -406
  214. package/dist/blocks/cards/cards-12.d.ts +0 -6
  215. package/dist/blocks/cards/cards-12.js +0 -4
  216. package/dist/blocks/cards/cards-12.schema.d.ts +0 -38
  217. package/dist/blocks/cards/cards-12.schema.js +0 -545
  218. package/dist/blocks/cards/cards-2.d.ts +0 -5
  219. package/dist/blocks/cards/cards-2.js +0 -4
  220. package/dist/blocks/cards/cards-2.schema.d.ts +0 -46
  221. package/dist/blocks/cards/cards-2.schema.js +0 -260
  222. package/dist/blocks/cards/cards-3.d.ts +0 -6
  223. package/dist/blocks/cards/cards-3.js +0 -5
  224. package/dist/blocks/cards/cards-3.schema.d.ts +0 -36
  225. package/dist/blocks/cards/cards-3.schema.js +0 -351
  226. package/dist/blocks/cards/cards-4.d.ts +0 -6
  227. package/dist/blocks/cards/cards-4.js +0 -4
  228. package/dist/blocks/cards/cards-4.schema.d.ts +0 -40
  229. package/dist/blocks/cards/cards-4.schema.js +0 -648
  230. package/dist/blocks/cards/cards-5.d.ts +0 -5
  231. package/dist/blocks/cards/cards-5.js +0 -4
  232. package/dist/blocks/cards/cards-5.schema.d.ts +0 -48
  233. package/dist/blocks/cards/cards-5.schema.js +0 -238
  234. package/dist/blocks/cards/cards-6.d.ts +0 -5
  235. package/dist/blocks/cards/cards-6.js +0 -45
  236. package/dist/blocks/cards/cards-6.schema.d.ts +0 -50
  237. package/dist/blocks/cards/cards-6.schema.js +0 -608
  238. package/dist/blocks/cards/cards-7.d.ts +0 -5
  239. package/dist/blocks/cards/cards-7.js +0 -45
  240. package/dist/blocks/cards/cards-7.schema.d.ts +0 -87
  241. package/dist/blocks/cards/cards-7.schema.js +0 -1732
  242. package/dist/blocks/cards/cards-8.d.ts +0 -6
  243. package/dist/blocks/cards/cards-8.js +0 -4
  244. package/dist/blocks/cards/cards-8.schema.d.ts +0 -40
  245. package/dist/blocks/cards/cards-8.schema.js +0 -660
  246. package/dist/blocks/cards/cards-9.d.ts +0 -5
  247. package/dist/blocks/cards/cards-9.js +0 -4
  248. package/dist/blocks/cards/cards-9.schema.d.ts +0 -55
  249. package/dist/blocks/cards/cards-9.schema.js +0 -798
  250. package/dist/blocks/carousel/carousel-1.d.ts +0 -5
  251. package/dist/blocks/carousel/carousel-1.js +0 -12
  252. package/dist/blocks/carousel/carousel-1.schema.d.ts +0 -51
  253. package/dist/blocks/carousel/carousel-1.schema.js +0 -236
  254. package/dist/blocks/contact-us/contact-us-1.d.ts +0 -5
  255. package/dist/blocks/contact-us/contact-us-1.js +0 -4
  256. package/dist/blocks/contact-us/contact-us-1.schema.d.ts +0 -31
  257. package/dist/blocks/contact-us/contact-us-1.schema.js +0 -202
  258. package/dist/blocks/contact-us/contact-us-2.d.ts +0 -5
  259. package/dist/blocks/contact-us/contact-us-2.js +0 -4
  260. package/dist/blocks/contact-us/contact-us-2.schema.d.ts +0 -59
  261. package/dist/blocks/contact-us/contact-us-2.schema.js +0 -512
  262. package/dist/blocks/content/content-1.d.ts +0 -6
  263. package/dist/blocks/content/content-1.js +0 -4
  264. package/dist/blocks/content/content-1.schema.d.ts +0 -56
  265. package/dist/blocks/content/content-1.schema.js +0 -807
  266. package/dist/blocks/content/content-2.d.ts +0 -5
  267. package/dist/blocks/content/content-2.js +0 -4
  268. package/dist/blocks/content/content-2.schema.d.ts +0 -78
  269. package/dist/blocks/content/content-2.schema.js +0 -200
  270. package/dist/blocks/content/content-3.d.ts +0 -6
  271. package/dist/blocks/content/content-3.js +0 -5
  272. package/dist/blocks/content/content-3.schema.d.ts +0 -23
  273. package/dist/blocks/content/content-3.schema.js +0 -850
  274. package/dist/blocks/content/content-4.d.ts +0 -6
  275. package/dist/blocks/content/content-4.js +0 -6
  276. package/dist/blocks/content/content-4.schema.d.ts +0 -33
  277. package/dist/blocks/content/content-4.schema.js +0 -252
  278. package/dist/blocks/content/content-5.d.ts +0 -6
  279. package/dist/blocks/content/content-5.js +0 -5
  280. package/dist/blocks/content/content-5.schema.d.ts +0 -37
  281. package/dist/blocks/content/content-5.schema.js +0 -932
  282. package/dist/blocks/content/content-6.d.ts +0 -6
  283. package/dist/blocks/content/content-6.js +0 -5
  284. package/dist/blocks/content/content-6.schema.d.ts +0 -41
  285. package/dist/blocks/content/content-6.schema.js +0 -976
  286. package/dist/blocks/cta/cta-1.d.ts +0 -5
  287. package/dist/blocks/cta/cta-1.js +0 -4
  288. package/dist/blocks/cta/cta-1.schema.d.ts +0 -40
  289. package/dist/blocks/cta/cta-1.schema.js +0 -339
  290. package/dist/blocks/cta/cta-2.d.ts +0 -5
  291. package/dist/blocks/cta/cta-2.js +0 -4
  292. package/dist/blocks/cta/cta-2.schema.d.ts +0 -45
  293. package/dist/blocks/cta/cta-2.schema.js +0 -183
  294. package/dist/blocks/cta/cta-3.d.ts +0 -5
  295. package/dist/blocks/cta/cta-3.js +0 -4
  296. package/dist/blocks/cta/cta-3.schema.d.ts +0 -34
  297. package/dist/blocks/cta/cta-3.schema.js +0 -137
  298. package/dist/blocks/embed/embed-1.d.ts +0 -5
  299. package/dist/blocks/embed/embed-1.js +0 -5
  300. package/dist/blocks/embed/embed-1.schema.d.ts +0 -13
  301. package/dist/blocks/embed/embed-1.schema.js +0 -146
  302. package/dist/blocks/event/event-details.d.ts +0 -5
  303. package/dist/blocks/event/event-details.js +0 -9
  304. package/dist/blocks/event/event-details.schema.d.ts +0 -112
  305. package/dist/blocks/event/event-details.schema.js +0 -685
  306. package/dist/blocks/event/event-listing-2.d.ts +0 -5
  307. package/dist/blocks/event/event-listing-2.js +0 -4
  308. package/dist/blocks/event/event-listing-2.schema.d.ts +0 -84
  309. package/dist/blocks/event/event-listing-2.schema.js +0 -455
  310. package/dist/blocks/event/event-listing-3.d.ts +0 -5
  311. package/dist/blocks/event/event-listing-3.js +0 -10
  312. package/dist/blocks/event/event-listing-3.schema.d.ts +0 -77
  313. package/dist/blocks/event/event-listing-3.schema.js +0 -570
  314. package/dist/blocks/event/event-listing.d.ts +0 -5
  315. package/dist/blocks/event/event-listing.js +0 -10
  316. package/dist/blocks/event/event-listing.schema.d.ts +0 -51
  317. package/dist/blocks/event/event-listing.schema.js +0 -1297
  318. package/dist/blocks/faq/faq-1.d.ts +0 -5
  319. package/dist/blocks/faq/faq-1.js +0 -4
  320. package/dist/blocks/faq/faq-1.schema.d.ts +0 -47
  321. package/dist/blocks/faq/faq-1.schema.js +0 -325
  322. package/dist/blocks/faq/faq-2.d.ts +0 -6
  323. package/dist/blocks/faq/faq-2.js +0 -19
  324. package/dist/blocks/faq/faq-2.schema.d.ts +0 -47
  325. package/dist/blocks/faq/faq-2.schema.js +0 -329
  326. package/dist/blocks/faq/faq-3.d.ts +0 -5
  327. package/dist/blocks/faq/faq-3.js +0 -4
  328. package/dist/blocks/faq/faq-3.schema.d.ts +0 -40
  329. package/dist/blocks/faq/faq-3.schema.js +0 -444
  330. package/dist/blocks/features/features-1/features-1.d.ts +0 -5
  331. package/dist/blocks/features/features-1/features-1.js +0 -4
  332. package/dist/blocks/features/features-1/features-1.schema.d.ts +0 -5
  333. package/dist/blocks/features/features-1/features-1.schema.js +0 -142
  334. package/dist/blocks/features/features-1/variants/default.d.ts +0 -37
  335. package/dist/blocks/features/features-1/variants/default.js +0 -185
  336. package/dist/blocks/features/features-1/variants/index.d.ts +0 -5
  337. package/dist/blocks/features/features-1/variants/stylized-cards-v1.d.ts +0 -3
  338. package/dist/blocks/features/features-1/variants/stylized-cards-v1.js +0 -132
  339. package/dist/blocks/features/features-1/variants/stylized-cards-v2.d.ts +0 -3
  340. package/dist/blocks/features/features-1/variants/stylized-cards-v2.js +0 -484
  341. package/dist/blocks/features/features-2.d.ts +0 -5
  342. package/dist/blocks/features/features-2.js +0 -8
  343. package/dist/blocks/features/features-2.schema.d.ts +0 -41
  344. package/dist/blocks/features/features-2.schema.js +0 -321
  345. package/dist/blocks/features/features-3.d.ts +0 -5
  346. package/dist/blocks/features/features-3.js +0 -4
  347. package/dist/blocks/features/features-3.schema.d.ts +0 -40
  348. package/dist/blocks/features/features-3.schema.js +0 -424
  349. package/dist/blocks/features/features-4.d.ts +0 -5
  350. package/dist/blocks/features/features-4.js +0 -4
  351. package/dist/blocks/features/features-4.schema.d.ts +0 -60
  352. package/dist/blocks/features/features-4.schema.js +0 -594
  353. package/dist/blocks/features/features-5.d.ts +0 -6
  354. package/dist/blocks/features/features-5.js +0 -5
  355. package/dist/blocks/features/features-5.schema.d.ts +0 -28
  356. package/dist/blocks/features/features-5.schema.js +0 -727
  357. package/dist/blocks/features/features-6.d.ts +0 -5
  358. package/dist/blocks/features/features-6.js +0 -31
  359. package/dist/blocks/features/features-6.schema.d.ts +0 -74
  360. package/dist/blocks/features/features-6.schema.js +0 -814
  361. package/dist/blocks/footer/footer-1.d.ts +0 -6
  362. package/dist/blocks/footer/footer-1.js +0 -5
  363. package/dist/blocks/footer/footer-1.schema.d.ts +0 -62
  364. package/dist/blocks/footer/footer-1.schema.js +0 -565
  365. package/dist/blocks/footer/footer-2.d.ts +0 -5
  366. package/dist/blocks/footer/footer-2.js +0 -4
  367. package/dist/blocks/footer/footer-2.schema.d.ts +0 -76
  368. package/dist/blocks/footer/footer-2.schema.js +0 -876
  369. package/dist/blocks/footer/footer-3.d.ts +0 -6
  370. package/dist/blocks/footer/footer-3.js +0 -15
  371. package/dist/blocks/footer/footer-3.schema.d.ts +0 -48
  372. package/dist/blocks/footer/footer-3.schema.js +0 -475
  373. package/dist/blocks/footer/footer-4.d.ts +0 -6
  374. package/dist/blocks/footer/footer-4.js +0 -5
  375. package/dist/blocks/footer/footer-4.schema.d.ts +0 -71
  376. package/dist/blocks/footer/footer-4.schema.js +0 -620
  377. package/dist/blocks/footer/footer-5.d.ts +0 -6
  378. package/dist/blocks/footer/footer-5.js +0 -5
  379. package/dist/blocks/footer/footer-5.schema.d.ts +0 -52
  380. package/dist/blocks/footer/footer-5.schema.js +0 -400
  381. package/dist/blocks/hero/hero-1.d.ts +0 -5
  382. package/dist/blocks/hero/hero-1.js +0 -4
  383. package/dist/blocks/hero/hero-1.schema.d.ts +0 -35
  384. package/dist/blocks/hero/hero-1.schema.js +0 -742
  385. package/dist/blocks/hero/hero-2.d.ts +0 -5
  386. package/dist/blocks/hero/hero-2.js +0 -4
  387. package/dist/blocks/hero/hero-2.schema.d.ts +0 -46
  388. package/dist/blocks/hero/hero-2.schema.js +0 -282
  389. package/dist/blocks/hero/hero-3.d.ts +0 -5
  390. package/dist/blocks/hero/hero-3.js +0 -4
  391. package/dist/blocks/hero/hero-3.schema.d.ts +0 -54
  392. package/dist/blocks/hero/hero-3.schema.js +0 -378
  393. package/dist/blocks/hero/hero-4.d.ts +0 -5
  394. package/dist/blocks/hero/hero-4.js +0 -30
  395. package/dist/blocks/hero/hero-4.schema.d.ts +0 -33
  396. package/dist/blocks/hero/hero-4.schema.js +0 -316
  397. package/dist/blocks/hero/hero-5.d.ts +0 -5
  398. package/dist/blocks/hero/hero-5.js +0 -30
  399. package/dist/blocks/hero/hero-5.schema.d.ts +0 -32
  400. package/dist/blocks/hero/hero-5.schema.js +0 -183
  401. package/dist/blocks/hero/hero-6.d.ts +0 -5
  402. package/dist/blocks/hero/hero-6.js +0 -8
  403. package/dist/blocks/hero/hero-6.schema.d.ts +0 -36
  404. package/dist/blocks/hero/hero-6.schema.js +0 -617
  405. package/dist/blocks/hero/hero-7.d.ts +0 -5
  406. package/dist/blocks/hero/hero-7.js +0 -40
  407. package/dist/blocks/hero/hero-7.schema.d.ts +0 -12
  408. package/dist/blocks/hero/hero-7.schema.js +0 -471
  409. package/dist/blocks/hero/hero-8.d.ts +0 -5
  410. package/dist/blocks/hero/hero-8.js +0 -39
  411. package/dist/blocks/hero/hero-8.schema.d.ts +0 -17
  412. package/dist/blocks/hero/hero-8.schema.js +0 -343
  413. package/dist/blocks/hero/hero-9.d.ts +0 -6
  414. package/dist/blocks/hero/hero-9.js +0 -4
  415. package/dist/blocks/hero/hero-9.schema.d.ts +0 -39
  416. package/dist/blocks/hero/hero-9.schema.js +0 -355
  417. package/dist/blocks/index.d.ts +0 -3
  418. package/dist/blocks/index.js +0 -74
  419. package/dist/blocks/logos/logos-1.d.ts +0 -5
  420. package/dist/blocks/logos/logos-1.js +0 -10
  421. package/dist/blocks/logos/logos-1.schema.d.ts +0 -34
  422. package/dist/blocks/logos/logos-1.schema.js +0 -239
  423. package/dist/blocks/navbar/navbar-1.d.ts +0 -6
  424. package/dist/blocks/navbar/navbar-1.js +0 -100
  425. package/dist/blocks/navbar/navbar-1.schema.d.ts +0 -117
  426. package/dist/blocks/navbar/navbar-1.schema.js +0 -938
  427. package/dist/blocks/navbar/navbar-2.d.ts +0 -6
  428. package/dist/blocks/navbar/navbar-2.js +0 -99
  429. package/dist/blocks/navbar/navbar-2.schema.d.ts +0 -134
  430. package/dist/blocks/navbar/navbar-2.schema.js +0 -1200
  431. package/dist/blocks/pricing/pricing-1.d.ts +0 -5
  432. package/dist/blocks/pricing/pricing-1.js +0 -4
  433. package/dist/blocks/pricing/pricing-1.schema.d.ts +0 -87
  434. package/dist/blocks/pricing/pricing-1.schema.js +0 -976
  435. package/dist/blocks/products/products-listing-1.d.ts +0 -5
  436. package/dist/blocks/products/products-listing-1.js +0 -4
  437. package/dist/blocks/products/products-listing-1.schema.d.ts +0 -36
  438. package/dist/blocks/products/products-listing-1.schema.js +0 -264
  439. package/dist/blocks/stats/stats-1.d.ts +0 -6
  440. package/dist/blocks/stats/stats-1.js +0 -6
  441. package/dist/blocks/stats/stats-1.schema.d.ts +0 -25
  442. package/dist/blocks/stats/stats-1.schema.js +0 -213
  443. package/dist/blocks/stats/stats-2.d.ts +0 -6
  444. package/dist/blocks/stats/stats-2.js +0 -6
  445. package/dist/blocks/stats/stats-2.schema.d.ts +0 -5
  446. package/dist/blocks/stats/stats-2.schema.js +0 -104
  447. package/dist/blocks/stats/variants/default.d.ts +0 -22
  448. package/dist/blocks/stats/variants/default.js +0 -185
  449. package/dist/blocks/stats/variants/hero.d.ts +0 -3
  450. package/dist/blocks/stats/variants/hero.js +0 -151
  451. package/dist/blocks/stats/variants/index.d.ts +0 -4
  452. package/dist/blocks/team/team-1.d.ts +0 -6
  453. package/dist/blocks/team/team-1.js +0 -6
  454. package/dist/blocks/team/team-1.schema.d.ts +0 -65
  455. package/dist/blocks/team/team-1.schema.js +0 -476
  456. package/dist/blocks/team/team-2.d.ts +0 -6
  457. package/dist/blocks/team/team-2.js +0 -6
  458. package/dist/blocks/team/team-2.schema.d.ts +0 -52
  459. package/dist/blocks/team/team-2.schema.js +0 -2732
  460. package/dist/blocks/team/team-3.d.ts +0 -5
  461. package/dist/blocks/team/team-3.js +0 -30
  462. package/dist/blocks/team/team-3.schema.d.ts +0 -32
  463. package/dist/blocks/team/team-3.schema.js +0 -679
  464. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.d.ts +0 -6
  465. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.js +0 -4
  466. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.schema.d.ts +0 -14
  467. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.schema.js +0 -154
  468. package/dist/blocks/testimonial/testimonial-1.d.ts +0 -5
  469. package/dist/blocks/testimonial/testimonial-1.js +0 -10
  470. package/dist/blocks/testimonial/testimonial-1.schema.d.ts +0 -16
  471. package/dist/blocks/testimonial/testimonial-1.schema.js +0 -314
  472. package/dist/blocks/testimonial/testimonial-2.d.ts +0 -5
  473. package/dist/blocks/testimonial/testimonial-2.js +0 -42
  474. package/dist/blocks/testimonial/testimonial-2.schema.d.ts +0 -54
  475. package/dist/blocks/testimonial/testimonial-2.schema.js +0 -771
  476. package/dist/blocks/testimonial/testimonial-3.d.ts +0 -5
  477. package/dist/blocks/testimonial/testimonial-3.js +0 -38
  478. package/dist/blocks/testimonial/testimonial-3.schema.d.ts +0 -56
  479. package/dist/blocks/testimonial/testimonial-3.schema.js +0 -260
  480. package/dist/blocks/testimonial/testimonial-4.d.ts +0 -5
  481. package/dist/blocks/testimonial/testimonial-4.js +0 -51
  482. package/dist/blocks/testimonial/testimonial-4.schema.d.ts +0 -145
  483. package/dist/blocks/testimonial/testimonial-4.schema.js +0 -3214
  484. package/dist/blocks/testimonial/testimonial-5.d.ts +0 -5
  485. package/dist/blocks/testimonial/testimonial-5.js +0 -31
  486. package/dist/blocks/testimonial/testimonial-5.schema.d.ts +0 -33
  487. package/dist/blocks/testimonial/testimonial-5.schema.js +0 -401
  488. package/dist/blocks/testimonial/testimonial-6.d.ts +0 -5
  489. package/dist/blocks/testimonial/testimonial-6.js +0 -39
  490. package/dist/blocks/testimonial/testimonial-6.schema.d.ts +0 -60
  491. package/dist/blocks/testimonial/testimonial-6.schema.js +0 -695
  492. package/dist/blocks.d.ts +0 -3
  493. package/dist/blocks.js +0 -74
  494. package/dist/index.d.ts +0 -6
  495. package/dist/schemas/blocks.d.ts +0 -3
  496. package/dist/schemas/categories.d.ts +0 -3
  497. package/dist/schemas/categories.js +0 -129
  498. package/dist/schemas/index.d.ts +0 -3
  499. package/dist/schemas.d.ts +0 -3
  500. package/dist/schemas.js +0 -2
  501. /package/{dist/schemas/index.js → src/schemas/index.ts} +0 -0
@@ -0,0 +1,2139 @@
1
+ import type { IBlock } from "@levo-so/studio";
2
+
3
+ const DUMMY_IMAGE = {
4
+ kind: "icon",
5
+ data: {
6
+ id: "archive-minus",
7
+ label: "Archive Minus",
8
+ tags: ["archive", "custom", "directional", "minus"],
9
+ svgCode:
10
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M14.5 11.4H9.5C9.09 11.4 8.75 11.06 8.75 10.65C8.75 10.24 9.09 9.90002 9.5 9.90002H14.5C14.91 9.90002 15.25 10.24 15.25 10.65C15.25 11.06 14.91 11.4 14.5 11.4Z" fill="var(--color-icon-primary)"/>\n<path d="M4.92957 22.75C4.50957 22.75 4.11957 22.65 3.76957 22.45C2.99957 22 2.55957 21.09 2.55957 19.96V5.86C2.55957 3.32 4.62957 1.25 7.16957 1.25H16.8196C19.3596 1.25 21.4296 3.32 21.4296 5.86V19.95C21.4296 21.08 20.9896 21.99 20.2196 22.44C19.4496 22.89 18.4396 22.84 17.4496 22.29L12.5696 19.58C12.2796 19.42 11.7096 19.42 11.4196 19.58L6.53957 22.29C5.99957 22.59 5.44957 22.75 4.92957 22.75ZM7.17957 2.75C5.46957 2.75 4.06957 4.15 4.06957 5.86V19.95C4.06957 20.54 4.23957 20.98 4.53957 21.15C4.83957 21.33 5.30957 21.27 5.81957 20.98L10.6996 18.27C11.4396 17.86 12.5596 17.86 13.2996 18.27L18.1796 20.98C18.6896 21.27 19.1596 21.33 19.4596 21.15C19.7596 20.97 19.9296 20.53 19.9296 19.95V5.86C19.9296 4.15 18.5296 2.75 16.8196 2.75H7.17957Z" fill="var(--color-icon-primary)"/>\n</svg>',
11
+ },
12
+ };
13
+
14
+ const DEFAULT_CONTENT = {
15
+ layout: null,
16
+ container: null,
17
+ header: null,
18
+ title: "Explore Our Program",
19
+ "carousel-navigation-container": null,
20
+ "carousel-navigation": null,
21
+ "carousel-navigation-arrow-left": " ",
22
+ "carousel-navigation-arrow-right": " ",
23
+ cards: [
24
+ {
25
+ card: null,
26
+ header: null,
27
+ icon: DUMMY_IMAGE,
28
+ content: null,
29
+ card_title: "Cardio",
30
+ description:
31
+ "This class introduces the fundamental principles of Pilates, focusing on controlled movement...",
32
+ cta: "Explore More",
33
+ },
34
+ {
35
+ card: null,
36
+ header: null,
37
+ icon: DUMMY_IMAGE,
38
+ content: null,
39
+ card_title: "Fat Burn",
40
+ description:
41
+ "This class introduces the fundamental principles of Pilates, focusing on controlled movement...",
42
+ cta: "Explore More",
43
+ },
44
+ {
45
+ card: null,
46
+ header: null,
47
+ icon: DUMMY_IMAGE,
48
+ content: null,
49
+ card_title: "Muscle Gain",
50
+ description:
51
+ "This class introduces the fundamental principles of Pilates, focusing on controlled movement...",
52
+ cta: "Explore More",
53
+ },
54
+ {
55
+ card: null,
56
+ header: null,
57
+ icon: DUMMY_IMAGE,
58
+ content: null,
59
+ card_title: "Weight Gain",
60
+ description:
61
+ "This class introduces the fundamental principles of Pilates, focusing on controlled movement...",
62
+ cta: "Explore More",
63
+ },
64
+ ],
65
+ "carousel-navigation-arrow-left_leftIcon": {
66
+ kind: "icon",
67
+ data: {
68
+ id: "arrow-left",
69
+ label: "Arrow Left",
70
+ tags: ["arrow", "custom", "directional", "left"],
71
+ svgCode:
72
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M9.57043 18.82C9.38043 18.82 9.19043 18.75 9.04043 18.6L2.97043 12.53C2.68043 12.24 2.68043 11.76 2.97043 11.47L9.04043 5.4C9.33043 5.11 9.81043 5.11 10.1004 5.4C10.3904 5.69 10.3904 6.17 10.1004 6.46L4.56043 12L10.1004 17.54C10.3904 17.83 10.3904 18.31 10.1004 18.6C9.96043 18.75 9.76043 18.82 9.57043 18.82Z" fill="currentColor"/>\n<path d="M20.4999 12.75H3.66992C3.25992 12.75 2.91992 12.41 2.91992 12C2.91992 11.59 3.25992 11.25 3.66992 11.25H20.4999C20.9099 11.25 21.2499 11.59 21.2499 12C21.2499 12.41 20.9099 12.75 20.4999 12.75Z" fill="currentColor"/>\n</svg>',
73
+ },
74
+ },
75
+ "carousel-navigation-arrow-right_rightIcon": {
76
+ kind: "icon",
77
+ data: {
78
+ id: "arrow-right-1",
79
+ label: "Arrow Right 1",
80
+ tags: ["arrow", "custom", "directional", "right"],
81
+ svgCode:
82
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M14.4301 18.82C14.2401 18.82 14.0501 18.75 13.9001 18.6C13.6101 18.31 13.6101 17.83 13.9001 17.54L19.4401 12L13.9001 6.46C13.6101 6.17 13.6101 5.69 13.9001 5.4C14.1901 5.11 14.6701 5.11 14.9601 5.4L21.0301 11.47C21.3201 11.76 21.3201 12.24 21.0301 12.53L14.9601 18.6C14.8101 18.75 14.6201 18.82 14.4301 18.82Z" fill="currentColor"/>\n<path d="M20.33 12.75H3.5C3.09 12.75 2.75 12.41 2.75 12C2.75 11.59 3.09 11.25 3.5 11.25H20.33C20.74 11.25 21.08 11.59 21.08 12C21.08 12.41 20.74 12.75 20.33 12.75Z" fill="currentColor"/>\n</svg>',
83
+ },
84
+ },
85
+ };
86
+
87
+ const DEFAULT_CONTENT_VARIANT_1 = {
88
+ layout: null,
89
+ container: null,
90
+ header: null,
91
+ title: "Explore Our Program",
92
+ "carousel-navigation-container": null,
93
+ "carousel-navigation": null,
94
+ "carousel-navigation-arrow-left": " ",
95
+ "carousel-navigation-arrow-right": " ",
96
+ cards: [
97
+ {
98
+ card: null,
99
+ header: null,
100
+ icon: {
101
+ kind: "icon",
102
+ data: {
103
+ id: "archive-minus",
104
+ label: "Archive Minus",
105
+ tags: ["archive", "custom", "directional", "minus"],
106
+ svgCode:
107
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M14.5 11.4H9.5C9.09 11.4 8.75 11.06 8.75 10.65C8.75 10.24 9.09 9.90002 9.5 9.90002H14.5C14.91 9.90002 15.25 10.24 15.25 10.65C15.25 11.06 14.91 11.4 14.5 11.4Z" fill="var(--color-icon-primary)"/>\n<path d="M4.92957 22.75C4.50957 22.75 4.11957 22.65 3.76957 22.45C2.99957 22 2.55957 21.09 2.55957 19.96V5.86C2.55957 3.32 4.62957 1.25 7.16957 1.25H16.8196C19.3596 1.25 21.4296 3.32 21.4296 5.86V19.95C21.4296 21.08 20.9896 21.99 20.2196 22.44C19.4496 22.89 18.4396 22.84 17.4496 22.29L12.5696 19.58C12.2796 19.42 11.7096 19.42 11.4196 19.58L6.53957 22.29C5.99957 22.59 5.44957 22.75 4.92957 22.75ZM7.17957 2.75C5.46957 2.75 4.06957 4.15 4.06957 5.86V19.95C4.06957 20.54 4.23957 20.98 4.53957 21.15C4.83957 21.33 5.30957 21.27 5.81957 20.98L10.6996 18.27C11.4396 17.86 12.5596 17.86 13.2996 18.27L18.1796 20.98C18.6896 21.27 19.1596 21.33 19.4596 21.15C19.7596 20.97 19.9296 20.53 19.9296 19.95V5.86C19.9296 4.15 18.5296 2.75 16.8196 2.75H7.17957Z" fill="var(--color-icon-primary)"/>\n</svg>',
108
+ },
109
+ },
110
+ content: null,
111
+ card_title: "Cardio",
112
+ description: "<p>Early Childhood Education</p>",
113
+ cta: " ",
114
+ cta_rightIcon: {
115
+ kind: "icon",
116
+ data: {
117
+ id: "arrow-right-1",
118
+ label: "Arrow Right 1",
119
+ tags: ["arrow", "custom", "directional", "right"],
120
+ svgCode:
121
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M14.4301 18.82C14.2401 18.82 14.0501 18.75 13.9001 18.6C13.6101 18.31 13.6101 17.83 13.9001 17.54L19.4401 12L13.9001 6.46C13.6101 6.17 13.6101 5.69 13.9001 5.4C14.1901 5.11 14.6701 5.11 14.9601 5.4L21.0301 11.47C21.3201 11.76 21.3201 12.24 21.0301 12.53L14.9601 18.6C14.8101 18.75 14.6201 18.82 14.4301 18.82Z" fill="currentColor"/>\n<path d="M20.33 12.75H3.5C3.09 12.75 2.75 12.41 2.75 12C2.75 11.59 3.09 11.25 3.5 11.25H20.33C20.74 11.25 21.08 11.59 21.08 12C21.08 12.41 20.74 12.75 20.33 12.75Z" fill="currentColor"/>\n</svg>',
122
+ },
123
+ },
124
+ },
125
+ {
126
+ card: null,
127
+ header: null,
128
+ icon: {
129
+ kind: "icon",
130
+ data: {
131
+ id: "archive-minus",
132
+ label: "Archive Minus",
133
+ tags: ["archive", "custom", "directional", "minus"],
134
+ svgCode:
135
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M14.5 11.4H9.5C9.09 11.4 8.75 11.06 8.75 10.65C8.75 10.24 9.09 9.90002 9.5 9.90002H14.5C14.91 9.90002 15.25 10.24 15.25 10.65C15.25 11.06 14.91 11.4 14.5 11.4Z" fill="var(--color-icon-primary)"/>\n<path d="M4.92957 22.75C4.50957 22.75 4.11957 22.65 3.76957 22.45C2.99957 22 2.55957 21.09 2.55957 19.96V5.86C2.55957 3.32 4.62957 1.25 7.16957 1.25H16.8196C19.3596 1.25 21.4296 3.32 21.4296 5.86V19.95C21.4296 21.08 20.9896 21.99 20.2196 22.44C19.4496 22.89 18.4396 22.84 17.4496 22.29L12.5696 19.58C12.2796 19.42 11.7096 19.42 11.4196 19.58L6.53957 22.29C5.99957 22.59 5.44957 22.75 4.92957 22.75ZM7.17957 2.75C5.46957 2.75 4.06957 4.15 4.06957 5.86V19.95C4.06957 20.54 4.23957 20.98 4.53957 21.15C4.83957 21.33 5.30957 21.27 5.81957 20.98L10.6996 18.27C11.4396 17.86 12.5596 17.86 13.2996 18.27L18.1796 20.98C18.6896 21.27 19.1596 21.33 19.4596 21.15C19.7596 20.97 19.9296 20.53 19.9296 19.95V5.86C19.9296 4.15 18.5296 2.75 16.8196 2.75H7.17957Z" fill="var(--color-icon-primary)"/>\n</svg>',
136
+ },
137
+ },
138
+ content: null,
139
+ card_title: "Cardio",
140
+ description: "<p>Early Childhood Education</p>",
141
+ cta: " ",
142
+ cta_rightIcon: {
143
+ kind: "icon",
144
+ data: {
145
+ id: "arrow-right-1",
146
+ label: "Arrow Right 1",
147
+ tags: ["arrow", "custom", "directional", "right"],
148
+ svgCode:
149
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M14.4301 18.82C14.2401 18.82 14.0501 18.75 13.9001 18.6C13.6101 18.31 13.6101 17.83 13.9001 17.54L19.4401 12L13.9001 6.46C13.6101 6.17 13.6101 5.69 13.9001 5.4C14.1901 5.11 14.6701 5.11 14.9601 5.4L21.0301 11.47C21.3201 11.76 21.3201 12.24 21.0301 12.53L14.9601 18.6C14.8101 18.75 14.6201 18.82 14.4301 18.82Z" fill="currentColor"/>\n<path d="M20.33 12.75H3.5C3.09 12.75 2.75 12.41 2.75 12C2.75 11.59 3.09 11.25 3.5 11.25H20.33C20.74 11.25 21.08 11.59 21.08 12C21.08 12.41 20.74 12.75 20.33 12.75Z" fill="currentColor"/>\n</svg>',
150
+ },
151
+ },
152
+ },
153
+ {
154
+ card: null,
155
+ header: null,
156
+ icon: {
157
+ kind: "icon",
158
+ data: {
159
+ id: "archive-minus",
160
+ label: "Archive Minus",
161
+ tags: ["archive", "custom", "directional", "minus"],
162
+ svgCode:
163
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M14.5 11.4H9.5C9.09 11.4 8.75 11.06 8.75 10.65C8.75 10.24 9.09 9.90002 9.5 9.90002H14.5C14.91 9.90002 15.25 10.24 15.25 10.65C15.25 11.06 14.91 11.4 14.5 11.4Z" fill="var(--color-icon-primary)"/>\n<path d="M4.92957 22.75C4.50957 22.75 4.11957 22.65 3.76957 22.45C2.99957 22 2.55957 21.09 2.55957 19.96V5.86C2.55957 3.32 4.62957 1.25 7.16957 1.25H16.8196C19.3596 1.25 21.4296 3.32 21.4296 5.86V19.95C21.4296 21.08 20.9896 21.99 20.2196 22.44C19.4496 22.89 18.4396 22.84 17.4496 22.29L12.5696 19.58C12.2796 19.42 11.7096 19.42 11.4196 19.58L6.53957 22.29C5.99957 22.59 5.44957 22.75 4.92957 22.75ZM7.17957 2.75C5.46957 2.75 4.06957 4.15 4.06957 5.86V19.95C4.06957 20.54 4.23957 20.98 4.53957 21.15C4.83957 21.33 5.30957 21.27 5.81957 20.98L10.6996 18.27C11.4396 17.86 12.5596 17.86 13.2996 18.27L18.1796 20.98C18.6896 21.27 19.1596 21.33 19.4596 21.15C19.7596 20.97 19.9296 20.53 19.9296 19.95V5.86C19.9296 4.15 18.5296 2.75 16.8196 2.75H7.17957Z" fill="var(--color-icon-primary)"/>\n</svg>',
164
+ },
165
+ },
166
+ content: null,
167
+ card_title: "Cardio",
168
+ description: "<p>Early Childhood Education</p>",
169
+ cta: " ",
170
+ cta_rightIcon: {
171
+ kind: "icon",
172
+ data: {
173
+ id: "arrow-right-1",
174
+ label: "Arrow Right 1",
175
+ tags: ["arrow", "custom", "directional", "right"],
176
+ svgCode:
177
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M14.4301 18.82C14.2401 18.82 14.0501 18.75 13.9001 18.6C13.6101 18.31 13.6101 17.83 13.9001 17.54L19.4401 12L13.9001 6.46C13.6101 6.17 13.6101 5.69 13.9001 5.4C14.1901 5.11 14.6701 5.11 14.9601 5.4L21.0301 11.47C21.3201 11.76 21.3201 12.24 21.0301 12.53L14.9601 18.6C14.8101 18.75 14.6201 18.82 14.4301 18.82Z" fill="currentColor"/>\n<path d="M20.33 12.75H3.5C3.09 12.75 2.75 12.41 2.75 12C2.75 11.59 3.09 11.25 3.5 11.25H20.33C20.74 11.25 21.08 11.59 21.08 12C21.08 12.41 20.74 12.75 20.33 12.75Z" fill="currentColor"/>\n</svg>',
178
+ },
179
+ },
180
+ },
181
+ {
182
+ card: null,
183
+ header: null,
184
+ icon: {
185
+ kind: "icon",
186
+ data: {
187
+ id: "archive-minus",
188
+ label: "Archive Minus",
189
+ tags: ["archive", "custom", "directional", "minus"],
190
+ svgCode:
191
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M14.5 11.4H9.5C9.09 11.4 8.75 11.06 8.75 10.65C8.75 10.24 9.09 9.90002 9.5 9.90002H14.5C14.91 9.90002 15.25 10.24 15.25 10.65C15.25 11.06 14.91 11.4 14.5 11.4Z" fill="var(--color-icon-primary)"/>\n<path d="M4.92957 22.75C4.50957 22.75 4.11957 22.65 3.76957 22.45C2.99957 22 2.55957 21.09 2.55957 19.96V5.86C2.55957 3.32 4.62957 1.25 7.16957 1.25H16.8196C19.3596 1.25 21.4296 3.32 21.4296 5.86V19.95C21.4296 21.08 20.9896 21.99 20.2196 22.44C19.4496 22.89 18.4396 22.84 17.4496 22.29L12.5696 19.58C12.2796 19.42 11.7096 19.42 11.4196 19.58L6.53957 22.29C5.99957 22.59 5.44957 22.75 4.92957 22.75ZM7.17957 2.75C5.46957 2.75 4.06957 4.15 4.06957 5.86V19.95C4.06957 20.54 4.23957 20.98 4.53957 21.15C4.83957 21.33 5.30957 21.27 5.81957 20.98L10.6996 18.27C11.4396 17.86 12.5596 17.86 13.2996 18.27L18.1796 20.98C18.6896 21.27 19.1596 21.33 19.4596 21.15C19.7596 20.97 19.9296 20.53 19.9296 19.95V5.86C19.9296 4.15 18.5296 2.75 16.8196 2.75H7.17957Z" fill="var(--color-icon-primary)"/>\n</svg>',
192
+ },
193
+ },
194
+ content: null,
195
+ card_title: "Cardio",
196
+ description: "<p>Early Childhood Education</p>",
197
+ cta: " ",
198
+ cta_rightIcon: {
199
+ kind: "icon",
200
+ data: {
201
+ id: "arrow-right-1",
202
+ label: "Arrow Right 1",
203
+ tags: ["arrow", "custom", "directional", "right"],
204
+ svgCode:
205
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M14.4301 18.82C14.2401 18.82 14.0501 18.75 13.9001 18.6C13.6101 18.31 13.6101 17.83 13.9001 17.54L19.4401 12L13.9001 6.46C13.6101 6.17 13.6101 5.69 13.9001 5.4C14.1901 5.11 14.6701 5.11 14.9601 5.4L21.0301 11.47C21.3201 11.76 21.3201 12.24 21.0301 12.53L14.9601 18.6C14.8101 18.75 14.6201 18.82 14.4301 18.82Z" fill="currentColor"/>\n<path d="M20.33 12.75H3.5C3.09 12.75 2.75 12.41 2.75 12C2.75 11.59 3.09 11.25 3.5 11.25H20.33C20.74 11.25 21.08 11.59 21.08 12C21.08 12.41 20.74 12.75 20.33 12.75Z" fill="currentColor"/>\n</svg>',
206
+ },
207
+ },
208
+ },
209
+ {
210
+ card: null,
211
+ header: null,
212
+ icon: {
213
+ kind: "icon",
214
+ data: {
215
+ id: "archive-minus",
216
+ label: "Archive Minus",
217
+ tags: ["archive", "custom", "directional", "minus"],
218
+ svgCode:
219
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M14.5 11.4H9.5C9.09 11.4 8.75 11.06 8.75 10.65C8.75 10.24 9.09 9.90002 9.5 9.90002H14.5C14.91 9.90002 15.25 10.24 15.25 10.65C15.25 11.06 14.91 11.4 14.5 11.4Z" fill="var(--color-icon-primary)"/>\n<path d="M4.92957 22.75C4.50957 22.75 4.11957 22.65 3.76957 22.45C2.99957 22 2.55957 21.09 2.55957 19.96V5.86C2.55957 3.32 4.62957 1.25 7.16957 1.25H16.8196C19.3596 1.25 21.4296 3.32 21.4296 5.86V19.95C21.4296 21.08 20.9896 21.99 20.2196 22.44C19.4496 22.89 18.4396 22.84 17.4496 22.29L12.5696 19.58C12.2796 19.42 11.7096 19.42 11.4196 19.58L6.53957 22.29C5.99957 22.59 5.44957 22.75 4.92957 22.75ZM7.17957 2.75C5.46957 2.75 4.06957 4.15 4.06957 5.86V19.95C4.06957 20.54 4.23957 20.98 4.53957 21.15C4.83957 21.33 5.30957 21.27 5.81957 20.98L10.6996 18.27C11.4396 17.86 12.5596 17.86 13.2996 18.27L18.1796 20.98C18.6896 21.27 19.1596 21.33 19.4596 21.15C19.7596 20.97 19.9296 20.53 19.9296 19.95V5.86C19.9296 4.15 18.5296 2.75 16.8196 2.75H7.17957Z" fill="var(--color-icon-primary)"/>\n</svg>',
220
+ },
221
+ },
222
+ content: null,
223
+ card_title: "Cardio",
224
+ description: "<p>Early Childhood Education</p>",
225
+ cta: " ",
226
+ cta_rightIcon: {
227
+ kind: "icon",
228
+ data: {
229
+ id: "arrow-right-1",
230
+ label: "Arrow Right 1",
231
+ tags: ["arrow", "custom", "directional", "right"],
232
+ svgCode:
233
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M14.4301 18.82C14.2401 18.82 14.0501 18.75 13.9001 18.6C13.6101 18.31 13.6101 17.83 13.9001 17.54L19.4401 12L13.9001 6.46C13.6101 6.17 13.6101 5.69 13.9001 5.4C14.1901 5.11 14.6701 5.11 14.9601 5.4L21.0301 11.47C21.3201 11.76 21.3201 12.24 21.0301 12.53L14.9601 18.6C14.8101 18.75 14.6201 18.82 14.4301 18.82Z" fill="currentColor"/>\n<path d="M20.33 12.75H3.5C3.09 12.75 2.75 12.41 2.75 12C2.75 11.59 3.09 11.25 3.5 11.25H20.33C20.74 11.25 21.08 11.59 21.08 12C21.08 12.41 20.74 12.75 20.33 12.75Z" fill="currentColor"/>\n</svg>',
234
+ },
235
+ },
236
+ },
237
+ ],
238
+ "carousel-navigation-arrow-left_leftIcon": {
239
+ kind: "icon",
240
+ data: {
241
+ id: "arrow-left",
242
+ label: "Arrow Left",
243
+ tags: ["arrow", "custom", "directional", "left"],
244
+ svgCode:
245
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M9.57043 18.82C9.38043 18.82 9.19043 18.75 9.04043 18.6L2.97043 12.53C2.68043 12.24 2.68043 11.76 2.97043 11.47L9.04043 5.4C9.33043 5.11 9.81043 5.11 10.1004 5.4C10.3904 5.69 10.3904 6.17 10.1004 6.46L4.56043 12L10.1004 17.54C10.3904 17.83 10.3904 18.31 10.1004 18.6C9.96043 18.75 9.76043 18.82 9.57043 18.82Z" fill="currentColor"/>\n<path d="M20.4999 12.75H3.66992C3.25992 12.75 2.91992 12.41 2.91992 12C2.91992 11.59 3.25992 11.25 3.66992 11.25H20.4999C20.9099 11.25 21.2499 11.59 21.2499 12C21.2499 12.41 20.9099 12.75 20.4999 12.75Z" fill="currentColor"/>\n</svg>',
246
+ },
247
+ },
248
+ "carousel-navigation-arrow-right_rightIcon": {
249
+ kind: "icon",
250
+ data: {
251
+ id: "arrow-right-1",
252
+ label: "Arrow Right 1",
253
+ tags: ["arrow", "custom", "directional", "right"],
254
+ svgCode:
255
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M14.4301 18.82C14.2401 18.82 14.0501 18.75 13.9001 18.6C13.6101 18.31 13.6101 17.83 13.9001 17.54L19.4401 12L13.9001 6.46C13.6101 6.17 13.6101 5.69 13.9001 5.4C14.1901 5.11 14.6701 5.11 14.9601 5.4L21.0301 11.47C21.3201 11.76 21.3201 12.24 21.0301 12.53L14.9601 18.6C14.8101 18.75 14.6201 18.82 14.4301 18.82Z" fill="currentColor"/>\n<path d="M20.33 12.75H3.5C3.09 12.75 2.75 12.41 2.75 12C2.75 11.59 3.09 11.25 3.5 11.25H20.33C20.74 11.25 21.08 11.59 21.08 12C21.08 12.41 20.74 12.75 20.33 12.75Z" fill="currentColor"/>\n</svg>',
256
+ },
257
+ },
258
+ };
259
+
260
+ export type ICards6Content = typeof DEFAULT_CONTENT;
261
+
262
+ export const Cards6: IBlock = {
263
+ category_id: "cards",
264
+ title: "Cards 6",
265
+ key: "cards-6",
266
+ version: "v1",
267
+ prompt_description:
268
+ "A carousel of program cards with icons, titles, descriptions, and CTA buttons, featuring navigation arrows for browsing through different program options.",
269
+ content_schema: [
270
+ {
271
+ key: "layout",
272
+ label: "Layout",
273
+ field_interface: "LayoutWidget",
274
+ hint: {
275
+ prompt_description:
276
+ "Main layout container for the cards carousel section with proper spacing and alignment.",
277
+ },
278
+ },
279
+ {
280
+ key: "container",
281
+ label: "Container",
282
+ field_interface: "ContainerWidget",
283
+ hint: {
284
+ prompt_description:
285
+ "Container wrapper that centers the content and provides consistent padding across devices.",
286
+ },
287
+ },
288
+ {
289
+ key: "header",
290
+ label: "Header",
291
+ field_interface: "BoxWidget",
292
+ hint: {
293
+ prompt_description:
294
+ "Header section containing the main title and navigation controls, positioned above the carousel.",
295
+ },
296
+ },
297
+ {
298
+ key: "title",
299
+ label: "Title",
300
+ field_interface: "HeadingWidget",
301
+ hint: {
302
+ prompt_description:
303
+ "Main heading for the cards section. Should be engaging and describe the program offerings clearly.",
304
+ min_characters: 12,
305
+ max_characters: 35,
306
+ },
307
+ },
308
+ {
309
+ key: "carousel-navigation-container",
310
+ label: "Carousel Navigation Container",
311
+ field_interface: "BoxWidget",
312
+ hint: {
313
+ prompt_description:
314
+ "Container for the navigation arrows, positioned on the right side of the header.",
315
+ },
316
+ },
317
+ {
318
+ key: "carousel-navigation-container-mobile",
319
+ label: "Carousel Navigation Container Mobile",
320
+ field_interface: "BoxWidget",
321
+ hint: {
322
+ prompt_description:
323
+ "Container for the navigation arrows for mobile view, positioned below the cards.",
324
+ },
325
+ },
326
+ {
327
+ key: "carousel-navigation",
328
+ label: "Carousel Navigation",
329
+ field_interface: "BoxWidget",
330
+ hint: {
331
+ prompt_description:
332
+ "Navigation controls wrapper containing the left and right arrow buttons for carousel control.",
333
+ },
334
+ },
335
+ {
336
+ key: "carousel-navigation-arrow-left",
337
+ label: "Carousel Navigation Arrow Left",
338
+ field_interface: "ButtonWidget",
339
+ hint: {
340
+ prompt_description:
341
+ "Left navigation arrow button to navigate to previous cards in the carousel.",
342
+ },
343
+ },
344
+ {
345
+ key: "carousel-navigation-arrow-right",
346
+ label: "Carousel Navigation Arrow Right",
347
+ field_interface: "ButtonWidget",
348
+ hint: {
349
+ prompt_description:
350
+ "Right navigation arrow button to navigate to next cards in the carousel.",
351
+ },
352
+ },
353
+ {
354
+ key: "cards",
355
+ label: "Cards",
356
+ field_interface: "CarouselWidget",
357
+ kind: "group",
358
+ fields: [
359
+ {
360
+ key: "card",
361
+ label: "Card",
362
+ field_interface: "BoxWidget",
363
+ hint: {
364
+ prompt_description:
365
+ "Individual card container that holds the header, description, and CTA button.",
366
+ },
367
+ },
368
+ {
369
+ key: "content-container",
370
+ label: "Content Container",
371
+ field_interface: "BoxWidget",
372
+ },
373
+ {
374
+ key: "header",
375
+ label: "Header",
376
+ field_interface: "BoxWidget",
377
+ hint: {
378
+ prompt_description:
379
+ "Header container that holds the icon and title in a flex layout.",
380
+ },
381
+ },
382
+ {
383
+ key: "icon",
384
+ label: "Icon",
385
+ field_interface: "IconWidget",
386
+ hint: {
387
+ prompt_description:
388
+ "Program icon or image representing the specific fitness program or service offered.",
389
+ orientation: "square",
390
+ size: "medium",
391
+ usecase: "icon",
392
+ },
393
+ },
394
+ {
395
+ key: "content",
396
+ label: "Content",
397
+ field_interface: "BoxWidget",
398
+ hint: {
399
+ prompt_description:
400
+ "Content wrapper containing the text elements and CTA button for the card.",
401
+ },
402
+ },
403
+ {
404
+ key: "card_title",
405
+ label: "Card Title",
406
+ field_interface: "TypographyWidget",
407
+ hint: {
408
+ prompt_description:
409
+ "Title of the fitness program or service. Should be concise and descriptive.",
410
+ min_characters: 4,
411
+ max_characters: 20,
412
+ },
413
+ },
414
+ {
415
+ key: "description",
416
+ label: "Description",
417
+ field_interface: "TypographyWidget",
418
+ hint: {
419
+ prompt_description:
420
+ "Brief description of the program, highlighting key benefits or features.",
421
+ min_characters: 50,
422
+ max_characters: 120,
423
+ },
424
+ },
425
+ {
426
+ key: "cta",
427
+ label: "CTA Button",
428
+ field_interface: "ButtonWidget",
429
+ hint: {
430
+ prompt_description:
431
+ "Call-to-action button for users to learn more or sign up for the program.",
432
+ },
433
+ },
434
+ ],
435
+ hint: {
436
+ prompt_description:
437
+ "Collection of program cards showcasing different fitness programs or services. Each card should represent a distinct offering with relevant visual and textual content.",
438
+ min_items: 3,
439
+ max_items: 6,
440
+ },
441
+ },
442
+ ],
443
+ layouts: [
444
+ {
445
+ key: "default",
446
+ title: "Default",
447
+ styles: {
448
+ layout: {
449
+ "padding-top": "3xl",
450
+ "padding-bottom": "3xl",
451
+ },
452
+ container: {
453
+ "max-width": "1280px",
454
+ "margin-left": "auto",
455
+ "margin-right": "auto",
456
+ "padding-left": "lg",
457
+ "padding-right": "lg",
458
+ },
459
+ header: {
460
+ display: "flex",
461
+ "justify-content": "space-between",
462
+ "align-items": "center",
463
+ "margin-bottom": "2xl",
464
+ mobile: {
465
+ "flex-direction": "column",
466
+ "align-items": "center",
467
+ "row-gap": "lg",
468
+ },
469
+ },
470
+ title: {
471
+ color: "text-1",
472
+ mobile: {
473
+ "text-align": "center",
474
+ },
475
+ },
476
+ "carousel-navigation-container": {
477
+ display: "flex",
478
+ "justify-content": "flex-end",
479
+ mobile: {
480
+ display: "none",
481
+ },
482
+ },
483
+ "carousel-navigation-container-mobile": {
484
+ display: "none",
485
+ mobile: {
486
+ display: "flex",
487
+ "justify-content": "center",
488
+ "margin-top": "xl",
489
+ },
490
+ },
491
+ "carousel-navigation": {
492
+ display: "flex",
493
+ "column-gap": "sm",
494
+ "align-items": "center",
495
+ },
496
+ "carousel-navigation-arrow-left": {
497
+ display: "flex",
498
+ "align-items": "center",
499
+ "justify-content": "center",
500
+ "background-color": "white",
501
+ color: "text-2",
502
+ cursor: "pointer",
503
+ "padding-top": "none",
504
+ "padding-bottom": "none",
505
+ "padding-left": "none",
506
+ "padding-right": "none",
507
+ "border-color": "border",
508
+ "border-width": "1px",
509
+ "border-style": "solid",
510
+ width: "48px",
511
+ height: "48px",
512
+ "border-radius": "base",
513
+ "box-shadow": "default",
514
+ transition: "opacity 0.3s ease, cursor 0.3s ease",
515
+ mobile: {
516
+ width: "40px",
517
+ height: "40px",
518
+ },
519
+ },
520
+ "carousel-navigation-arrow-right": {
521
+ display: "flex",
522
+ "align-items": "center",
523
+ "justify-content": "center",
524
+ "background-color": "white",
525
+ color: "text-2",
526
+ cursor: "pointer",
527
+ "padding-top": "none",
528
+ "padding-bottom": "none",
529
+ "padding-left": "none",
530
+ "padding-right": "none",
531
+ "border-color": "border",
532
+ "border-width": "1px",
533
+ "border-style": "solid",
534
+ width: "48px",
535
+ height: "48px",
536
+ "border-radius": "base",
537
+ "box-shadow": "default",
538
+ transition: "opacity 0.3s ease, cursor 0.3s ease",
539
+ mobile: {
540
+ width: "40px",
541
+ height: "40px",
542
+ },
543
+ },
544
+ cards_levoGroup: {
545
+ number_of_slides: 3,
546
+ mobile: {
547
+ number_of_slides: 1,
548
+ },
549
+ tablet: {
550
+ number_of_slides: 2,
551
+ },
552
+ },
553
+ cards: [
554
+ {
555
+ card: {
556
+ "background-color": "brandSecondary",
557
+ "border-radius": "base",
558
+ "padding-top": "xl",
559
+ "padding-bottom": "xl",
560
+ "padding-left": "lg",
561
+ "padding-right": "lg",
562
+ display: "flex",
563
+ "flex-direction": "column",
564
+ "align-items": "flex-start",
565
+ "row-gap": "lg",
566
+ mobile: {
567
+ "padding-top": "lg",
568
+ "padding-bottom": "lg",
569
+ "padding-left": "base",
570
+ "padding-right": "base",
571
+ "row-gap": "base",
572
+ },
573
+ },
574
+ header: {
575
+ display: "flex",
576
+ "align-items": "center",
577
+ "column-gap": "sm",
578
+ width: "100%",
579
+ "justify-content": "center",
580
+ },
581
+ icon: {
582
+ width: "24px",
583
+ height: "24px",
584
+ "border-radius": "base",
585
+ "flex-shrink": "0",
586
+ mobile: {
587
+ width: "20px",
588
+ height: "20px",
589
+ },
590
+ },
591
+ content: {
592
+ display: "flex",
593
+ "flex-direction": "column",
594
+ "align-items": "flex-start",
595
+ "row-gap": "none",
596
+ },
597
+ card_title: {
598
+ "text-align": "left",
599
+ "margin-bottom": "none",
600
+ flex: "1",
601
+ },
602
+ description: {
603
+ color: "text-2",
604
+ "text-align": "left",
605
+ "margin-bottom": "lg",
606
+ "line-height": "1.6",
607
+ mobile: {
608
+ "margin-bottom": "base",
609
+ },
610
+ },
611
+ cta: {},
612
+ },
613
+ {
614
+ icon: {
615
+ width: "24px",
616
+ height: "24px",
617
+ "border-radius": "base",
618
+ "flex-shrink": "0",
619
+ mobile: {
620
+ width: "20px",
621
+ height: "20px",
622
+ },
623
+ },
624
+ header: {
625
+ display: "flex",
626
+ "align-items": "start",
627
+ "column-gap": "sm",
628
+ width: "100%",
629
+ "justify-content": "start",
630
+ },
631
+ card: {
632
+ "background-color": "brandSecondary",
633
+ "border-radius": "base",
634
+ "padding-top": "xl",
635
+ "padding-bottom": "xl",
636
+ "padding-left": "lg",
637
+ "padding-right": "lg",
638
+ display: "flex",
639
+ "flex-direction": "column",
640
+ "align-items": "flex-start",
641
+ "row-gap": "lg",
642
+ mobile: {
643
+ "padding-top": "lg",
644
+ "padding-bottom": "lg",
645
+ "padding-left": "base",
646
+ "padding-right": "base",
647
+ "row-gap": "base",
648
+ },
649
+ },
650
+ content: {
651
+ display: "flex",
652
+ "flex-direction": "column",
653
+ "align-items": "flex-start",
654
+ "row-gap": "none",
655
+ },
656
+ description: {
657
+ color: "text-2",
658
+ "text-align": "left",
659
+ "margin-bottom": "lg",
660
+ "line-height": "1.6",
661
+ mobile: {
662
+ "margin-bottom": "base",
663
+ },
664
+ },
665
+ cta: {},
666
+ },
667
+ {
668
+ icon: {
669
+ width: "24px",
670
+ height: "24px",
671
+ "border-radius": "base",
672
+ "flex-shrink": "0",
673
+ mobile: {
674
+ width: "20px",
675
+ height: "20px",
676
+ },
677
+ },
678
+ header: {
679
+ display: "flex",
680
+ "align-items": "start",
681
+ "column-gap": "sm",
682
+ width: "100%",
683
+ "justify-content": "start",
684
+ },
685
+ card: {
686
+ "background-color": "brandSecondary",
687
+ "border-radius": "base",
688
+ "padding-top": "xl",
689
+ "padding-bottom": "xl",
690
+ "padding-left": "lg",
691
+ "padding-right": "lg",
692
+ display: "flex",
693
+ "flex-direction": "column",
694
+ "align-items": "flex-start",
695
+ "row-gap": "lg",
696
+ mobile: {
697
+ "padding-top": "lg",
698
+ "padding-bottom": "lg",
699
+ "padding-left": "base",
700
+ "padding-right": "base",
701
+ "row-gap": "base",
702
+ },
703
+ },
704
+ content: {
705
+ display: "flex",
706
+ "flex-direction": "column",
707
+ "align-items": "flex-start",
708
+ "row-gap": "none",
709
+ },
710
+ description: {
711
+ color: "text-2",
712
+ "text-align": "left",
713
+ "margin-bottom": "lg",
714
+ "line-height": "1.6",
715
+ mobile: {
716
+ "margin-bottom": "base",
717
+ },
718
+ },
719
+ cta: {},
720
+ },
721
+ {
722
+ icon: {
723
+ width: "24px",
724
+ height: "24px",
725
+ "border-radius": "base",
726
+ "flex-shrink": "0",
727
+ mobile: {
728
+ width: "20px",
729
+ height: "20px",
730
+ },
731
+ },
732
+ header: {
733
+ display: "flex",
734
+ "align-items": "start",
735
+ "column-gap": "sm",
736
+ width: "100%",
737
+ "justify-content": "start",
738
+ },
739
+ card: {
740
+ "background-color": "brandSecondary",
741
+ "border-radius": "base",
742
+ "padding-top": "xl",
743
+ "padding-bottom": "xl",
744
+ "padding-left": "lg",
745
+ "padding-right": "lg",
746
+ display: "flex",
747
+ "flex-direction": "column",
748
+ "align-items": "flex-start",
749
+ "row-gap": "lg",
750
+ mobile: {
751
+ "padding-top": "lg",
752
+ "padding-bottom": "lg",
753
+ "padding-left": "base",
754
+ "padding-right": "base",
755
+ "row-gap": "base",
756
+ },
757
+ },
758
+ content: {
759
+ display: "flex",
760
+ "flex-direction": "column",
761
+ "align-items": "flex-start",
762
+ "row-gap": "none",
763
+ },
764
+ description: {
765
+ color: "text-2",
766
+ "text-align": "left",
767
+ "margin-bottom": "lg",
768
+ "line-height": "1.6",
769
+ mobile: {
770
+ "margin-bottom": "base",
771
+ },
772
+ },
773
+ cta: {},
774
+ },
775
+ ],
776
+ "carousel-navigation-arrow-left_leftIcon": {
777
+ height: "24px",
778
+ width: "24px",
779
+ },
780
+ "carousel-navigation-arrow-right_rightIcon": {
781
+ height: "24px",
782
+ width: "24px",
783
+ },
784
+ },
785
+ config: {
786
+ cards_levoGroup: {
787
+ carousel: {
788
+ loop: true,
789
+ },
790
+ },
791
+ "carousel-navigation-arrow-left": {
792
+ button_icons: {
793
+ left: {
794
+ enabled: true,
795
+ },
796
+ },
797
+ },
798
+ "carousel-navigation-arrow-right": {
799
+ button_icons: {
800
+ right: {
801
+ enabled: true,
802
+ },
803
+ },
804
+ },
805
+ title: {
806
+ heading: {
807
+ level: 2,
808
+ },
809
+ selectedVariants: {
810
+ Heading_Level: "H2",
811
+ },
812
+ },
813
+ },
814
+ content: DEFAULT_CONTENT,
815
+ },
816
+ {
817
+ key: "variant-1",
818
+ title: "Variant 1",
819
+ styles: {
820
+ layout: {
821
+ "padding-top": "3xl",
822
+ "padding-bottom": "3xl",
823
+ },
824
+ container: {
825
+ "max-width": "1280px",
826
+ "margin-left": "auto",
827
+ "margin-right": "auto",
828
+ "padding-left": "lg",
829
+ "padding-right": "lg",
830
+ },
831
+ header: {
832
+ display: "flex",
833
+ "justify-content": "space-between",
834
+ "align-items": "center",
835
+ "margin-bottom": "2xl",
836
+ mobile: {
837
+ "flex-direction": "column",
838
+ "align-items": "center",
839
+ "row-gap": "lg",
840
+ },
841
+ },
842
+ title: {
843
+ color: "text-1",
844
+ mobile: {
845
+ "text-align": "center",
846
+ },
847
+ },
848
+ "carousel-navigation-container": {
849
+ display: "flex",
850
+ "justify-content": "flex-end",
851
+ mobile: {
852
+ display: "none",
853
+ },
854
+ },
855
+ "carousel-navigation-container-mobile": {
856
+ display: "none",
857
+ mobile: {
858
+ display: "flex",
859
+ "justify-content": "center",
860
+ "margin-top": "xl",
861
+ },
862
+ },
863
+ "carousel-navigation": {
864
+ display: "flex",
865
+ "column-gap": "sm",
866
+ "align-items": "center",
867
+ },
868
+ "carousel-navigation-arrow-left": {
869
+ display: "flex",
870
+ "align-items": "center",
871
+ "justify-content": "center",
872
+ "background-color": "white",
873
+ color: "text-2",
874
+ cursor: "pointer",
875
+ "padding-top": "none",
876
+ "padding-bottom": "none",
877
+ "padding-left": "none",
878
+ "padding-right": "none",
879
+ "border-color": "border",
880
+ "border-width": "1px",
881
+ "border-style": "solid",
882
+ width: "48px",
883
+ height: "48px",
884
+ "border-radius": "full",
885
+ "box-shadow": "default",
886
+ transition: "opacity 0.3s ease, cursor 0.3s ease",
887
+ mobile: {
888
+ width: "40px",
889
+ height: "40px",
890
+ },
891
+ },
892
+ "carousel-navigation-arrow-right": {
893
+ display: "flex",
894
+ "align-items": "center",
895
+ "justify-content": "center",
896
+ "background-color": "white",
897
+ color: "text-2",
898
+ cursor: "pointer",
899
+ "padding-top": "none",
900
+ "padding-bottom": "none",
901
+ "padding-left": "none",
902
+ "padding-right": "none",
903
+ "border-color": "border",
904
+ "border-width": "1px",
905
+ "border-style": "solid",
906
+ width: "48px",
907
+ height: "48px",
908
+ "border-radius": "full",
909
+ "box-shadow": "default",
910
+ transition: "opacity 0.3s ease, cursor 0.3s ease",
911
+ mobile: {
912
+ width: "40px",
913
+ height: "40px",
914
+ },
915
+ },
916
+ cards_levoGroup: {
917
+ number_of_slides: 3,
918
+ mobile: {
919
+ number_of_slides: 1,
920
+ },
921
+ tablet: {
922
+ number_of_slides: 2,
923
+ },
924
+ },
925
+ cards: [
926
+ {
927
+ card: {
928
+ "border-radius": "base",
929
+ "padding-top": "xl",
930
+ "padding-bottom": "xl",
931
+ "padding-left": "lg",
932
+ "padding-right": "lg",
933
+ display: "flex",
934
+ "flex-direction": "column",
935
+ "align-items": "flex-start",
936
+ "row-gap": "lg",
937
+ mobile: {
938
+ "padding-top": "lg",
939
+ "padding-bottom": "lg",
940
+ "padding-left": "base",
941
+ "padding-right": "base",
942
+ "row-gap": "base",
943
+ },
944
+ "background-image":
945
+ 'url("https://static.levostg.online/W6OEVMW8/b59724808edd5416666720a40885d720acf4d507-HXVLytiYezAY2.jpg")',
946
+ "background-position": "50% 50%",
947
+ "background-size": "cover",
948
+ height: "450px",
949
+ },
950
+ header: {
951
+ display: "none",
952
+ "align-items": "center",
953
+ "column-gap": "sm",
954
+ width: "100%",
955
+ "justify-content": "center",
956
+ },
957
+ icon: {
958
+ width: "24px",
959
+ height: "24px",
960
+ "border-radius": "base",
961
+ "flex-shrink": "0",
962
+ mobile: {
963
+ width: "20px",
964
+ height: "20px",
965
+ },
966
+ },
967
+ content: {
968
+ display: "flex",
969
+ "flex-direction": "row",
970
+ "align-items": "start",
971
+ "row-gap": "none",
972
+ "justify-content": "space-between",
973
+ width: "100%",
974
+ "padding-bottom": "none",
975
+ height: "100%",
976
+ "padding-top": "22xl",
977
+ },
978
+ card_title: {
979
+ "text-align": "left",
980
+ "margin-bottom": "none",
981
+ flex: "1",
982
+ },
983
+ description: {
984
+ color: "white",
985
+ "text-align": "left",
986
+ "margin-bottom": "lg",
987
+ "line-height": "1.6",
988
+ mobile: {
989
+ "margin-bottom": "base",
990
+ },
991
+ "font-size": "2xl",
992
+ "font-weight": 600,
993
+ },
994
+ cta: {
995
+ "padding-top": "2xs",
996
+ "padding-left": "2xs",
997
+ "padding-right": "2xs",
998
+ "padding-bottom": "2xs",
999
+ "border-radius": "3xl",
1000
+ },
1001
+ cta_rightIcon: {
1002
+ height: "22px",
1003
+ width: "22px",
1004
+ "font-size": "22px",
1005
+ },
1006
+ },
1007
+ {
1008
+ card: {
1009
+ "border-radius": "base",
1010
+ "padding-top": "xl",
1011
+ "padding-bottom": "xl",
1012
+ "padding-left": "lg",
1013
+ "padding-right": "lg",
1014
+ display: "flex",
1015
+ "flex-direction": "column",
1016
+ "align-items": "flex-start",
1017
+ "row-gap": "lg",
1018
+ mobile: {
1019
+ "padding-top": "lg",
1020
+ "padding-bottom": "lg",
1021
+ "padding-left": "base",
1022
+ "padding-right": "base",
1023
+ "row-gap": "base",
1024
+ },
1025
+ "background-image":
1026
+ 'url("https://static.levostg.online/W6OEVMW8/b59724808edd5416666720a40885d720acf4d507-HXVLytiYezAY2.jpg")',
1027
+ "background-position": "50% 50%",
1028
+ "background-size": "cover",
1029
+ height: "450px",
1030
+ },
1031
+ header: {
1032
+ display: "none",
1033
+ "align-items": "center",
1034
+ "column-gap": "sm",
1035
+ width: "100%",
1036
+ "justify-content": "center",
1037
+ },
1038
+ icon: {
1039
+ width: "24px",
1040
+ height: "24px",
1041
+ "border-radius": "base",
1042
+ "flex-shrink": "0",
1043
+ mobile: {
1044
+ width: "20px",
1045
+ height: "20px",
1046
+ },
1047
+ },
1048
+ content: {
1049
+ display: "flex",
1050
+ "flex-direction": "row",
1051
+ "align-items": "start",
1052
+ "row-gap": "none",
1053
+ "justify-content": "space-between",
1054
+ width: "100%",
1055
+ "padding-bottom": "none",
1056
+ height: "100%",
1057
+ "padding-top": "22xl",
1058
+ },
1059
+ card_title: {
1060
+ "text-align": "left",
1061
+ "margin-bottom": "none",
1062
+ flex: "1",
1063
+ },
1064
+ description: {
1065
+ color: "white",
1066
+ "text-align": "left",
1067
+ "margin-bottom": "lg",
1068
+ "line-height": "1.6",
1069
+ mobile: {
1070
+ "margin-bottom": "base",
1071
+ },
1072
+ "font-size": "2xl",
1073
+ "font-weight": 600,
1074
+ },
1075
+ cta: {
1076
+ "padding-top": "2xs",
1077
+ "padding-left": "2xs",
1078
+ "padding-right": "2xs",
1079
+ "padding-bottom": "2xs",
1080
+ "border-radius": "3xl",
1081
+ },
1082
+ cta_rightIcon: {
1083
+ height: "22px",
1084
+ width: "22px",
1085
+ "font-size": "22px",
1086
+ },
1087
+ },
1088
+ {
1089
+ card: {
1090
+ "border-radius": "base",
1091
+ "padding-top": "xl",
1092
+ "padding-bottom": "xl",
1093
+ "padding-left": "lg",
1094
+ "padding-right": "lg",
1095
+ display: "flex",
1096
+ "flex-direction": "column",
1097
+ "align-items": "flex-start",
1098
+ "row-gap": "lg",
1099
+ mobile: {
1100
+ "padding-top": "lg",
1101
+ "padding-bottom": "lg",
1102
+ "padding-left": "base",
1103
+ "padding-right": "base",
1104
+ "row-gap": "base",
1105
+ },
1106
+ "background-image":
1107
+ 'url("https://static.levostg.online/W6OEVMW8/b59724808edd5416666720a40885d720acf4d507-HXVLytiYezAY2.jpg")',
1108
+ "background-position": "50% 50%",
1109
+ "background-size": "cover",
1110
+ height: "450px",
1111
+ },
1112
+ header: {
1113
+ display: "none",
1114
+ "align-items": "center",
1115
+ "column-gap": "sm",
1116
+ width: "100%",
1117
+ "justify-content": "center",
1118
+ },
1119
+ icon: {
1120
+ width: "24px",
1121
+ height: "24px",
1122
+ "border-radius": "base",
1123
+ "flex-shrink": "0",
1124
+ mobile: {
1125
+ width: "20px",
1126
+ height: "20px",
1127
+ },
1128
+ },
1129
+ content: {
1130
+ display: "flex",
1131
+ "flex-direction": "row",
1132
+ "align-items": "start",
1133
+ "row-gap": "none",
1134
+ "justify-content": "space-between",
1135
+ width: "100%",
1136
+ "padding-bottom": "none",
1137
+ height: "100%",
1138
+ "padding-top": "22xl",
1139
+ },
1140
+ card_title: {
1141
+ "text-align": "left",
1142
+ "margin-bottom": "none",
1143
+ flex: "1",
1144
+ },
1145
+ description: {
1146
+ color: "white",
1147
+ "text-align": "left",
1148
+ "margin-bottom": "lg",
1149
+ "line-height": "1.6",
1150
+ mobile: {
1151
+ "margin-bottom": "base",
1152
+ },
1153
+ "font-size": "2xl",
1154
+ "font-weight": 600,
1155
+ },
1156
+ cta: {
1157
+ "padding-top": "2xs",
1158
+ "padding-left": "2xs",
1159
+ "padding-right": "2xs",
1160
+ "padding-bottom": "2xs",
1161
+ "border-radius": "3xl",
1162
+ },
1163
+ cta_rightIcon: {
1164
+ height: "22px",
1165
+ width: "22px",
1166
+ "font-size": "22px",
1167
+ },
1168
+ },
1169
+ {
1170
+ card: {
1171
+ "border-radius": "base",
1172
+ "padding-top": "xl",
1173
+ "padding-bottom": "xl",
1174
+ "padding-left": "lg",
1175
+ "padding-right": "lg",
1176
+ display: "flex",
1177
+ "flex-direction": "column",
1178
+ "align-items": "flex-start",
1179
+ "row-gap": "lg",
1180
+ mobile: {
1181
+ "padding-top": "lg",
1182
+ "padding-bottom": "lg",
1183
+ "padding-left": "base",
1184
+ "padding-right": "base",
1185
+ "row-gap": "base",
1186
+ },
1187
+ "background-image":
1188
+ 'url("https://static.levostg.online/W6OEVMW8/b59724808edd5416666720a40885d720acf4d507-HXVLytiYezAY2.jpg")',
1189
+ "background-position": "50% 50%",
1190
+ "background-size": "cover",
1191
+ height: "450px",
1192
+ },
1193
+ header: {
1194
+ display: "none",
1195
+ "align-items": "center",
1196
+ "column-gap": "sm",
1197
+ width: "100%",
1198
+ "justify-content": "center",
1199
+ },
1200
+ icon: {
1201
+ width: "24px",
1202
+ height: "24px",
1203
+ "border-radius": "base",
1204
+ "flex-shrink": "0",
1205
+ mobile: {
1206
+ width: "20px",
1207
+ height: "20px",
1208
+ },
1209
+ },
1210
+ content: {
1211
+ display: "flex",
1212
+ "flex-direction": "row",
1213
+ "align-items": "start",
1214
+ "row-gap": "none",
1215
+ "justify-content": "space-between",
1216
+ width: "100%",
1217
+ "padding-bottom": "none",
1218
+ height: "100%",
1219
+ "padding-top": "22xl",
1220
+ },
1221
+ card_title: {
1222
+ "text-align": "left",
1223
+ "margin-bottom": "none",
1224
+ flex: "1",
1225
+ },
1226
+ description: {
1227
+ color: "white",
1228
+ "text-align": "left",
1229
+ "margin-bottom": "lg",
1230
+ "line-height": "1.6",
1231
+ mobile: {
1232
+ "margin-bottom": "base",
1233
+ },
1234
+ "font-size": "2xl",
1235
+ "font-weight": 600,
1236
+ },
1237
+ cta: {
1238
+ "padding-top": "2xs",
1239
+ "padding-left": "2xs",
1240
+ "padding-right": "2xs",
1241
+ "padding-bottom": "2xs",
1242
+ "border-radius": "3xl",
1243
+ },
1244
+ cta_rightIcon: {
1245
+ height: "22px",
1246
+ width: "22px",
1247
+ "font-size": "22px",
1248
+ },
1249
+ },
1250
+ {
1251
+ card: {
1252
+ "border-radius": "base",
1253
+ "padding-top": "xl",
1254
+ "padding-bottom": "xl",
1255
+ "padding-left": "lg",
1256
+ "padding-right": "lg",
1257
+ display: "flex",
1258
+ "flex-direction": "column",
1259
+ "align-items": "flex-start",
1260
+ "row-gap": "lg",
1261
+ mobile: {
1262
+ "padding-top": "lg",
1263
+ "padding-bottom": "lg",
1264
+ "padding-left": "base",
1265
+ "padding-right": "base",
1266
+ "row-gap": "base",
1267
+ },
1268
+ "background-image":
1269
+ 'url("https://static.levostg.online/W6OEVMW8/b59724808edd5416666720a40885d720acf4d507-HXVLytiYezAY2.jpg")',
1270
+ "background-position": "50% 50%",
1271
+ "background-size": "cover",
1272
+ height: "450px",
1273
+ },
1274
+ header: {
1275
+ display: "none",
1276
+ "align-items": "center",
1277
+ "column-gap": "sm",
1278
+ width: "100%",
1279
+ "justify-content": "center",
1280
+ },
1281
+ icon: {
1282
+ width: "24px",
1283
+ height: "24px",
1284
+ "border-radius": "base",
1285
+ "flex-shrink": "0",
1286
+ mobile: {
1287
+ width: "20px",
1288
+ height: "20px",
1289
+ },
1290
+ },
1291
+ content: {
1292
+ display: "flex",
1293
+ "flex-direction": "row",
1294
+ "align-items": "start",
1295
+ "row-gap": "none",
1296
+ "justify-content": "space-between",
1297
+ width: "100%",
1298
+ "padding-bottom": "none",
1299
+ height: "100%",
1300
+ "padding-top": "22xl",
1301
+ },
1302
+ card_title: {
1303
+ "text-align": "left",
1304
+ "margin-bottom": "none",
1305
+ flex: "1",
1306
+ },
1307
+ description: {
1308
+ color: "white",
1309
+ "text-align": "left",
1310
+ "margin-bottom": "lg",
1311
+ "line-height": "1.6",
1312
+ mobile: {
1313
+ "margin-bottom": "base",
1314
+ },
1315
+ "font-size": "2xl",
1316
+ "font-weight": 600,
1317
+ },
1318
+ cta: {
1319
+ "padding-top": "2xs",
1320
+ "padding-left": "2xs",
1321
+ "padding-right": "2xs",
1322
+ "padding-bottom": "2xs",
1323
+ "border-radius": "3xl",
1324
+ },
1325
+ cta_rightIcon: {
1326
+ height: "22px",
1327
+ width: "22px",
1328
+ "font-size": "22px",
1329
+ },
1330
+ },
1331
+ {
1332
+ icon: {
1333
+ width: "24px",
1334
+ height: "24px",
1335
+ "border-radius": "base",
1336
+ "flex-shrink": "0",
1337
+ mobile: {
1338
+ width: "20px",
1339
+ height: "20px",
1340
+ },
1341
+ },
1342
+ header: {
1343
+ display: "flex",
1344
+ "align-items": "start",
1345
+ "column-gap": "sm",
1346
+ width: "100%",
1347
+ "justify-content": "start",
1348
+ },
1349
+ card: {
1350
+ "background-color": "brandSecondary",
1351
+ "border-radius": "base",
1352
+ "padding-top": "xl",
1353
+ "padding-bottom": "xl",
1354
+ "padding-left": "lg",
1355
+ "padding-right": "lg",
1356
+ display: "flex",
1357
+ "flex-direction": "column",
1358
+ "align-items": "flex-start",
1359
+ "row-gap": "lg",
1360
+ mobile: {
1361
+ "padding-top": "lg",
1362
+ "padding-bottom": "lg",
1363
+ "padding-left": "base",
1364
+ "padding-right": "base",
1365
+ "row-gap": "base",
1366
+ },
1367
+ },
1368
+ content: {
1369
+ display: "flex",
1370
+ "flex-direction": "column",
1371
+ "align-items": "flex-start",
1372
+ "row-gap": "none",
1373
+ },
1374
+ description: {
1375
+ color: "text-2",
1376
+ "text-align": "left",
1377
+ "margin-bottom": "lg",
1378
+ "line-height": "1.6",
1379
+ mobile: {
1380
+ "margin-bottom": "base",
1381
+ },
1382
+ },
1383
+ cta: {},
1384
+ },
1385
+ {
1386
+ icon: {
1387
+ width: "24px",
1388
+ height: "24px",
1389
+ "border-radius": "base",
1390
+ "flex-shrink": "0",
1391
+ mobile: {
1392
+ width: "20px",
1393
+ height: "20px",
1394
+ },
1395
+ },
1396
+ header: {
1397
+ display: "flex",
1398
+ "align-items": "start",
1399
+ "column-gap": "sm",
1400
+ width: "100%",
1401
+ "justify-content": "start",
1402
+ },
1403
+ card: {
1404
+ "background-color": "brandSecondary",
1405
+ "border-radius": "base",
1406
+ "padding-top": "xl",
1407
+ "padding-bottom": "xl",
1408
+ "padding-left": "lg",
1409
+ "padding-right": "lg",
1410
+ display: "flex",
1411
+ "flex-direction": "column",
1412
+ "align-items": "flex-start",
1413
+ "row-gap": "lg",
1414
+ mobile: {
1415
+ "padding-top": "lg",
1416
+ "padding-bottom": "lg",
1417
+ "padding-left": "base",
1418
+ "padding-right": "base",
1419
+ "row-gap": "base",
1420
+ },
1421
+ },
1422
+ content: {
1423
+ display: "flex",
1424
+ "flex-direction": "column",
1425
+ "align-items": "flex-start",
1426
+ "row-gap": "none",
1427
+ },
1428
+ description: {
1429
+ color: "text-2",
1430
+ "text-align": "left",
1431
+ "margin-bottom": "lg",
1432
+ "line-height": "1.6",
1433
+ mobile: {
1434
+ "margin-bottom": "base",
1435
+ },
1436
+ },
1437
+ cta: {},
1438
+ },
1439
+ {
1440
+ icon: {
1441
+ width: "24px",
1442
+ height: "24px",
1443
+ "border-radius": "base",
1444
+ "flex-shrink": "0",
1445
+ mobile: {
1446
+ width: "20px",
1447
+ height: "20px",
1448
+ },
1449
+ },
1450
+ header: {
1451
+ display: "flex",
1452
+ "align-items": "start",
1453
+ "column-gap": "sm",
1454
+ width: "100%",
1455
+ "justify-content": "start",
1456
+ },
1457
+ card: {
1458
+ "background-color": "brandSecondary",
1459
+ "border-radius": "base",
1460
+ "padding-top": "xl",
1461
+ "padding-bottom": "xl",
1462
+ "padding-left": "lg",
1463
+ "padding-right": "lg",
1464
+ display: "flex",
1465
+ "flex-direction": "column",
1466
+ "align-items": "flex-start",
1467
+ "row-gap": "lg",
1468
+ mobile: {
1469
+ "padding-top": "lg",
1470
+ "padding-bottom": "lg",
1471
+ "padding-left": "base",
1472
+ "padding-right": "base",
1473
+ "row-gap": "base",
1474
+ },
1475
+ },
1476
+ content: {
1477
+ display: "flex",
1478
+ "flex-direction": "column",
1479
+ "align-items": "flex-start",
1480
+ "row-gap": "none",
1481
+ },
1482
+ description: {
1483
+ color: "text-2",
1484
+ "text-align": "left",
1485
+ "margin-bottom": "lg",
1486
+ "line-height": "1.6",
1487
+ mobile: {
1488
+ "margin-bottom": "base",
1489
+ },
1490
+ },
1491
+ cta: {},
1492
+ },
1493
+ ],
1494
+ "carousel-navigation-arrow-left_leftIcon": {
1495
+ height: "24px",
1496
+ width: "24px",
1497
+ },
1498
+ "carousel-navigation-arrow-right_rightIcon": {
1499
+ height: "24px",
1500
+ width: "24px",
1501
+ },
1502
+ },
1503
+ config: {
1504
+ cards_levoGroup: {
1505
+ carousel: {
1506
+ loop: true,
1507
+ },
1508
+ },
1509
+ "carousel-navigation-arrow-left": {
1510
+ button_icons: {
1511
+ left: {
1512
+ enabled: true,
1513
+ },
1514
+ },
1515
+ },
1516
+ "carousel-navigation-arrow-right": {
1517
+ button_icons: {
1518
+ right: {
1519
+ enabled: true,
1520
+ },
1521
+ },
1522
+ },
1523
+ title: {
1524
+ heading: {
1525
+ level: 2,
1526
+ },
1527
+ selectedVariants: {
1528
+ Heading_Level: "H2",
1529
+ },
1530
+ },
1531
+ cards: [
1532
+ {
1533
+ cta: {
1534
+ button_icons: {
1535
+ right: {
1536
+ enabled: true,
1537
+ },
1538
+ },
1539
+ selectedVariants: {
1540
+ Button_Variants: "Default",
1541
+ },
1542
+ },
1543
+ },
1544
+ {
1545
+ cta: {
1546
+ button_icons: {
1547
+ right: {
1548
+ enabled: true,
1549
+ },
1550
+ },
1551
+ selectedVariants: {
1552
+ Button_Variants: "Default",
1553
+ },
1554
+ },
1555
+ },
1556
+ {
1557
+ cta: {
1558
+ button_icons: {
1559
+ right: {
1560
+ enabled: true,
1561
+ },
1562
+ },
1563
+ selectedVariants: {
1564
+ Button_Variants: "Default",
1565
+ },
1566
+ },
1567
+ },
1568
+ {
1569
+ cta: {
1570
+ button_icons: {
1571
+ right: {
1572
+ enabled: true,
1573
+ },
1574
+ },
1575
+ selectedVariants: {
1576
+ Button_Variants: "Default",
1577
+ },
1578
+ },
1579
+ },
1580
+ {
1581
+ cta: {
1582
+ button_icons: {
1583
+ right: {
1584
+ enabled: true,
1585
+ },
1586
+ },
1587
+ selectedVariants: {
1588
+ Button_Variants: "Default",
1589
+ },
1590
+ },
1591
+ },
1592
+ ],
1593
+ },
1594
+ content: DEFAULT_CONTENT_VARIANT_1,
1595
+ },
1596
+ {
1597
+ key: "variant-2",
1598
+ title: "Variant 2",
1599
+ styles: {
1600
+ layout: {
1601
+ "padding-top": "3xl",
1602
+ "padding-bottom": "3xl",
1603
+ },
1604
+ container: {
1605
+ "max-width": "1280px",
1606
+ "margin-left": "auto",
1607
+ "margin-right": "auto",
1608
+ "padding-left": "lg",
1609
+ "padding-right": "lg",
1610
+ },
1611
+ header: {
1612
+ display: "flex",
1613
+ "justify-content": "space-between",
1614
+ "align-items": "center",
1615
+ "margin-bottom": "2xl",
1616
+ mobile: {
1617
+ "flex-direction": "column",
1618
+ "align-items": "center",
1619
+ "row-gap": "lg",
1620
+ },
1621
+ },
1622
+ title: {
1623
+ color: "text-1",
1624
+ mobile: {
1625
+ "text-align": "center",
1626
+ },
1627
+ },
1628
+ "carousel-navigation-container": {
1629
+ display: "flex",
1630
+ "justify-content": "flex-end",
1631
+ mobile: {
1632
+ display: "none",
1633
+ },
1634
+ },
1635
+ "carousel-navigation-container-mobile": {
1636
+ display: "none",
1637
+ mobile: {
1638
+ display: "flex",
1639
+ "justify-content": "center",
1640
+ "margin-top": "xl",
1641
+ },
1642
+ },
1643
+ "carousel-navigation": {
1644
+ display: "flex",
1645
+ "column-gap": "sm",
1646
+ "align-items": "center",
1647
+ },
1648
+ "carousel-navigation-arrow-left": {
1649
+ display: "flex",
1650
+ "align-items": "center",
1651
+ "justify-content": "center",
1652
+ "background-color": "white",
1653
+ color: "text-2",
1654
+ cursor: "pointer",
1655
+ "padding-top": "none",
1656
+ "padding-bottom": "none",
1657
+ "padding-left": "none",
1658
+ "padding-right": "none",
1659
+ "border-color": "border",
1660
+ "border-width": "1px",
1661
+ "border-style": "solid",
1662
+ width: "48px",
1663
+ height: "48px",
1664
+ "border-radius": "base",
1665
+ "box-shadow": "default",
1666
+ transition: "opacity 0.3s ease, cursor 0.3s ease",
1667
+ mobile: {
1668
+ width: "40px",
1669
+ height: "40px",
1670
+ },
1671
+ },
1672
+ "carousel-navigation-arrow-right": {
1673
+ display: "flex",
1674
+ "align-items": "center",
1675
+ "justify-content": "center",
1676
+ "background-color": "white",
1677
+ color: "text-2",
1678
+ cursor: "pointer",
1679
+ "padding-top": "none",
1680
+ "padding-bottom": "none",
1681
+ "padding-left": "none",
1682
+ "padding-right": "none",
1683
+ "border-color": "border",
1684
+ "border-width": "1px",
1685
+ "border-style": "solid",
1686
+ width: "48px",
1687
+ height: "48px",
1688
+ "border-radius": "base",
1689
+ "box-shadow": "default",
1690
+ transition: "opacity 0.3s ease, cursor 0.3s ease",
1691
+ mobile: {
1692
+ width: "40px",
1693
+ height: "40px",
1694
+ },
1695
+ },
1696
+ cards_levoGroup: {
1697
+ number_of_slides: 1,
1698
+ mobile: {
1699
+ number_of_slides: 1,
1700
+ },
1701
+ tablet: {
1702
+ number_of_slides: 2,
1703
+ },
1704
+ },
1705
+ cards: [
1706
+ {
1707
+ card: {
1708
+ "border-radius": "base",
1709
+ "padding-top": "10xl",
1710
+ "padding-bottom": "10xl",
1711
+ "padding-left": "lg",
1712
+ "padding-right": "lg",
1713
+ display: "flex",
1714
+ "flex-direction": "column",
1715
+ "align-items": "end",
1716
+ "row-gap": "lg",
1717
+ mobile: {
1718
+ "padding-top": "lg",
1719
+ "padding-bottom": "lg",
1720
+ "padding-left": "base",
1721
+ "padding-right": "base",
1722
+ "row-gap": "base",
1723
+ },
1724
+ "background-image":
1725
+ 'url("https://static.levostg.online/W6OEVMW8/f33762a4520d38e062217be87bfc8390eb26750e-dO4GwFMbEUTS.png")',
1726
+ "background-position": "50% 50%",
1727
+ "background-size": "cover",
1728
+ "justify-content": "end",
1729
+ },
1730
+ header: {
1731
+ display: "flex",
1732
+ "align-items": "start",
1733
+ "column-gap": "sm",
1734
+ width: "100%",
1735
+ "justify-content": "start",
1736
+ "flex-direction": "column",
1737
+ },
1738
+ icon: {
1739
+ width: "24px",
1740
+ height: "24px",
1741
+ "border-radius": "base",
1742
+ "flex-shrink": "0",
1743
+ mobile: {
1744
+ width: "20px",
1745
+ height: "20px",
1746
+ },
1747
+ },
1748
+ content: {
1749
+ display: "flex",
1750
+ "flex-direction": "column",
1751
+ "align-items": "flex-start",
1752
+ "row-gap": "none",
1753
+ },
1754
+ card_title: {
1755
+ "text-align": "left",
1756
+ "margin-bottom": "none",
1757
+ flex: "1",
1758
+ color: "text-1",
1759
+ "font-size": "2xl",
1760
+ "font-weight": 600,
1761
+ },
1762
+ description: {
1763
+ color: "text-2",
1764
+ "text-align": "left",
1765
+ "margin-bottom": "lg",
1766
+ "line-height": "1.6",
1767
+ mobile: {
1768
+ "margin-bottom": "base",
1769
+ },
1770
+ },
1771
+ cta: {},
1772
+ "content-container": {
1773
+ "background-color": "white",
1774
+ "max-width": "350px",
1775
+ "padding-top": "md",
1776
+ "padding-bottom": "md",
1777
+ "padding-left": "md",
1778
+ "padding-right": "md",
1779
+ "border-radius": "2xl",
1780
+ },
1781
+ },
1782
+ {
1783
+ card: {
1784
+ "border-radius": "base",
1785
+ "padding-top": "10xl",
1786
+ "padding-bottom": "10xl",
1787
+ "padding-left": "lg",
1788
+ "padding-right": "lg",
1789
+ display: "flex",
1790
+ "flex-direction": "column",
1791
+ "align-items": "end",
1792
+ "row-gap": "lg",
1793
+ mobile: {
1794
+ "padding-top": "lg",
1795
+ "padding-bottom": "lg",
1796
+ "padding-left": "base",
1797
+ "padding-right": "base",
1798
+ "row-gap": "base",
1799
+ },
1800
+ "background-image":
1801
+ 'url("https://static.levostg.online/W6OEVMW8/f33762a4520d38e062217be87bfc8390eb26750e-dO4GwFMbEUTS.png")',
1802
+ "background-position": "50% 50%",
1803
+ "background-size": "cover",
1804
+ "justify-content": "end",
1805
+ },
1806
+ header: {
1807
+ display: "flex",
1808
+ "align-items": "start",
1809
+ "column-gap": "sm",
1810
+ width: "100%",
1811
+ "justify-content": "start",
1812
+ "flex-direction": "column",
1813
+ },
1814
+ icon: {
1815
+ width: "24px",
1816
+ height: "24px",
1817
+ "border-radius": "base",
1818
+ "flex-shrink": "0",
1819
+ mobile: {
1820
+ width: "20px",
1821
+ height: "20px",
1822
+ },
1823
+ },
1824
+ content: {
1825
+ display: "flex",
1826
+ "flex-direction": "column",
1827
+ "align-items": "flex-start",
1828
+ "row-gap": "none",
1829
+ },
1830
+ card_title: {
1831
+ "text-align": "left",
1832
+ "margin-bottom": "none",
1833
+ flex: "1",
1834
+ color: "text-1",
1835
+ "font-size": "2xl",
1836
+ "font-weight": 600,
1837
+ },
1838
+ description: {
1839
+ color: "text-2",
1840
+ "text-align": "left",
1841
+ "margin-bottom": "lg",
1842
+ "line-height": "1.6",
1843
+ mobile: {
1844
+ "margin-bottom": "base",
1845
+ },
1846
+ },
1847
+ cta: {},
1848
+ "content-container": {
1849
+ "background-color": "white",
1850
+ "max-width": "350px",
1851
+ "padding-top": "md",
1852
+ "padding-bottom": "md",
1853
+ "padding-left": "md",
1854
+ "padding-right": "md",
1855
+ "border-radius": "2xl",
1856
+ },
1857
+ },
1858
+ {
1859
+ card: {
1860
+ "border-radius": "base",
1861
+ "padding-top": "10xl",
1862
+ "padding-bottom": "10xl",
1863
+ "padding-left": "lg",
1864
+ "padding-right": "lg",
1865
+ display: "flex",
1866
+ "flex-direction": "column",
1867
+ "align-items": "end",
1868
+ "row-gap": "lg",
1869
+ mobile: {
1870
+ "padding-top": "lg",
1871
+ "padding-bottom": "lg",
1872
+ "padding-left": "base",
1873
+ "padding-right": "base",
1874
+ "row-gap": "base",
1875
+ },
1876
+ "background-image":
1877
+ 'url("https://static.levostg.online/W6OEVMW8/f33762a4520d38e062217be87bfc8390eb26750e-dO4GwFMbEUTS.png")',
1878
+ "background-position": "50% 50%",
1879
+ "background-size": "cover",
1880
+ "justify-content": "end",
1881
+ },
1882
+ header: {
1883
+ display: "flex",
1884
+ "align-items": "start",
1885
+ "column-gap": "sm",
1886
+ width: "100%",
1887
+ "justify-content": "start",
1888
+ "flex-direction": "column",
1889
+ },
1890
+ icon: {
1891
+ width: "24px",
1892
+ height: "24px",
1893
+ "border-radius": "base",
1894
+ "flex-shrink": "0",
1895
+ mobile: {
1896
+ width: "20px",
1897
+ height: "20px",
1898
+ },
1899
+ },
1900
+ content: {
1901
+ display: "flex",
1902
+ "flex-direction": "column",
1903
+ "align-items": "flex-start",
1904
+ "row-gap": "none",
1905
+ },
1906
+ card_title: {
1907
+ "text-align": "left",
1908
+ "margin-bottom": "none",
1909
+ flex: "1",
1910
+ color: "text-1",
1911
+ "font-size": "2xl",
1912
+ "font-weight": 600,
1913
+ },
1914
+ description: {
1915
+ color: "text-2",
1916
+ "text-align": "left",
1917
+ "margin-bottom": "lg",
1918
+ "line-height": "1.6",
1919
+ mobile: {
1920
+ "margin-bottom": "base",
1921
+ },
1922
+ },
1923
+ cta: {},
1924
+ "content-container": {
1925
+ "background-color": "white",
1926
+ "max-width": "350px",
1927
+ "padding-top": "md",
1928
+ "padding-bottom": "md",
1929
+ "padding-left": "md",
1930
+ "padding-right": "md",
1931
+ "border-radius": "2xl",
1932
+ },
1933
+ },
1934
+ {
1935
+ icon: {
1936
+ width: "24px",
1937
+ height: "24px",
1938
+ "border-radius": "base",
1939
+ "flex-shrink": "0",
1940
+ mobile: {
1941
+ width: "20px",
1942
+ height: "20px",
1943
+ },
1944
+ },
1945
+ header: {
1946
+ display: "flex",
1947
+ "align-items": "start",
1948
+ "column-gap": "sm",
1949
+ width: "100%",
1950
+ "justify-content": "start",
1951
+ },
1952
+ card: {
1953
+ "background-color": "brandSecondary",
1954
+ "border-radius": "base",
1955
+ "padding-top": "xl",
1956
+ "padding-bottom": "xl",
1957
+ "padding-left": "lg",
1958
+ "padding-right": "lg",
1959
+ display: "flex",
1960
+ "flex-direction": "column",
1961
+ "align-items": "flex-start",
1962
+ "row-gap": "lg",
1963
+ mobile: {
1964
+ "padding-top": "lg",
1965
+ "padding-bottom": "lg",
1966
+ "padding-left": "base",
1967
+ "padding-right": "base",
1968
+ "row-gap": "base",
1969
+ },
1970
+ },
1971
+ content: {
1972
+ display: "flex",
1973
+ "flex-direction": "column",
1974
+ "align-items": "flex-start",
1975
+ "row-gap": "none",
1976
+ },
1977
+ description: {
1978
+ color: "text-2",
1979
+ "text-align": "left",
1980
+ "margin-bottom": "lg",
1981
+ "line-height": "1.6",
1982
+ mobile: {
1983
+ "margin-bottom": "base",
1984
+ },
1985
+ },
1986
+ cta: {},
1987
+ },
1988
+ {
1989
+ icon: {
1990
+ width: "24px",
1991
+ height: "24px",
1992
+ "border-radius": "base",
1993
+ "flex-shrink": "0",
1994
+ mobile: {
1995
+ width: "20px",
1996
+ height: "20px",
1997
+ },
1998
+ },
1999
+ header: {
2000
+ display: "flex",
2001
+ "align-items": "start",
2002
+ "column-gap": "sm",
2003
+ width: "100%",
2004
+ "justify-content": "start",
2005
+ },
2006
+ card: {
2007
+ "background-color": "brandSecondary",
2008
+ "border-radius": "base",
2009
+ "padding-top": "xl",
2010
+ "padding-bottom": "xl",
2011
+ "padding-left": "lg",
2012
+ "padding-right": "lg",
2013
+ display: "flex",
2014
+ "flex-direction": "column",
2015
+ "align-items": "flex-start",
2016
+ "row-gap": "lg",
2017
+ mobile: {
2018
+ "padding-top": "lg",
2019
+ "padding-bottom": "lg",
2020
+ "padding-left": "base",
2021
+ "padding-right": "base",
2022
+ "row-gap": "base",
2023
+ },
2024
+ },
2025
+ content: {
2026
+ display: "flex",
2027
+ "flex-direction": "column",
2028
+ "align-items": "flex-start",
2029
+ "row-gap": "none",
2030
+ },
2031
+ description: {
2032
+ color: "text-2",
2033
+ "text-align": "left",
2034
+ "margin-bottom": "lg",
2035
+ "line-height": "1.6",
2036
+ mobile: {
2037
+ "margin-bottom": "base",
2038
+ },
2039
+ },
2040
+ cta: {},
2041
+ },
2042
+ {
2043
+ icon: {
2044
+ width: "24px",
2045
+ height: "24px",
2046
+ "border-radius": "base",
2047
+ "flex-shrink": "0",
2048
+ mobile: {
2049
+ width: "20px",
2050
+ height: "20px",
2051
+ },
2052
+ },
2053
+ header: {
2054
+ display: "flex",
2055
+ "align-items": "start",
2056
+ "column-gap": "sm",
2057
+ width: "100%",
2058
+ "justify-content": "start",
2059
+ },
2060
+ card: {
2061
+ "background-color": "brandSecondary",
2062
+ "border-radius": "base",
2063
+ "padding-top": "xl",
2064
+ "padding-bottom": "xl",
2065
+ "padding-left": "lg",
2066
+ "padding-right": "lg",
2067
+ display: "flex",
2068
+ "flex-direction": "column",
2069
+ "align-items": "flex-start",
2070
+ "row-gap": "lg",
2071
+ mobile: {
2072
+ "padding-top": "lg",
2073
+ "padding-bottom": "lg",
2074
+ "padding-left": "base",
2075
+ "padding-right": "base",
2076
+ "row-gap": "base",
2077
+ },
2078
+ },
2079
+ content: {
2080
+ display: "flex",
2081
+ "flex-direction": "column",
2082
+ "align-items": "flex-start",
2083
+ "row-gap": "none",
2084
+ },
2085
+ description: {
2086
+ color: "text-2",
2087
+ "text-align": "left",
2088
+ "margin-bottom": "lg",
2089
+ "line-height": "1.6",
2090
+ mobile: {
2091
+ "margin-bottom": "base",
2092
+ },
2093
+ },
2094
+ cta: {},
2095
+ },
2096
+ ],
2097
+ "carousel-navigation-arrow-left_leftIcon": {
2098
+ height: "24px",
2099
+ width: "24px",
2100
+ },
2101
+ "carousel-navigation-arrow-right_rightIcon": {
2102
+ height: "24px",
2103
+ width: "24px",
2104
+ },
2105
+ },
2106
+ config: {
2107
+ cards_levoGroup: {
2108
+ carousel: {
2109
+ loop: true,
2110
+ },
2111
+ },
2112
+ "carousel-navigation-arrow-left": {
2113
+ button_icons: {
2114
+ left: {
2115
+ enabled: true,
2116
+ },
2117
+ },
2118
+ },
2119
+ "carousel-navigation-arrow-right": {
2120
+ button_icons: {
2121
+ right: {
2122
+ enabled: true,
2123
+ },
2124
+ },
2125
+ },
2126
+ title: {
2127
+ heading: {
2128
+ level: 2,
2129
+ },
2130
+ selectedVariants: {
2131
+ Heading_Level: "H2",
2132
+ },
2133
+ },
2134
+ cards: [{}, {}],
2135
+ },
2136
+ content: DEFAULT_CONTENT,
2137
+ },
2138
+ ],
2139
+ };