@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
@@ -0,0 +1,677 @@
1
+ import type { IBlock } from "@levo-so/studio";
2
+
3
+ const DEFAULT_CONTENT = {
4
+ layout: null,
5
+ container: null,
6
+ header_section: null,
7
+ main_title: "Career Opportunity",
8
+ header_button: "View All",
9
+ grid: [
10
+ {
11
+ card: null,
12
+ content_wrapper: null,
13
+ title: "Marketing Executive",
14
+ details:
15
+ "Full Time• Expert • Onsite 98 street Chicago USA salary $2000-$3000 Monthly",
16
+ ctas: [
17
+ {
18
+ button: "Apply Now",
19
+ },
20
+ {
21
+ button: "Learn More",
22
+ },
23
+ ],
24
+ },
25
+ {
26
+ card: null,
27
+ content_wrapper: null,
28
+ title: "Product Designer",
29
+ details:
30
+ "Full Time• Expert • Onsite 98 street Chicago USA salary $2000-$3000 Monthly",
31
+ ctas: [
32
+ {
33
+ button: "Apply Now",
34
+ },
35
+ {
36
+ button: "Learn More",
37
+ },
38
+ ],
39
+ },
40
+ {
41
+ card: null,
42
+ content_wrapper: null,
43
+ title: "Web Designer",
44
+ details:
45
+ "Full Time• Expert • Onsite 98 street Chicago USA salary $2000-$3000 Monthly",
46
+ ctas: [
47
+ {
48
+ button: "Apply Now",
49
+ },
50
+ {
51
+ button: "Learn More",
52
+ },
53
+ ],
54
+ },
55
+ {
56
+ card: null,
57
+ content_wrapper: null,
58
+ title: "Software Developer",
59
+ details:
60
+ "Full Time• Expert • Onsite 98 street Chicago USA salary $2000-$3000 Monthly",
61
+ ctas: [
62
+ {
63
+ button: "Apply Now",
64
+ },
65
+ {
66
+ button: "Learn More",
67
+ },
68
+ ],
69
+ },
70
+ ],
71
+ header_button_rightIcon: {
72
+ kind: "custom",
73
+ data: {
74
+ id: "UpLVWyg9E9QC",
75
+ location: "https://space.levo.in.net/W6OEVMW8/image-sR8IjbcW18vs.png",
76
+ mimetype: "image/png",
77
+ kind: "image",
78
+ srcset: {
79
+ "1080w":
80
+ "https://space.levo.in.net/W6OEVMW8/image-sR8IjbcW18vs-1080w.webp",
81
+ "1200w":
82
+ "https://space.levo.in.net/W6OEVMW8/image-sR8IjbcW18vs-1200w.webp",
83
+ "1920w":
84
+ "https://space.levo.in.net/W6OEVMW8/image-sR8IjbcW18vs-1920w.webp",
85
+ "320w":
86
+ "https://space.levo.in.net/W6OEVMW8/image-sR8IjbcW18vs-320w.webp",
87
+ "640w":
88
+ "https://space.levo.in.net/W6OEVMW8/image-sR8IjbcW18vs-640w.webp",
89
+ "750w":
90
+ "https://space.levo.in.net/W6OEVMW8/image-sR8IjbcW18vs-750w.webp",
91
+ "828w":
92
+ "https://space.levo.in.net/W6OEVMW8/image-sR8IjbcW18vs-828w.webp",
93
+ path: "https://space.levo.in.net/W6OEVMW8/image-sR8IjbcW18vs-320w.webp 320w, https://space.levo.in.net/W6OEVMW8/image-sR8IjbcW18vs-750w.webp 750w, https://space.levo.in.net/W6OEVMW8/image-sR8IjbcW18vs-640w.webp 640w, https://space.levo.in.net/W6OEVMW8/image-sR8IjbcW18vs-1200w.webp 1200w, https://space.levo.in.net/W6OEVMW8/image-sR8IjbcW18vs-1920w.webp 1920w, https://space.levo.in.net/W6OEVMW8/image-sR8IjbcW18vs-828w.webp 828w, https://space.levo.in.net/W6OEVMW8/image-sR8IjbcW18vs-1080w.webp 1080w",
94
+ },
95
+ },
96
+ },
97
+ };
98
+
99
+ export type ICards4Content = typeof DEFAULT_CONTENT;
100
+
101
+ export const Cards4: IBlock = {
102
+ category_id: "cards",
103
+ title: "Cards 4",
104
+ key: "cards-4",
105
+ version: "v1",
106
+ prompt_description:
107
+ "Career opportunities section with header title and 'View All' button, featuring job cards in a grid layout. Each card displays job title, details, and action buttons.",
108
+ content_schema: [
109
+ {
110
+ key: "layout",
111
+ label: "Layout",
112
+ field_interface: "LayoutWidget",
113
+ hint: {
114
+ prompt_description:
115
+ "Overall section layout for the career opportunities block. Controls spacing, background, and structure.",
116
+ },
117
+ },
118
+ {
119
+ key: "container",
120
+ label: "Container",
121
+ field_interface: "ContainerWidget",
122
+ hint: {
123
+ prompt_description:
124
+ "Main container for centering and constraining the content width.",
125
+ },
126
+ },
127
+ {
128
+ key: "header_section",
129
+ label: "Header Section",
130
+ field_interface: "BoxWidget",
131
+ hint: {
132
+ prompt_description:
133
+ "Header area containing the main title and view all button, positioned horizontally.",
134
+ },
135
+ },
136
+ {
137
+ key: "main_title",
138
+ label: "Main Title",
139
+ field_interface: "HeadingWidget",
140
+ hint: {
141
+ prompt_description:
142
+ "Main section heading that describes the career opportunities section. Should be engaging and professional.",
143
+ min_characters: 10,
144
+ max_characters: 40,
145
+ },
146
+ },
147
+ {
148
+ key: "header_button",
149
+ label: "Header Button",
150
+ field_interface: "ButtonWidget",
151
+ hint: {
152
+ prompt_description:
153
+ "Secondary action button for viewing all career opportunities. Should encourage exploration.",
154
+ min_characters: 6,
155
+ max_characters: 20,
156
+ },
157
+ },
158
+ {
159
+ key: "grid",
160
+ label: " Cards",
161
+ kind: "group",
162
+ field_interface: "BoxWidget",
163
+ fields: [
164
+ {
165
+ key: "card",
166
+ label: "Card Container",
167
+ field_interface: "BoxWidget",
168
+ hint: {
169
+ prompt_description:
170
+ "Individual job card container for styling and layout. No direct content.",
171
+ },
172
+ },
173
+ {
174
+ key: "content_wrapper",
175
+ label: "Content Wrapper",
176
+ field_interface: "BoxWidget",
177
+ hint: {
178
+ prompt_description:
179
+ "Wrapper for job title and details within each card. Used for spacing and alignment.",
180
+ },
181
+ },
182
+ {
183
+ key: "title",
184
+ label: " Title",
185
+ field_interface: "HeadingWidget",
186
+ hint: {
187
+ prompt_description:
188
+ "Job position title that's clear, professional, and attractive to potential candidates.",
189
+ min_characters: 10,
190
+ max_characters: 30,
191
+ },
192
+ },
193
+ {
194
+ key: "details",
195
+ label: " Details",
196
+ field_interface: "TypographyWidget",
197
+ hint: {
198
+ prompt_description:
199
+ "Detailed job information including employment type, experience level, location, and salary range. Should be comprehensive yet concise.",
200
+ min_characters: 40,
201
+ max_characters: 120,
202
+ },
203
+ },
204
+ {
205
+ key: "ctas",
206
+ label: "Action Buttons",
207
+ kind: "group",
208
+ field_interface: "BoxWidget",
209
+ fields: [
210
+ {
211
+ key: "button",
212
+ label: "Button",
213
+ field_interface: "ButtonWidget",
214
+ hint: {
215
+ prompt_description:
216
+ "Action button for job application or learning more. Should be clear and action-oriented.",
217
+ min_characters: 6,
218
+ max_characters: 20,
219
+ },
220
+ },
221
+ ],
222
+ hint: {
223
+ prompt_description:
224
+ "Group of action buttons for each job card, typically including Apply and Learn More options.",
225
+ min_items: 2,
226
+ max_items: 2,
227
+ },
228
+ },
229
+ ],
230
+ hint: {
231
+ prompt_description:
232
+ "Collection of job opportunity cards featuring different positions with titles, details, and action buttons.",
233
+ min_items: 2,
234
+ max_items: 6,
235
+ },
236
+ },
237
+ ],
238
+ layouts: [
239
+ {
240
+ title: "Default",
241
+ key: "default",
242
+ styles: {
243
+ layout: {
244
+ "padding-top": "6xl",
245
+ "padding-bottom": "6xl",
246
+ "padding-left": "xl",
247
+ "padding-right": "xl",
248
+ "background-color": "oklch(0.9643 0.0169 61.9599)",
249
+ tablet: {
250
+ "padding-top": "4xl",
251
+ "padding-bottom": "4xl",
252
+ "padding-left": "lg",
253
+ "padding-right": "lg",
254
+ },
255
+ mobile: {
256
+ "padding-top": "3xl",
257
+ "padding-bottom": "3xl",
258
+ "padding-left": "base",
259
+ "padding-right": "base",
260
+ },
261
+ },
262
+ container: {
263
+ "max-width": "1280px",
264
+ "margin-left": "auto",
265
+ "margin-right": "auto",
266
+ filter: "none",
267
+ },
268
+ header_section: {
269
+ display: "flex",
270
+ "justify-content": "space-between",
271
+ "align-items": "center",
272
+ "margin-bottom": "4xl",
273
+ mobile: {
274
+ "flex-direction": "column",
275
+ "align-items": "center",
276
+ "row-gap": "lg",
277
+ filter: "drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2))",
278
+ "justify-content": "center",
279
+ },
280
+ filter: "drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2))",
281
+ },
282
+ main_title: {
283
+ "font-size": "5xl",
284
+ "font-weight": "700",
285
+ color: "text-1",
286
+ "line-height": "1.2",
287
+ tablet: {
288
+ "font-size": "3xl",
289
+ },
290
+ mobile: {
291
+ "font-size": "2xl",
292
+ },
293
+ filter: "none",
294
+ },
295
+ header_button: {
296
+ color: "text-3",
297
+ "font-size": "base",
298
+ "font-weight": "500",
299
+ display: "flex",
300
+ "align-items": "center",
301
+ "column-gap": "xs",
302
+ filter: "none",
303
+ "text-decoration": "none",
304
+ },
305
+ cards_levoGroup: {
306
+ display: "grid",
307
+ "grid-template-columns": "repeat(2, minmax(0, 1fr))",
308
+ "row-gap": "xl",
309
+ "column-gap": "xl",
310
+ tablet: {
311
+ "grid-template-columns": "repeat(2, minmax(0, 1fr))",
312
+ "row-gap": "lg",
313
+ "column-gap": "lg",
314
+ },
315
+ mobile: {
316
+ "grid-template-columns": "repeat(1, minmax(0, 1fr))",
317
+ "row-gap": "base",
318
+ },
319
+ },
320
+ grid: [
321
+ {
322
+ title: {
323
+ filter: "none",
324
+ "font-size": "3xl",
325
+ "font-weight": 700,
326
+ },
327
+ card: {
328
+ filter: "drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2))",
329
+ display: "block",
330
+ "background-color": "white",
331
+ "padding-top": "4xl",
332
+ "padding-bottom": "4xl",
333
+ "padding-left": "4xl",
334
+ "padding-right": "4xl",
335
+ "border-radius": "xl",
336
+ mobile: {
337
+ filter: "drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2))",
338
+ "padding-top": "xl",
339
+ "padding-left": "xl",
340
+ "padding-right": "xl",
341
+ "padding-bottom": "xl",
342
+ },
343
+ tablet: {
344
+ filter: "drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2))",
345
+ "padding-top": "xl",
346
+ "padding-right": "xl",
347
+ "padding-left": "xl",
348
+ "padding-bottom": "xl",
349
+ },
350
+ },
351
+ details: {
352
+ filter: "none",
353
+ "font-size": "base",
354
+ },
355
+ ctas_levoGroup: {
356
+ filter: "none",
357
+ display: "flex",
358
+ "column-gap": "xs",
359
+ "margin-top": "lg",
360
+ mobile: {
361
+ filter: "none",
362
+ "flex-direction": "column",
363
+ "row-gap": "xs",
364
+ },
365
+ tablet: {
366
+ filter: "none",
367
+ "flex-direction": "column",
368
+ "row-gap": "xs",
369
+ },
370
+ },
371
+ content_wrapper: {
372
+ filter: "none",
373
+ display: "flex",
374
+ "flex-direction": "column",
375
+ "row-gap": "sm",
376
+ },
377
+ ctas: [
378
+ {
379
+ button: {
380
+ filter: "none",
381
+ "border-radius": "3xl",
382
+ },
383
+ },
384
+ {
385
+ button: {
386
+ filter: "none",
387
+ "border-radius": "3xl",
388
+ },
389
+ },
390
+ ],
391
+ },
392
+ {
393
+ title: {
394
+ filter: "none",
395
+ "font-size": "3xl",
396
+ "font-weight": 700,
397
+ },
398
+ card: {
399
+ filter: "drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2))",
400
+ display: "block",
401
+ "background-color": "white",
402
+ "padding-top": "4xl",
403
+ "padding-bottom": "4xl",
404
+ "padding-left": "4xl",
405
+ "padding-right": "4xl",
406
+ "border-radius": "xl",
407
+ mobile: {
408
+ filter: "drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2))",
409
+ "padding-top": "xl",
410
+ "padding-left": "xl",
411
+ "padding-right": "xl",
412
+ "padding-bottom": "xl",
413
+ },
414
+ tablet: {
415
+ filter: "drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2))",
416
+ "padding-top": "xl",
417
+ "padding-right": "xl",
418
+ "padding-left": "xl",
419
+ "padding-bottom": "xl",
420
+ },
421
+ },
422
+ details: {
423
+ filter: "none",
424
+ "font-size": "base",
425
+ },
426
+ ctas_levoGroup: {
427
+ filter: "none",
428
+ display: "flex",
429
+ "column-gap": "xs",
430
+ "margin-top": "lg",
431
+ mobile: {
432
+ filter: "none",
433
+ "flex-direction": "column",
434
+ "row-gap": "xs",
435
+ },
436
+ tablet: {
437
+ filter: "none",
438
+ "flex-direction": "column",
439
+ "row-gap": "xs",
440
+ },
441
+ },
442
+ content_wrapper: {
443
+ filter: "none",
444
+ display: "flex",
445
+ "flex-direction": "column",
446
+ "row-gap": "sm",
447
+ },
448
+ ctas: [
449
+ {
450
+ button: {
451
+ filter: "none",
452
+ "border-radius": "3xl",
453
+ },
454
+ },
455
+ {
456
+ button: {
457
+ filter: "none",
458
+ "border-radius": "3xl",
459
+ },
460
+ },
461
+ ],
462
+ },
463
+ {
464
+ title: {
465
+ filter: "none",
466
+ "font-size": "3xl",
467
+ "font-weight": 700,
468
+ },
469
+ card: {
470
+ filter: "drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2))",
471
+ display: "block",
472
+ "background-color": "white",
473
+ "padding-top": "4xl",
474
+ "padding-bottom": "4xl",
475
+ "padding-left": "4xl",
476
+ "padding-right": "4xl",
477
+ "border-radius": "xl",
478
+ mobile: {
479
+ filter: "drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2))",
480
+ "padding-top": "xl",
481
+ "padding-left": "xl",
482
+ "padding-right": "xl",
483
+ "padding-bottom": "xl",
484
+ },
485
+ tablet: {
486
+ filter: "drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2))",
487
+ "padding-top": "xl",
488
+ "padding-right": "xl",
489
+ "padding-left": "xl",
490
+ "padding-bottom": "xl",
491
+ },
492
+ },
493
+ details: {
494
+ filter: "none",
495
+ "font-size": "base",
496
+ },
497
+ ctas_levoGroup: {
498
+ filter: "none",
499
+ display: "flex",
500
+ "column-gap": "xs",
501
+ "margin-top": "lg",
502
+ mobile: {
503
+ filter: "none",
504
+ "flex-direction": "column",
505
+ "row-gap": "xs",
506
+ },
507
+ tablet: {
508
+ filter: "none",
509
+ "flex-direction": "column",
510
+ "row-gap": "xs",
511
+ },
512
+ },
513
+ content_wrapper: {
514
+ filter: "none",
515
+ display: "flex",
516
+ "flex-direction": "column",
517
+ "row-gap": "sm",
518
+ },
519
+ ctas: [
520
+ {
521
+ button: {
522
+ filter: "none",
523
+ "border-radius": "3xl",
524
+ },
525
+ },
526
+ {
527
+ button: {
528
+ filter: "none",
529
+ "border-radius": "3xl",
530
+ },
531
+ },
532
+ ],
533
+ },
534
+ {
535
+ title: {
536
+ filter: "none",
537
+ "font-size": "3xl",
538
+ "font-weight": 700,
539
+ },
540
+ card: {
541
+ filter: "drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2))",
542
+ display: "block",
543
+ "background-color": "white",
544
+ "padding-top": "4xl",
545
+ "padding-bottom": "4xl",
546
+ "padding-left": "4xl",
547
+ "padding-right": "4xl",
548
+ "border-radius": "xl",
549
+ mobile: {
550
+ filter: "drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2))",
551
+ "padding-top": "xl",
552
+ "padding-left": "xl",
553
+ "padding-right": "xl",
554
+ "padding-bottom": "xl",
555
+ },
556
+ tablet: {
557
+ filter: "drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2))",
558
+ "padding-top": "xl",
559
+ "padding-right": "xl",
560
+ "padding-left": "xl",
561
+ "padding-bottom": "xl",
562
+ },
563
+ },
564
+ details: {
565
+ filter: "none",
566
+ "font-size": "base",
567
+ },
568
+ ctas_levoGroup: {
569
+ filter: "none",
570
+ display: "flex",
571
+ "column-gap": "xs",
572
+ "margin-top": "lg",
573
+ mobile: {
574
+ filter: "none",
575
+ "flex-direction": "column",
576
+ "row-gap": "xs",
577
+ },
578
+ tablet: {
579
+ filter: "none",
580
+ "flex-direction": "column",
581
+ "row-gap": "xs",
582
+ },
583
+ },
584
+ content_wrapper: {
585
+ filter: "none",
586
+ display: "flex",
587
+ "flex-direction": "column",
588
+ "row-gap": "sm",
589
+ },
590
+ ctas: [
591
+ {
592
+ button: {
593
+ filter: "none",
594
+ "border-radius": "3xl",
595
+ },
596
+ },
597
+ {
598
+ button: {
599
+ filter: "none",
600
+ "border-radius": "3xl",
601
+ },
602
+ },
603
+ ],
604
+ },
605
+ ],
606
+ header_button_rightIcon: {
607
+ width: "18px",
608
+ filter: "none",
609
+ },
610
+ grid_levoGroup: {
611
+ filter: "none",
612
+ display: "grid",
613
+ "grid-template-columns": "repeat(2, minmax(0, 1fr))",
614
+ "row-gap": "xl",
615
+ "column-gap": "xl",
616
+ mobile: {
617
+ filter: "none",
618
+ "grid-template-columns": "repeat(1, minmax(0, 1fr))",
619
+ },
620
+ },
621
+ },
622
+ content: DEFAULT_CONTENT,
623
+ config: {
624
+ "cards.0.ctas.0.button": {
625
+ selectedVariants: {
626
+ Button_Variants: "Primary",
627
+ },
628
+ },
629
+ "cards.0.ctas.1.button": {
630
+ selectedVariants: {
631
+ Button_Variants: "Secondary",
632
+ },
633
+ },
634
+ "cards.1.ctas.0.button": {
635
+ selectedVariants: {
636
+ Button_Variants: "Primary",
637
+ },
638
+ },
639
+ "cards.1.ctas.1.button": {
640
+ selectedVariants: {
641
+ Button_Variants: "Secondary",
642
+ },
643
+ },
644
+ "cards.2.ctas.0.button": {
645
+ selectedVariants: {
646
+ Button_Variants: "Primary",
647
+ },
648
+ },
649
+ "cards.2.ctas.1.button": {
650
+ selectedVariants: {
651
+ Button_Variants: "Secondary",
652
+ },
653
+ },
654
+ "cards.3.ctas.0.button": {
655
+ selectedVariants: {
656
+ Button_Variants: "Primary",
657
+ },
658
+ },
659
+ "cards.3.ctas.1.button": {
660
+ selectedVariants: {
661
+ Button_Variants: "Secondary",
662
+ },
663
+ },
664
+ header_button: {
665
+ selectedVariants: {
666
+ Button_Variants: "Link",
667
+ },
668
+ button_icons: {
669
+ right: {
670
+ enabled: true,
671
+ },
672
+ },
673
+ },
674
+ },
675
+ },
676
+ ],
677
+ };