@levo-so/blocks 0.1.0 → 0.1.2

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 (471) hide show
  1. package/package.json +5 -9
  2. package/src/blocks/about-us/about-us-1.schema.ts +563 -0
  3. package/src/blocks/about-us/about-us-1.tsx +53 -0
  4. package/src/blocks/blogs/blog-listing-1.schema.ts +419 -0
  5. package/src/blocks/blogs/blog-listing-1.tsx +79 -0
  6. package/src/blocks/blogs/blog-listing-2.schema.ts +608 -0
  7. package/src/blocks/blogs/blog-listing-2.tsx +83 -0
  8. package/src/blocks/blogs/blog-post-1.schema.ts +392 -0
  9. package/src/blocks/blogs/blog-post-1.tsx +52 -0
  10. package/src/blocks/blogs/blog-post-2.schema.ts +834 -0
  11. package/src/blocks/blogs/blog-post-2.tsx +131 -0
  12. package/src/blocks/cards/cards-10.schema.ts +433 -0
  13. package/src/blocks/cards/cards-10.tsx +46 -0
  14. package/src/blocks/cards/cards-11.schema.ts +440 -0
  15. package/src/blocks/cards/cards-11.tsx +50 -0
  16. package/src/blocks/cards/cards-12.schema.ts +578 -0
  17. package/src/blocks/cards/cards-12.tsx +54 -0
  18. package/src/blocks/cards/cards-2.schema.ts +293 -0
  19. package/src/blocks/cards/cards-2.tsx +42 -0
  20. package/src/blocks/cards/cards-3.schema.ts +365 -0
  21. package/src/blocks/cards/cards-3.tsx +49 -0
  22. package/src/blocks/cards/cards-4.schema.ts +677 -0
  23. package/src/blocks/cards/cards-4.tsx +50 -0
  24. package/src/blocks/cards/cards-5.schema.ts +264 -0
  25. package/src/blocks/cards/cards-5.tsx +34 -0
  26. package/src/blocks/cards/cards-6.schema.ts +639 -0
  27. package/src/blocks/cards/cards-6.tsx +136 -0
  28. package/src/blocks/cards/cards-7.schema.ts +1793 -0
  29. package/src/blocks/cards/cards-7.tsx +165 -0
  30. package/src/blocks/cards/cards-8.schema.ts +691 -0
  31. package/src/blocks/cards/cards-8.tsx +43 -0
  32. package/src/blocks/cards/cards-9.schema.ts +827 -0
  33. package/src/blocks/cards/cards-9.tsx +54 -0
  34. package/src/blocks/carousel/carousel-1.schema.ts +250 -0
  35. package/src/blocks/carousel/carousel-1.tsx +79 -0
  36. package/src/blocks/contact-us/contact-us-1.schema.ts +226 -0
  37. package/src/blocks/contact-us/contact-us-1.tsx +39 -0
  38. package/src/blocks/contact-us/contact-us-2.schema.ts +524 -0
  39. package/src/blocks/contact-us/contact-us-2.tsx +71 -0
  40. package/src/blocks/content/content-1.schema.ts +884 -0
  41. package/src/blocks/content/content-1.tsx +69 -0
  42. package/src/blocks/content/content-2.schema.ts +209 -0
  43. package/src/blocks/content/content-2.tsx +32 -0
  44. package/src/blocks/content/content-3.schema.ts +864 -0
  45. package/src/blocks/content/content-3.tsx +54 -0
  46. package/src/blocks/content/content-4.schema.ts +287 -0
  47. package/src/blocks/content/content-4.tsx +47 -0
  48. package/src/blocks/content/content-5.schema.ts +944 -0
  49. package/src/blocks/content/content-5.tsx +58 -0
  50. package/src/blocks/content/content-6.schema.ts +991 -0
  51. package/src/blocks/content/content-6.tsx +61 -0
  52. package/src/blocks/cta/cta-1.schema.ts +361 -0
  53. package/src/blocks/cta/cta-1.tsx +33 -0
  54. package/src/blocks/cta/cta-2.schema.ts +209 -0
  55. package/src/blocks/cta/cta-2.tsx +28 -0
  56. package/src/blocks/cta/cta-3.schema.ts +156 -0
  57. package/src/blocks/cta/cta-3.tsx +48 -0
  58. package/src/blocks/embed/embed-1.schema.ts +153 -0
  59. package/src/blocks/embed/embed-1.tsx +38 -0
  60. package/src/blocks/event/event-details.schema.ts +737 -0
  61. package/src/blocks/event/event-details.tsx +107 -0
  62. package/src/blocks/event/event-listing-2.schema.ts +496 -0
  63. package/src/blocks/event/event-listing-2.tsx +70 -0
  64. package/src/blocks/event/event-listing-3.schema.ts +605 -0
  65. package/src/blocks/event/event-listing-3.tsx +95 -0
  66. package/src/blocks/event/event-listing.schema.ts +1358 -0
  67. package/src/blocks/event/event-listing.tsx +90 -0
  68. package/src/blocks/faq/faq-1.schema.ts +357 -0
  69. package/src/blocks/faq/faq-1.tsx +65 -0
  70. package/src/blocks/faq/faq-2.schema.ts +356 -0
  71. package/src/blocks/faq/faq-2.tsx +84 -0
  72. package/src/blocks/faq/faq-3.schema.ts +475 -0
  73. package/src/blocks/faq/faq-3.tsx +70 -0
  74. package/src/blocks/features/features-1/features-1.schema.ts +165 -0
  75. package/src/blocks/features/features-1/features-1.tsx +48 -0
  76. package/src/blocks/features/features-1/variants/default.ts +197 -0
  77. package/{dist/blocks/features/features-1/variants/index.js → src/blocks/features/features-1/variants/index.ts} +7 -1
  78. package/src/blocks/features/features-1/variants/stylized-cards-v1.ts +138 -0
  79. package/src/blocks/features/features-1/variants/stylized-cards-v2.ts +487 -0
  80. package/src/blocks/features/features-2.schema.ts +338 -0
  81. package/src/blocks/features/features-2.tsx +66 -0
  82. package/src/blocks/features/features-3.schema.ts +438 -0
  83. package/src/blocks/features/features-3.tsx +56 -0
  84. package/src/blocks/features/features-4.schema.ts +631 -0
  85. package/src/blocks/features/features-4.tsx +75 -0
  86. package/src/blocks/features/features-5.schema.ts +747 -0
  87. package/src/blocks/features/features-5.tsx +49 -0
  88. package/src/blocks/features/features-6.schema.ts +849 -0
  89. package/src/blocks/features/features-6.tsx +125 -0
  90. package/src/blocks/footer/footer-1.schema.ts +589 -0
  91. package/src/blocks/footer/footer-1.tsx +90 -0
  92. package/src/blocks/footer/footer-2.schema.ts +898 -0
  93. package/src/blocks/footer/footer-2.tsx +77 -0
  94. package/src/blocks/footer/footer-3.schema.ts +487 -0
  95. package/src/blocks/footer/footer-3.tsx +100 -0
  96. package/src/blocks/footer/footer-4.schema.ts +644 -0
  97. package/src/blocks/footer/footer-4.tsx +97 -0
  98. package/src/blocks/footer/footer-5.schema.ts +425 -0
  99. package/src/blocks/footer/footer-5.tsx +91 -0
  100. package/src/blocks/hero/hero-1.schema.ts +766 -0
  101. package/src/blocks/hero/hero-1.tsx +52 -0
  102. package/src/blocks/hero/hero-2.schema.ts +316 -0
  103. package/src/blocks/hero/hero-2.tsx +49 -0
  104. package/src/blocks/hero/hero-3.schema.ts +415 -0
  105. package/src/blocks/hero/hero-3.tsx +50 -0
  106. package/src/blocks/hero/hero-4.schema.ts +325 -0
  107. package/src/blocks/hero/hero-4.tsx +89 -0
  108. package/src/blocks/hero/hero-5.schema.ts +192 -0
  109. package/src/blocks/hero/hero-5.tsx +86 -0
  110. package/src/blocks/hero/hero-6.schema.ts +703 -0
  111. package/src/blocks/hero/hero-6.tsx +62 -0
  112. package/src/blocks/hero/hero-7.schema.ts +508 -0
  113. package/src/blocks/hero/hero-7.tsx +115 -0
  114. package/src/blocks/hero/hero-8.schema.ts +372 -0
  115. package/src/blocks/hero/hero-8.tsx +113 -0
  116. package/src/blocks/hero/hero-9.schema.ts +379 -0
  117. package/src/blocks/hero/hero-9.tsx +49 -0
  118. package/src/blocks/index.ts +78 -0
  119. package/src/blocks/logos/logos-1.schema.ts +264 -0
  120. package/src/blocks/logos/logos-1.tsx +60 -0
  121. package/src/blocks/navbar/navbar-1.schema.ts +961 -0
  122. package/src/blocks/navbar/navbar-1.tsx +398 -0
  123. package/src/blocks/navbar/navbar-2.schema.ts +1226 -0
  124. package/src/blocks/navbar/navbar-2.tsx +417 -0
  125. package/src/blocks/pricing/pricing-1.schema.ts +1002 -0
  126. package/src/blocks/pricing/pricing-1.tsx +88 -0
  127. package/src/blocks/products/products-listing-1.schema.ts +274 -0
  128. package/src/blocks/products/products-listing-1.tsx +48 -0
  129. package/src/blocks/stats/stats-1.schema.ts +231 -0
  130. package/src/blocks/stats/stats-1.tsx +38 -0
  131. package/src/blocks/stats/stats-2.schema.ts +111 -0
  132. package/src/blocks/stats/stats-2.tsx +52 -0
  133. package/src/blocks/stats/variants/default.ts +190 -0
  134. package/src/blocks/stats/variants/hero.ts +153 -0
  135. package/{dist/blocks/stats/variants/index.js → src/blocks/stats/variants/index.ts} +1 -0
  136. package/src/blocks/team/team-1.schema.ts +516 -0
  137. package/src/blocks/team/team-1.tsx +80 -0
  138. package/src/blocks/team/team-2.schema.ts +2813 -0
  139. package/src/blocks/team/team-2.tsx +74 -0
  140. package/src/blocks/team/team-3.schema.ts +707 -0
  141. package/src/blocks/team/team-3.tsx +103 -0
  142. package/src/blocks/termsAndPrivacy/terms-and-conditions-1.schema.ts +168 -0
  143. package/src/blocks/termsAndPrivacy/terms-and-conditions-1.tsx +29 -0
  144. package/src/blocks/testimonial/testimonial-1.schema.ts +345 -0
  145. package/src/blocks/testimonial/testimonial-1.tsx +79 -0
  146. package/src/blocks/testimonial/testimonial-2.schema.ts +816 -0
  147. package/src/blocks/testimonial/testimonial-2.tsx +161 -0
  148. package/src/blocks/testimonial/testimonial-3.schema.ts +279 -0
  149. package/src/blocks/testimonial/testimonial-3.tsx +128 -0
  150. package/src/blocks/testimonial/testimonial-4.schema.ts +3373 -0
  151. package/src/blocks/testimonial/testimonial-4.tsx +202 -0
  152. package/src/blocks/testimonial/testimonial-5.schema.ts +434 -0
  153. package/src/blocks/testimonial/testimonial-5.tsx +106 -0
  154. package/src/blocks/testimonial/testimonial-6.schema.ts +709 -0
  155. package/src/blocks/testimonial/testimonial-6.tsx +128 -0
  156. package/{dist/index.js → src/index.ts} +5 -2
  157. package/{dist/schemas/blocks.js → src/schemas/blocks.ts} +75 -72
  158. package/src/schemas/categories.ts +134 -0
  159. package/src/styles.d.ts +4 -0
  160. package/dist/blocks/about-us/about-us-1.d.ts +0 -5
  161. package/dist/blocks/about-us/about-us-1.js +0 -5
  162. package/dist/blocks/about-us/about-us-1.schema.d.ts +0 -38
  163. package/dist/blocks/about-us/about-us-1.schema.js +0 -537
  164. package/dist/blocks/blogs/blog-listing-1.d.ts +0 -5
  165. package/dist/blocks/blogs/blog-listing-1.js +0 -12
  166. package/dist/blocks/blogs/blog-listing-1.schema.d.ts +0 -59
  167. package/dist/blocks/blogs/blog-listing-1.schema.js +0 -387
  168. package/dist/blocks/blogs/blog-listing-2.d.ts +0 -5
  169. package/dist/blocks/blogs/blog-listing-2.js +0 -9
  170. package/dist/blocks/blogs/blog-listing-2.schema.d.ts +0 -104
  171. package/dist/blocks/blogs/blog-listing-2.schema.js +0 -572
  172. package/dist/blocks/blogs/blog-post-1.d.ts +0 -6
  173. package/dist/blocks/blogs/blog-post-1.js +0 -8
  174. package/dist/blocks/blogs/blog-post-1.schema.d.ts +0 -48
  175. package/dist/blocks/blogs/blog-post-1.schema.js +0 -358
  176. package/dist/blocks/blogs/blog-post-2.d.ts +0 -6
  177. package/dist/blocks/blogs/blog-post-2.js +0 -8
  178. package/dist/blocks/blogs/blog-post-2.schema.d.ts +0 -74
  179. package/dist/blocks/blogs/blog-post-2.schema.js +0 -779
  180. package/dist/blocks/cards/cards-10.d.ts +0 -6
  181. package/dist/blocks/cards/cards-10.js +0 -4
  182. package/dist/blocks/cards/cards-10.schema.d.ts +0 -44
  183. package/dist/blocks/cards/cards-10.schema.js +0 -405
  184. package/dist/blocks/cards/cards-11.d.ts +0 -6
  185. package/dist/blocks/cards/cards-11.js +0 -4
  186. package/dist/blocks/cards/cards-11.schema.d.ts +0 -58
  187. package/dist/blocks/cards/cards-11.schema.js +0 -406
  188. package/dist/blocks/cards/cards-12.d.ts +0 -6
  189. package/dist/blocks/cards/cards-12.js +0 -4
  190. package/dist/blocks/cards/cards-12.schema.d.ts +0 -38
  191. package/dist/blocks/cards/cards-12.schema.js +0 -545
  192. package/dist/blocks/cards/cards-2.d.ts +0 -5
  193. package/dist/blocks/cards/cards-2.js +0 -4
  194. package/dist/blocks/cards/cards-2.schema.d.ts +0 -46
  195. package/dist/blocks/cards/cards-2.schema.js +0 -260
  196. package/dist/blocks/cards/cards-3.d.ts +0 -6
  197. package/dist/blocks/cards/cards-3.js +0 -5
  198. package/dist/blocks/cards/cards-3.schema.d.ts +0 -36
  199. package/dist/blocks/cards/cards-3.schema.js +0 -351
  200. package/dist/blocks/cards/cards-4.d.ts +0 -6
  201. package/dist/blocks/cards/cards-4.js +0 -4
  202. package/dist/blocks/cards/cards-4.schema.d.ts +0 -40
  203. package/dist/blocks/cards/cards-4.schema.js +0 -648
  204. package/dist/blocks/cards/cards-5.d.ts +0 -5
  205. package/dist/blocks/cards/cards-5.js +0 -4
  206. package/dist/blocks/cards/cards-5.schema.d.ts +0 -48
  207. package/dist/blocks/cards/cards-5.schema.js +0 -238
  208. package/dist/blocks/cards/cards-6.d.ts +0 -5
  209. package/dist/blocks/cards/cards-6.js +0 -45
  210. package/dist/blocks/cards/cards-6.schema.d.ts +0 -50
  211. package/dist/blocks/cards/cards-6.schema.js +0 -608
  212. package/dist/blocks/cards/cards-7.d.ts +0 -5
  213. package/dist/blocks/cards/cards-7.js +0 -45
  214. package/dist/blocks/cards/cards-7.schema.d.ts +0 -87
  215. package/dist/blocks/cards/cards-7.schema.js +0 -1732
  216. package/dist/blocks/cards/cards-8.d.ts +0 -6
  217. package/dist/blocks/cards/cards-8.js +0 -4
  218. package/dist/blocks/cards/cards-8.schema.d.ts +0 -40
  219. package/dist/blocks/cards/cards-8.schema.js +0 -660
  220. package/dist/blocks/cards/cards-9.d.ts +0 -5
  221. package/dist/blocks/cards/cards-9.js +0 -4
  222. package/dist/blocks/cards/cards-9.schema.d.ts +0 -55
  223. package/dist/blocks/cards/cards-9.schema.js +0 -798
  224. package/dist/blocks/carousel/carousel-1.d.ts +0 -5
  225. package/dist/blocks/carousel/carousel-1.js +0 -12
  226. package/dist/blocks/carousel/carousel-1.schema.d.ts +0 -51
  227. package/dist/blocks/carousel/carousel-1.schema.js +0 -236
  228. package/dist/blocks/contact-us/contact-us-1.d.ts +0 -5
  229. package/dist/blocks/contact-us/contact-us-1.js +0 -4
  230. package/dist/blocks/contact-us/contact-us-1.schema.d.ts +0 -31
  231. package/dist/blocks/contact-us/contact-us-1.schema.js +0 -202
  232. package/dist/blocks/contact-us/contact-us-2.d.ts +0 -5
  233. package/dist/blocks/contact-us/contact-us-2.js +0 -4
  234. package/dist/blocks/contact-us/contact-us-2.schema.d.ts +0 -59
  235. package/dist/blocks/contact-us/contact-us-2.schema.js +0 -512
  236. package/dist/blocks/content/content-1.d.ts +0 -6
  237. package/dist/blocks/content/content-1.js +0 -4
  238. package/dist/blocks/content/content-1.schema.d.ts +0 -56
  239. package/dist/blocks/content/content-1.schema.js +0 -807
  240. package/dist/blocks/content/content-2.d.ts +0 -5
  241. package/dist/blocks/content/content-2.js +0 -4
  242. package/dist/blocks/content/content-2.schema.d.ts +0 -78
  243. package/dist/blocks/content/content-2.schema.js +0 -200
  244. package/dist/blocks/content/content-3.d.ts +0 -6
  245. package/dist/blocks/content/content-3.js +0 -5
  246. package/dist/blocks/content/content-3.schema.d.ts +0 -23
  247. package/dist/blocks/content/content-3.schema.js +0 -850
  248. package/dist/blocks/content/content-4.d.ts +0 -6
  249. package/dist/blocks/content/content-4.js +0 -6
  250. package/dist/blocks/content/content-4.schema.d.ts +0 -33
  251. package/dist/blocks/content/content-4.schema.js +0 -252
  252. package/dist/blocks/content/content-5.d.ts +0 -6
  253. package/dist/blocks/content/content-5.js +0 -5
  254. package/dist/blocks/content/content-5.schema.d.ts +0 -37
  255. package/dist/blocks/content/content-5.schema.js +0 -932
  256. package/dist/blocks/content/content-6.d.ts +0 -6
  257. package/dist/blocks/content/content-6.js +0 -5
  258. package/dist/blocks/content/content-6.schema.d.ts +0 -41
  259. package/dist/blocks/content/content-6.schema.js +0 -976
  260. package/dist/blocks/cta/cta-1.d.ts +0 -5
  261. package/dist/blocks/cta/cta-1.js +0 -4
  262. package/dist/blocks/cta/cta-1.schema.d.ts +0 -40
  263. package/dist/blocks/cta/cta-1.schema.js +0 -339
  264. package/dist/blocks/cta/cta-2.d.ts +0 -5
  265. package/dist/blocks/cta/cta-2.js +0 -4
  266. package/dist/blocks/cta/cta-2.schema.d.ts +0 -45
  267. package/dist/blocks/cta/cta-2.schema.js +0 -183
  268. package/dist/blocks/cta/cta-3.d.ts +0 -5
  269. package/dist/blocks/cta/cta-3.js +0 -4
  270. package/dist/blocks/cta/cta-3.schema.d.ts +0 -34
  271. package/dist/blocks/cta/cta-3.schema.js +0 -137
  272. package/dist/blocks/embed/embed-1.d.ts +0 -5
  273. package/dist/blocks/embed/embed-1.js +0 -5
  274. package/dist/blocks/embed/embed-1.schema.d.ts +0 -13
  275. package/dist/blocks/embed/embed-1.schema.js +0 -146
  276. package/dist/blocks/event/event-details.d.ts +0 -5
  277. package/dist/blocks/event/event-details.js +0 -9
  278. package/dist/blocks/event/event-details.schema.d.ts +0 -112
  279. package/dist/blocks/event/event-details.schema.js +0 -685
  280. package/dist/blocks/event/event-listing-2.d.ts +0 -5
  281. package/dist/blocks/event/event-listing-2.js +0 -4
  282. package/dist/blocks/event/event-listing-2.schema.d.ts +0 -84
  283. package/dist/blocks/event/event-listing-2.schema.js +0 -455
  284. package/dist/blocks/event/event-listing-3.d.ts +0 -5
  285. package/dist/blocks/event/event-listing-3.js +0 -10
  286. package/dist/blocks/event/event-listing-3.schema.d.ts +0 -77
  287. package/dist/blocks/event/event-listing-3.schema.js +0 -570
  288. package/dist/blocks/event/event-listing.d.ts +0 -5
  289. package/dist/blocks/event/event-listing.js +0 -10
  290. package/dist/blocks/event/event-listing.schema.d.ts +0 -51
  291. package/dist/blocks/event/event-listing.schema.js +0 -1297
  292. package/dist/blocks/faq/faq-1.d.ts +0 -5
  293. package/dist/blocks/faq/faq-1.js +0 -4
  294. package/dist/blocks/faq/faq-1.schema.d.ts +0 -47
  295. package/dist/blocks/faq/faq-1.schema.js +0 -325
  296. package/dist/blocks/faq/faq-2.d.ts +0 -6
  297. package/dist/blocks/faq/faq-2.js +0 -19
  298. package/dist/blocks/faq/faq-2.schema.d.ts +0 -47
  299. package/dist/blocks/faq/faq-2.schema.js +0 -329
  300. package/dist/blocks/faq/faq-3.d.ts +0 -5
  301. package/dist/blocks/faq/faq-3.js +0 -4
  302. package/dist/blocks/faq/faq-3.schema.d.ts +0 -40
  303. package/dist/blocks/faq/faq-3.schema.js +0 -444
  304. package/dist/blocks/features/features-1/features-1.d.ts +0 -5
  305. package/dist/blocks/features/features-1/features-1.js +0 -4
  306. package/dist/blocks/features/features-1/features-1.schema.d.ts +0 -5
  307. package/dist/blocks/features/features-1/features-1.schema.js +0 -142
  308. package/dist/blocks/features/features-1/variants/default.d.ts +0 -37
  309. package/dist/blocks/features/features-1/variants/default.js +0 -185
  310. package/dist/blocks/features/features-1/variants/index.d.ts +0 -5
  311. package/dist/blocks/features/features-1/variants/stylized-cards-v1.d.ts +0 -3
  312. package/dist/blocks/features/features-1/variants/stylized-cards-v1.js +0 -132
  313. package/dist/blocks/features/features-1/variants/stylized-cards-v2.d.ts +0 -3
  314. package/dist/blocks/features/features-1/variants/stylized-cards-v2.js +0 -484
  315. package/dist/blocks/features/features-2.d.ts +0 -5
  316. package/dist/blocks/features/features-2.js +0 -8
  317. package/dist/blocks/features/features-2.schema.d.ts +0 -41
  318. package/dist/blocks/features/features-2.schema.js +0 -321
  319. package/dist/blocks/features/features-3.d.ts +0 -5
  320. package/dist/blocks/features/features-3.js +0 -4
  321. package/dist/blocks/features/features-3.schema.d.ts +0 -40
  322. package/dist/blocks/features/features-3.schema.js +0 -424
  323. package/dist/blocks/features/features-4.d.ts +0 -5
  324. package/dist/blocks/features/features-4.js +0 -4
  325. package/dist/blocks/features/features-4.schema.d.ts +0 -60
  326. package/dist/blocks/features/features-4.schema.js +0 -594
  327. package/dist/blocks/features/features-5.d.ts +0 -6
  328. package/dist/blocks/features/features-5.js +0 -5
  329. package/dist/blocks/features/features-5.schema.d.ts +0 -28
  330. package/dist/blocks/features/features-5.schema.js +0 -727
  331. package/dist/blocks/features/features-6.d.ts +0 -5
  332. package/dist/blocks/features/features-6.js +0 -31
  333. package/dist/blocks/features/features-6.schema.d.ts +0 -74
  334. package/dist/blocks/features/features-6.schema.js +0 -814
  335. package/dist/blocks/footer/footer-1.d.ts +0 -6
  336. package/dist/blocks/footer/footer-1.js +0 -5
  337. package/dist/blocks/footer/footer-1.schema.d.ts +0 -62
  338. package/dist/blocks/footer/footer-1.schema.js +0 -565
  339. package/dist/blocks/footer/footer-2.d.ts +0 -5
  340. package/dist/blocks/footer/footer-2.js +0 -4
  341. package/dist/blocks/footer/footer-2.schema.d.ts +0 -76
  342. package/dist/blocks/footer/footer-2.schema.js +0 -876
  343. package/dist/blocks/footer/footer-3.d.ts +0 -6
  344. package/dist/blocks/footer/footer-3.js +0 -15
  345. package/dist/blocks/footer/footer-3.schema.d.ts +0 -48
  346. package/dist/blocks/footer/footer-3.schema.js +0 -475
  347. package/dist/blocks/footer/footer-4.d.ts +0 -6
  348. package/dist/blocks/footer/footer-4.js +0 -5
  349. package/dist/blocks/footer/footer-4.schema.d.ts +0 -71
  350. package/dist/blocks/footer/footer-4.schema.js +0 -620
  351. package/dist/blocks/footer/footer-5.d.ts +0 -6
  352. package/dist/blocks/footer/footer-5.js +0 -5
  353. package/dist/blocks/footer/footer-5.schema.d.ts +0 -52
  354. package/dist/blocks/footer/footer-5.schema.js +0 -400
  355. package/dist/blocks/hero/hero-1.d.ts +0 -5
  356. package/dist/blocks/hero/hero-1.js +0 -4
  357. package/dist/blocks/hero/hero-1.schema.d.ts +0 -35
  358. package/dist/blocks/hero/hero-1.schema.js +0 -742
  359. package/dist/blocks/hero/hero-2.d.ts +0 -5
  360. package/dist/blocks/hero/hero-2.js +0 -4
  361. package/dist/blocks/hero/hero-2.schema.d.ts +0 -46
  362. package/dist/blocks/hero/hero-2.schema.js +0 -282
  363. package/dist/blocks/hero/hero-3.d.ts +0 -5
  364. package/dist/blocks/hero/hero-3.js +0 -4
  365. package/dist/blocks/hero/hero-3.schema.d.ts +0 -54
  366. package/dist/blocks/hero/hero-3.schema.js +0 -378
  367. package/dist/blocks/hero/hero-4.d.ts +0 -5
  368. package/dist/blocks/hero/hero-4.js +0 -30
  369. package/dist/blocks/hero/hero-4.schema.d.ts +0 -33
  370. package/dist/blocks/hero/hero-4.schema.js +0 -316
  371. package/dist/blocks/hero/hero-5.d.ts +0 -5
  372. package/dist/blocks/hero/hero-5.js +0 -30
  373. package/dist/blocks/hero/hero-5.schema.d.ts +0 -32
  374. package/dist/blocks/hero/hero-5.schema.js +0 -183
  375. package/dist/blocks/hero/hero-6.d.ts +0 -5
  376. package/dist/blocks/hero/hero-6.js +0 -8
  377. package/dist/blocks/hero/hero-6.schema.d.ts +0 -36
  378. package/dist/blocks/hero/hero-6.schema.js +0 -617
  379. package/dist/blocks/hero/hero-7.d.ts +0 -5
  380. package/dist/blocks/hero/hero-7.js +0 -40
  381. package/dist/blocks/hero/hero-7.schema.d.ts +0 -12
  382. package/dist/blocks/hero/hero-7.schema.js +0 -471
  383. package/dist/blocks/hero/hero-8.d.ts +0 -5
  384. package/dist/blocks/hero/hero-8.js +0 -39
  385. package/dist/blocks/hero/hero-8.schema.d.ts +0 -17
  386. package/dist/blocks/hero/hero-8.schema.js +0 -343
  387. package/dist/blocks/hero/hero-9.d.ts +0 -6
  388. package/dist/blocks/hero/hero-9.js +0 -4
  389. package/dist/blocks/hero/hero-9.schema.d.ts +0 -39
  390. package/dist/blocks/hero/hero-9.schema.js +0 -355
  391. package/dist/blocks/index.d.ts +0 -3
  392. package/dist/blocks/index.js +0 -74
  393. package/dist/blocks/logos/logos-1.d.ts +0 -5
  394. package/dist/blocks/logos/logos-1.js +0 -10
  395. package/dist/blocks/logos/logos-1.schema.d.ts +0 -34
  396. package/dist/blocks/logos/logos-1.schema.js +0 -239
  397. package/dist/blocks/navbar/navbar-1.d.ts +0 -6
  398. package/dist/blocks/navbar/navbar-1.js +0 -100
  399. package/dist/blocks/navbar/navbar-1.schema.d.ts +0 -117
  400. package/dist/blocks/navbar/navbar-1.schema.js +0 -938
  401. package/dist/blocks/navbar/navbar-2.d.ts +0 -6
  402. package/dist/blocks/navbar/navbar-2.js +0 -99
  403. package/dist/blocks/navbar/navbar-2.schema.d.ts +0 -134
  404. package/dist/blocks/navbar/navbar-2.schema.js +0 -1200
  405. package/dist/blocks/pricing/pricing-1.d.ts +0 -5
  406. package/dist/blocks/pricing/pricing-1.js +0 -4
  407. package/dist/blocks/pricing/pricing-1.schema.d.ts +0 -87
  408. package/dist/blocks/pricing/pricing-1.schema.js +0 -976
  409. package/dist/blocks/products/products-listing-1.d.ts +0 -5
  410. package/dist/blocks/products/products-listing-1.js +0 -4
  411. package/dist/blocks/products/products-listing-1.schema.d.ts +0 -36
  412. package/dist/blocks/products/products-listing-1.schema.js +0 -264
  413. package/dist/blocks/stats/stats-1.d.ts +0 -6
  414. package/dist/blocks/stats/stats-1.js +0 -6
  415. package/dist/blocks/stats/stats-1.schema.d.ts +0 -25
  416. package/dist/blocks/stats/stats-1.schema.js +0 -213
  417. package/dist/blocks/stats/stats-2.d.ts +0 -6
  418. package/dist/blocks/stats/stats-2.js +0 -6
  419. package/dist/blocks/stats/stats-2.schema.d.ts +0 -5
  420. package/dist/blocks/stats/stats-2.schema.js +0 -104
  421. package/dist/blocks/stats/variants/default.d.ts +0 -22
  422. package/dist/blocks/stats/variants/default.js +0 -185
  423. package/dist/blocks/stats/variants/hero.d.ts +0 -3
  424. package/dist/blocks/stats/variants/hero.js +0 -151
  425. package/dist/blocks/stats/variants/index.d.ts +0 -4
  426. package/dist/blocks/team/team-1.d.ts +0 -6
  427. package/dist/blocks/team/team-1.js +0 -6
  428. package/dist/blocks/team/team-1.schema.d.ts +0 -65
  429. package/dist/blocks/team/team-1.schema.js +0 -476
  430. package/dist/blocks/team/team-2.d.ts +0 -6
  431. package/dist/blocks/team/team-2.js +0 -6
  432. package/dist/blocks/team/team-2.schema.d.ts +0 -52
  433. package/dist/blocks/team/team-2.schema.js +0 -2732
  434. package/dist/blocks/team/team-3.d.ts +0 -5
  435. package/dist/blocks/team/team-3.js +0 -30
  436. package/dist/blocks/team/team-3.schema.d.ts +0 -32
  437. package/dist/blocks/team/team-3.schema.js +0 -679
  438. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.d.ts +0 -6
  439. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.js +0 -4
  440. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.schema.d.ts +0 -14
  441. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.schema.js +0 -154
  442. package/dist/blocks/testimonial/testimonial-1.d.ts +0 -5
  443. package/dist/blocks/testimonial/testimonial-1.js +0 -10
  444. package/dist/blocks/testimonial/testimonial-1.schema.d.ts +0 -16
  445. package/dist/blocks/testimonial/testimonial-1.schema.js +0 -314
  446. package/dist/blocks/testimonial/testimonial-2.d.ts +0 -5
  447. package/dist/blocks/testimonial/testimonial-2.js +0 -42
  448. package/dist/blocks/testimonial/testimonial-2.schema.d.ts +0 -54
  449. package/dist/blocks/testimonial/testimonial-2.schema.js +0 -771
  450. package/dist/blocks/testimonial/testimonial-3.d.ts +0 -5
  451. package/dist/blocks/testimonial/testimonial-3.js +0 -38
  452. package/dist/blocks/testimonial/testimonial-3.schema.d.ts +0 -56
  453. package/dist/blocks/testimonial/testimonial-3.schema.js +0 -260
  454. package/dist/blocks/testimonial/testimonial-4.d.ts +0 -5
  455. package/dist/blocks/testimonial/testimonial-4.js +0 -51
  456. package/dist/blocks/testimonial/testimonial-4.schema.d.ts +0 -145
  457. package/dist/blocks/testimonial/testimonial-4.schema.js +0 -3214
  458. package/dist/blocks/testimonial/testimonial-5.d.ts +0 -5
  459. package/dist/blocks/testimonial/testimonial-5.js +0 -31
  460. package/dist/blocks/testimonial/testimonial-5.schema.d.ts +0 -33
  461. package/dist/blocks/testimonial/testimonial-5.schema.js +0 -401
  462. package/dist/blocks/testimonial/testimonial-6.d.ts +0 -5
  463. package/dist/blocks/testimonial/testimonial-6.js +0 -39
  464. package/dist/blocks/testimonial/testimonial-6.schema.d.ts +0 -60
  465. package/dist/blocks/testimonial/testimonial-6.schema.js +0 -695
  466. package/dist/index.d.ts +0 -6
  467. package/dist/schemas/blocks.d.ts +0 -3
  468. package/dist/schemas/categories.d.ts +0 -3
  469. package/dist/schemas/categories.js +0 -129
  470. package/dist/schemas/index.d.ts +0 -3
  471. /package/{dist/schemas/index.js → src/schemas/index.ts} +0 -0
@@ -1,742 +0,0 @@
1
- const DEFAULT_CONTENT = {
2
- layout: null,
3
- container: null,
4
- content_wrapper: null,
5
- text_wrapper: null,
6
- label: "Portfolio",
7
- title: "Investment Solutions That Work",
8
- description: "Our comprehensive financial services help you achieve your goals through expert guidance and innovative solutions.",
9
- hero_ctas: [
10
- {
11
- button: "Learn More",
12
- },
13
- ],
14
- hero_images: [
15
- {
16
- image: {
17
- id: "7141014160938075687",
18
- location: "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH.png",
19
- kind: "image",
20
- mimetype: "image/png",
21
- srcset: {
22
- "1080w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1080w.webp",
23
- "1200w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1200w.webp",
24
- "1920w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1920w.webp",
25
- "320w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-320w.webp",
26
- "640w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-640w.webp",
27
- "750w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-750w.webp",
28
- "828w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-828w.webp",
29
- path: "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-640w.webp 640w, https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1080w.webp 1080w, https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1200w.webp 1200w, https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1920w.webp 1920w, https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-320w.webp 320w, https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-750w.webp 750w, https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-828w.webp 828w",
30
- },
31
- },
32
- },
33
- ],
34
- };
35
- export const Hero1 = {
36
- category_id: "hero",
37
- title: "Hero 1",
38
- key: "hero-1",
39
- version: "v1",
40
- prompt_description: "Large image on the left with a bold headline, supporting text, and a prominent call-to-action button arranged vertically on the right.",
41
- content_schema: [
42
- {
43
- key: "layout",
44
- label: "Layout",
45
- field_interface: "LayoutWidget",
46
- hint: {
47
- prompt_description: "Defines the overall horizontal split layout of this hero section block, with a large left panel for the hero image and a right panel containing text and a button. This should create a visually balanced, modern hero section.",
48
- },
49
- },
50
- {
51
- key: "container",
52
- label: "Container",
53
- field_interface: "ContainerWidget",
54
- hint: {
55
- prompt_description: "Provides structural alignment and padding for the hero section, ensuring content is centered within the available viewport. Use a moderate max-width and generous horizontal padding for a clean, professional look.",
56
- },
57
- },
58
- {
59
- key: "content_wrapper",
60
- label: "Content Wrapper",
61
- field_interface: "BoxWidget",
62
- hint: {
63
- prompt_description: "A flexbox container holding the hero image on the left and the text/button stack on the right. Ensure space between elements and vertical centering to create a polished, spacious hero layout.",
64
- },
65
- },
66
- {
67
- key: "text_wrapper",
68
- label: "Text Wrapper",
69
- field_interface: "BoxWidget",
70
- hint: {
71
- prompt_description: "A vertical stack grouping the heading, subtitle, and call-to-action button together. Should align items to the left and provide ample vertical spacing for readability and focus.",
72
- },
73
- },
74
- {
75
- key: "label_wrapper",
76
- label: "Label Wrapper",
77
- field_interface: "BoxWidget",
78
- },
79
- {
80
- key: "horizontal_divider",
81
- label: "Horizontal Divider",
82
- field_interface: "BoxWidget",
83
- },
84
- {
85
- key: "label",
86
- label: "Label",
87
- field_interface: "TypographyWidget",
88
- hint: {
89
- prompt_description: "Small label text that appears before the main title. Use this for category tags, announcements, or brief descriptive text.",
90
- min_characters: 4,
91
- max_characters: 20,
92
- },
93
- },
94
- {
95
- key: "title",
96
- label: "Title",
97
- field_interface: "HeadingWidget",
98
- hint: {
99
- prompt_description: "Main heading of the hero section. Use a clear, confident, and succinct statement that communicates the value proposition or main service offered. Keep the tone professional, trustworthy, and aspirational.",
100
- min_characters: 24,
101
- max_characters: 48,
102
- },
103
- },
104
- {
105
- key: "description",
106
- label: "Description",
107
- field_interface: "TypographyWidget",
108
- hint: {
109
- prompt_description: "Brief supporting copy under the main heading. Summarize offerings or benefits in a concise, informative manner. Maintain a helpful, expert, and approachable tone. This should be 1-2 short sentences.",
110
- min_characters: 80,
111
- max_characters: 180,
112
- },
113
- },
114
- {
115
- key: "hero_ctas",
116
- label: "Call to Action",
117
- kind: "group",
118
- field_interface: "BoxWidget",
119
- fields: [
120
- {
121
- key: "button",
122
- label: "Button",
123
- field_interface: "ButtonWidget",
124
- hint: {
125
- prompt_description: "Call-to-action button label. Use clear, actionable language that invites the user to learn more or take the next step. The tone should be direct and encouraging.",
126
- min_characters: 8,
127
- max_characters: 18,
128
- },
129
- },
130
- ],
131
- },
132
- {
133
- key: "hero_images",
134
- label: "Hero Images",
135
- kind: "group",
136
- field_interface: "BoxWidget",
137
- fields: [
138
- {
139
- key: "image",
140
- label: "Image",
141
- field_interface: "MediaWidget",
142
- hint: {
143
- prompt_description: "A large, visually impactful image to the left of the hero section. Use a simple, brand-relevant illustration, product, or landscape. Should be clean, professional, and not distract from the text. Avoid excessive detail or text in the image.",
144
- orientation: "landscape",
145
- size: "large",
146
- usecase: "hero",
147
- },
148
- },
149
- ],
150
- },
151
- ],
152
- layouts: [
153
- {
154
- title: "Default",
155
- key: "default",
156
- styles: {
157
- layout: {
158
- width: "100%",
159
- "row-gap": "5xl",
160
- "column-gap": "5xl",
161
- "padding-top": "5xl",
162
- "padding-right": "8xl",
163
- "padding-bottom": "5xl",
164
- "padding-left": "8xl",
165
- tablet: {
166
- "padding-top": "3xl",
167
- "padding-right": "4xl",
168
- "padding-bottom": "3xl",
169
- "padding-left": "4xl",
170
- },
171
- },
172
- container: {
173
- "margin-left": "auto",
174
- "margin-right": "auto",
175
- display: "flex",
176
- flex: "1",
177
- "flex-direction": "row-reverse",
178
- "align-items": "start",
179
- "row-gap": "5xl",
180
- "column-gap": "5xl",
181
- mobile: {
182
- "flex-direction": "column",
183
- },
184
- },
185
- content_wrapper: {
186
- display: "flex",
187
- width: "50%",
188
- "flex-direction": "column",
189
- "align-items": "start",
190
- "justify-content": "center",
191
- "row-gap": "xl",
192
- "column-gap": "xl",
193
- mobile: {
194
- width: "100%",
195
- },
196
- },
197
- text_wrapper: {
198
- display: "flex",
199
- width: "100%",
200
- "flex-direction": "column",
201
- "align-items": "start",
202
- "justify-content": "center",
203
- },
204
- label: {
205
- "font-size": "sm",
206
- "font-weight": "500",
207
- color: "text-2",
208
- },
209
- title: {
210
- "font-size": "5xl",
211
- "font-weight": "700",
212
- "margin-bottom": "lg",
213
- tablet: {
214
- "font-size": "4xl",
215
- },
216
- mobile: {
217
- "margin-bottom": "xs",
218
- },
219
- },
220
- description: {
221
- "margin-bottom": "lg",
222
- mobile: {
223
- "margin-bottom": "xs",
224
- },
225
- },
226
- hero_ctas_levoGroup: {
227
- display: "flex",
228
- gap: "base",
229
- "flex-wrap": "wrap",
230
- },
231
- hero_ctas: [
232
- {
233
- button: {},
234
- },
235
- ],
236
- hero_images_levoGroup: {
237
- width: "50%",
238
- mobile: {
239
- width: "100%",
240
- },
241
- },
242
- hero_images: [
243
- {
244
- image: {
245
- width: "100%",
246
- },
247
- },
248
- ],
249
- },
250
- content: DEFAULT_CONTENT,
251
- config: {},
252
- },
253
- {
254
- title: "Card",
255
- key: "card",
256
- styles: {
257
- layout: {
258
- width: "100%",
259
- "row-gap": "5xl",
260
- "column-gap": "5xl",
261
- padding: "base",
262
- "background-color": "background-1",
263
- },
264
- container: {
265
- "margin-left": "auto",
266
- "margin-right": "auto",
267
- display: "flex",
268
- "flex-direction": "row",
269
- "align-items": "start",
270
- "row-gap": "5xl",
271
- "column-gap": "5xl",
272
- "border-radius": "2xl",
273
- "background-color": "white",
274
- "padding-top": "5xl",
275
- "padding-right": "8xl",
276
- "padding-bottom": "5xl",
277
- "padding-left": "8xl",
278
- tablet: {
279
- "padding-top": "3xl",
280
- "padding-right": "4xl",
281
- "padding-bottom": "3xl",
282
- "padding-left": "4xl",
283
- },
284
- mobile: {
285
- "flex-direction": "column",
286
- },
287
- },
288
- content_wrapper: {
289
- display: "flex",
290
- width: "50%",
291
- "flex-direction": "column",
292
- "align-items": "start",
293
- "justify-content": "center",
294
- "row-gap": "xl",
295
- "column-gap": "xl",
296
- mobile: {
297
- width: "100%",
298
- },
299
- },
300
- text_wrapper: {
301
- display: "flex",
302
- width: "100%",
303
- "flex-direction": "column",
304
- "align-items": "start",
305
- "justify-content": "center",
306
- },
307
- label: {
308
- "font-size": "sm",
309
- "font-weight": "500",
310
- color: "text-2",
311
- },
312
- title: {
313
- "font-size": "5xl",
314
- "font-weight": "700",
315
- "margin-bottom": "lg",
316
- tablet: {
317
- "font-size": "4xl",
318
- },
319
- mobile: {
320
- "margin-bottom": "xs",
321
- },
322
- },
323
- description: {
324
- "margin-bottom": "lg",
325
- mobile: {
326
- "margin-bottom": "xs",
327
- },
328
- },
329
- hero_ctas_levoGroup: {
330
- display: "flex",
331
- gap: "base",
332
- "flex-wrap": "wrap",
333
- },
334
- hero_ctas: [
335
- {
336
- button: {},
337
- },
338
- ],
339
- hero_images_levoGroup: {
340
- width: "50%",
341
- mobile: {
342
- width: "100%",
343
- },
344
- },
345
- hero_images: [
346
- {
347
- image: {
348
- width: "100%",
349
- },
350
- },
351
- ],
352
- },
353
- content: DEFAULT_CONTENT,
354
- config: {},
355
- },
356
- {
357
- title: "Card Image Left",
358
- key: "card_image_left",
359
- styles: {
360
- layout: {
361
- width: "100%",
362
- "row-gap": "5xl",
363
- "column-gap": "5xl",
364
- padding: "base",
365
- "background-color": "background-1",
366
- },
367
- container: {
368
- "margin-left": "auto",
369
- margin_right: "auto",
370
- display: "flex",
371
- flex: "1",
372
- "flex-direction": "row-reverse",
373
- "align-items": "start",
374
- "row-gap": "5xl",
375
- "column-gap": "5xl",
376
- "border-radius": "2xl",
377
- "background-color": "white",
378
- "padding-top": "5xl",
379
- "padding-right": "8xl",
380
- "padding-bottom": "5xl",
381
- "padding-left": "8xl",
382
- "media:max:768px": {
383
- "padding-top": "3xl",
384
- "padding-right": "4xl",
385
- "padding-bottom": "3xl",
386
- "padding-left": "4xl",
387
- },
388
- mobile: {
389
- "flex-direction": "column",
390
- },
391
- },
392
- content_wrapper: {
393
- display: "flex",
394
- width: "50%",
395
- "flex-direction": "column",
396
- "align-items": "start",
397
- "justify-content": "center",
398
- "row-gap": "xl",
399
- "column-gap": "xl",
400
- mobile: {
401
- width: "100%",
402
- },
403
- },
404
- text_wrapper: {
405
- display: "flex",
406
- width: "100%",
407
- "flex-direction": "column",
408
- "align-items": "start",
409
- "justify-content": "center",
410
- },
411
- label: {
412
- "font-size": "sm",
413
- "font-weight": "500",
414
- color: "text-2",
415
- },
416
- title: {
417
- "font-size": "5xl",
418
- "font-weight": "700",
419
- "margin-bottom": "lg",
420
- tablet: {
421
- "font-size": "4xl",
422
- },
423
- mobile: {
424
- "margin-bottom": "xs",
425
- },
426
- },
427
- description: {
428
- "margin-bottom": "lg",
429
- mobile: {
430
- "margin-bottom": "xs",
431
- },
432
- },
433
- hero_ctas_levoGroup: {
434
- display: "flex",
435
- gap: "base",
436
- "flex-wrap": "wrap",
437
- },
438
- hero_ctas: [
439
- {
440
- button: {},
441
- },
442
- ],
443
- hero_images_levoGroup: {
444
- width: "50%",
445
- mobile: {
446
- width: "100%",
447
- },
448
- },
449
- hero_images: [
450
- {
451
- image: {
452
- width: "100%",
453
- },
454
- },
455
- ],
456
- },
457
- content: DEFAULT_CONTENT,
458
- config: {},
459
- },
460
- {
461
- title: "Full Background Image",
462
- key: "full_background_image",
463
- styles: {
464
- layout: {
465
- position: "relative",
466
- width: "100%",
467
- "row-gap": "5xl",
468
- "column-gap": "5xl",
469
- "padding-top": "5xl",
470
- "padding-right": "8xl",
471
- "padding-bottom": "5xl",
472
- "padding-left": "8xl",
473
- tablet: {
474
- "padding-top": "3xl",
475
- "padding-right": "4xl",
476
- "padding-bottom": "3xl",
477
- "padding-left": "4xl",
478
- },
479
- },
480
- container: {
481
- "margin-left": "auto",
482
- "margin-right": "auto",
483
- display: "flex",
484
- flex: "1",
485
- "flex-direction": "row",
486
- "justify-content": "flex-start",
487
- "align-items": "start",
488
- "row-gap": "5xl",
489
- "column-gap": "5xl",
490
- "padding-left": "10xl",
491
- "padding-top": "16xl",
492
- "padding-bottom": "16xl",
493
- tablet: {
494
- "padding-left": "5xl",
495
- "padding-top": "8xl",
496
- "padding-bottom": "8xl",
497
- },
498
- mobile: {
499
- "padding-left": "lg",
500
- "padding-top": "4xl",
501
- "padding-bottom": "4xl",
502
- "flex-direction": "column",
503
- },
504
- },
505
- content_wrapper: {
506
- position: "relative",
507
- "z-index": "1",
508
- display: "flex",
509
- width: "100%",
510
- "max-width": "50%",
511
- "flex-direction": "column",
512
- "align-items": "start",
513
- "justify-content": "center",
514
- "row-gap": "xl",
515
- "column-gap": "xl",
516
- mobile: {
517
- width: "100%",
518
- },
519
- },
520
- text_wrapper: {
521
- display: "flex",
522
- width: "100%",
523
- "flex-direction": "column",
524
- "align-items": "start",
525
- "justify-content": "center",
526
- "row-gap": "xl",
527
- },
528
- label: {
529
- "font-size": "sm",
530
- "font-weight": "500",
531
- color: "text-2",
532
- },
533
- title: {
534
- "font-size": "5xl",
535
- "font-weight": "700",
536
- tablet: {
537
- "font-size": "4xl",
538
- },
539
- mobile: {},
540
- },
541
- description: {
542
- mobile: {},
543
- },
544
- hero_ctas_levoGroup: {
545
- display: "flex",
546
- gap: "base",
547
- "flex-wrap": "wrap",
548
- },
549
- hero_ctas: [
550
- {
551
- button: {},
552
- },
553
- ],
554
- hero_images_levoGroup: {
555
- width: "100%",
556
- height: "100%",
557
- position: "absolute",
558
- top: "0",
559
- left: "0",
560
- bottom: "0",
561
- right: "0",
562
- padding: "lg",
563
- mobile: {
564
- width: "100%",
565
- height: "100%",
566
- position: "absolute",
567
- top: "0",
568
- left: "0",
569
- bottom: "0",
570
- right: "0",
571
- padding: "sm",
572
- },
573
- },
574
- hero_images: [
575
- {
576
- image: {
577
- "border-radius": "lg",
578
- width: "100%",
579
- height: "100%",
580
- "object-fit": "cover",
581
- "object-position": "center",
582
- },
583
- },
584
- ],
585
- },
586
- content: DEFAULT_CONTENT,
587
- config: {},
588
- },
589
- {
590
- title: "Vertical Content",
591
- key: "vertical_content",
592
- styles: {
593
- layout: {
594
- position: "relative",
595
- width: "100%",
596
- "row-gap": "5xl",
597
- "column-gap": "5xl",
598
- "padding-top": "5xl",
599
- "padding-right": "8xl",
600
- "padding-bottom": "5xl",
601
- "padding-left": "8xl",
602
- tablet: {
603
- "padding-top": "3xl",
604
- "padding-right": "4xl",
605
- "padding-bottom": "3xl",
606
- "padding-left": "4xl",
607
- },
608
- },
609
- container: {
610
- "margin-left": "auto",
611
- "margin-right": "auto",
612
- display: "flex",
613
- flex: "1",
614
- "flex-direction": "row",
615
- "justify-content": "flex-start",
616
- "align-items": "start",
617
- "row-gap": "5xl",
618
- "column-gap": "5xl",
619
- "padding-left": "10xl",
620
- "padding-top": "16xl",
621
- "padding-bottom": "16xl",
622
- tablet: {
623
- "padding-left": "5xl",
624
- "padding-top": "8xl",
625
- "padding-bottom": "8xl",
626
- },
627
- mobile: {
628
- "padding-left": "lg",
629
- "padding-top": "4xl",
630
- "padding-bottom": "4xl",
631
- "flex-direction": "column",
632
- },
633
- },
634
- content_wrapper: {
635
- position: "relative",
636
- "z-index": "1",
637
- display: "flex",
638
- width: "100%",
639
- "max-width": "50%",
640
- "flex-direction": "column",
641
- "align-items": "start",
642
- "justify-content": "center",
643
- "row-gap": "xl",
644
- "column-gap": "xl",
645
- mobile: {
646
- width: "100%",
647
- },
648
- },
649
- text_wrapper: {
650
- display: "flex",
651
- width: "100%",
652
- "flex-direction": "column",
653
- "align-items": "start",
654
- "justify-content": "center",
655
- "row-gap": "xl",
656
- },
657
- label: {
658
- "font-size": "xl",
659
- "font-weight": "600",
660
- color: "text-1",
661
- "margin-bottom": "base",
662
- "padding-top": "none",
663
- "padding-bottom": "none",
664
- "padding-left": "base",
665
- "padding-right": "base",
666
- "border-radius": "100px",
667
- display: "inline-block",
668
- "margin-top": "xs",
669
- },
670
- title: {
671
- "font-size": "5xl",
672
- "font-weight": "700",
673
- tablet: {
674
- "font-size": "4xl",
675
- },
676
- mobile: {},
677
- },
678
- description: {
679
- mobile: {},
680
- },
681
- hero_ctas_levoGroup: {
682
- display: "flex",
683
- gap: "base",
684
- "flex-wrap": "wrap",
685
- },
686
- hero_ctas: [
687
- {
688
- button: {},
689
- },
690
- ],
691
- hero_images_levoGroup: {
692
- width: "100%",
693
- height: "100%",
694
- position: "absolute",
695
- top: "0",
696
- left: "0",
697
- bottom: "0",
698
- right: "0",
699
- padding: "lg",
700
- mobile: {
701
- width: "100%",
702
- height: "100%",
703
- position: "absolute",
704
- top: "0",
705
- left: "0",
706
- bottom: "0",
707
- right: "0",
708
- padding: "sm",
709
- },
710
- },
711
- hero_images: [
712
- {
713
- image: {
714
- "border-radius": "lg",
715
- width: "100%",
716
- height: "100%",
717
- "object-fit": "cover",
718
- "object-position": "center",
719
- },
720
- },
721
- ],
722
- label_wrapper: {
723
- display: "flex",
724
- "justify-content": "center",
725
- "align-items": "center",
726
- "flex-direction": "row",
727
- },
728
- horizontal_divider: {
729
- width: "60px",
730
- height: "2px",
731
- "background-color": " #00C896",
732
- "padding-top": "none",
733
- "padding-bottom": "none",
734
- "margin-top": "none",
735
- "margin-bottom": "none",
736
- },
737
- },
738
- content: DEFAULT_CONTENT,
739
- config: {},
740
- },
741
- ],
742
- };