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