@levo-so/blocks 0.1.0 → 0.1.2

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