@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,727 +0,0 @@
1
- const DUMMY_ICON = {
2
- kind: "icon",
3
- data: {
4
- id: "archive-minus",
5
- label: "Archive Minus",
6
- tags: ["archive", "custom", "directional", "minus"],
7
- svgCode: '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M14.5 11.4H9.5C9.09 11.4 8.75 11.06 8.75 10.65C8.75 10.24 9.09 9.90002 9.5 9.90002H14.5C14.91 9.90002 15.25 10.24 15.25 10.65C15.25 11.06 14.91 11.4 14.5 11.4Z" fill="var(--color-icon-primary)"/>\n<path d="M4.92957 22.75C4.50957 22.75 4.11957 22.65 3.76957 22.45C2.99957 22 2.55957 21.09 2.55957 19.96V5.86C2.55957 3.32 4.62957 1.25 7.16957 1.25H16.8196C19.3596 1.25 21.4296 3.32 21.4296 5.86V19.95C21.4296 21.08 20.9896 21.99 20.2196 22.44C19.4496 22.89 18.4396 22.84 17.4496 22.29L12.5696 19.58C12.2796 19.42 11.7096 19.42 11.4196 19.58L6.53957 22.29C5.99957 22.59 5.44957 22.75 4.92957 22.75ZM7.17957 2.75C5.46957 2.75 4.06957 4.15 4.06957 5.86V19.95C4.06957 20.54 4.23957 20.98 4.53957 21.15C4.83957 21.33 5.30957 21.27 5.81957 20.98L10.6996 18.27C11.4396 17.86 12.5596 17.86 13.2996 18.27L18.1796 20.98C18.6896 21.27 19.1596 21.33 19.4596 21.15C19.7596 20.97 19.9296 20.53 19.9296 19.95V5.86C19.9296 4.15 18.5296 2.75 16.8196 2.75H7.17957Z" fill="var(--color-icon-primary)"/>\n</svg>',
8
- },
9
- };
10
- const DEFAULT_CONTENT = {
11
- layout: null,
12
- container: null,
13
- features_levoGroup: null,
14
- features: [
15
- {
16
- item_wrapper: null,
17
- icon_content_wrapper: null,
18
- icon: DUMMY_ICON,
19
- content_wrapper: null,
20
- title: "Become a Volunteer",
21
- description: "Join us to create meaningful change.",
22
- cta: "Register",
23
- separator: null,
24
- },
25
- {
26
- item_wrapper: null,
27
- icon_content_wrapper: null,
28
- icon: DUMMY_ICON,
29
- content_wrapper: null,
30
- title: "Partner with Us",
31
- description: "Collaborate as a business or organization.",
32
- cta: "Get Started",
33
- separator: null,
34
- },
35
- {
36
- item_wrapper: null,
37
- icon_content_wrapper: null,
38
- icon: DUMMY_ICON,
39
- content_wrapper: null,
40
- title: "Join as Member",
41
- description: "Be part of a strong network dedicated to community support.",
42
- cta: "Join Today",
43
- separator: null,
44
- },
45
- {
46
- item_wrapper: null,
47
- icon_content_wrapper: null,
48
- icon: DUMMY_ICON,
49
- content_wrapper: null,
50
- title: "Donate",
51
- description: "Your contributions help sustain our programs.",
52
- cta: "Donate Now",
53
- separator: null,
54
- },
55
- ],
56
- };
57
- export const Features5 = {
58
- category_id: "features",
59
- title: "Features 5",
60
- key: "features-5",
61
- version: "v1",
62
- prompt_description: "Horizontal layout with 4 feature items in a row, each containing an icon, title, description, and CTA button with separators between items.",
63
- content_schema: [
64
- {
65
- key: "layout",
66
- label: "Layout",
67
- field_interface: "LayoutWidget",
68
- hint: {
69
- prompt_description: "Main layout container for the horizontal features section with proper spacing and background.",
70
- },
71
- },
72
- {
73
- key: "container",
74
- label: "Container",
75
- field_interface: "ContainerWidget",
76
- hint: {
77
- prompt_description: "Container providing structural alignment and padding for the features section.",
78
- },
79
- },
80
- {
81
- key: "features",
82
- label: "Features",
83
- field_interface: "BoxWidget",
84
- kind: "group",
85
- fields: [
86
- {
87
- key: "item_wrapper",
88
- label: "Item Wrapper",
89
- field_interface: "BoxWidget",
90
- hint: {
91
- prompt_description: "Container for each individual feature item with appropriate spacing and alignment.",
92
- },
93
- },
94
- {
95
- key: "icon_content_wrapper",
96
- label: "Icon Content Wrapper",
97
- field_interface: "BoxWidget",
98
- hint: {
99
- prompt_description: "Wrapper that holds the icon and content in a flex layout for proper alignment.",
100
- },
101
- },
102
- {
103
- key: "icon",
104
- label: "Icon",
105
- field_interface: "IconWidget",
106
- hint: {
107
- prompt_description: "Icon representing the feature, displayed alongside the content in a flex layout.",
108
- orientation: "landscape",
109
- size: "small",
110
- usecase: "icon",
111
- },
112
- },
113
- {
114
- key: "content_wrapper",
115
- label: "Content Wrapper",
116
- field_interface: "BoxWidget",
117
- hint: {
118
- prompt_description: "Container for the text content (title, description, CTA) with proper spacing.",
119
- },
120
- },
121
- {
122
- key: "title",
123
- label: "Title",
124
- field_interface: "HeadingWidget",
125
- hint: {
126
- prompt_description: "Feature title displayed prominently. Use clear, action-oriented language (2-4 words).",
127
- min_characters: 8,
128
- max_characters: 24,
129
- },
130
- },
131
- {
132
- key: "description",
133
- label: "Description",
134
- field_interface: "TypographyWidget",
135
- hint: {
136
- prompt_description: "Brief description explaining the feature benefit. Keep it concise and engaging (1-2 sentences).",
137
- min_characters: 20,
138
- max_characters: 80,
139
- },
140
- },
141
- {
142
- key: "cta",
143
- label: "CTA",
144
- field_interface: "ButtonWidget",
145
- hint: {
146
- prompt_description: "Call-to-action button for the feature. Use action verbs that encourage engagement.",
147
- },
148
- },
149
- {
150
- key: "separator",
151
- label: "Separator",
152
- field_interface: "BoxWidget",
153
- hint: {
154
- prompt_description: "Visual separator between feature items for better visual distinction.",
155
- },
156
- },
157
- ],
158
- hint: {
159
- prompt_description: "Collection of 4 features displayed horizontally in a row with icons, titles, descriptions, and CTAs. Include separators between items for visual clarity.",
160
- min_items: 4,
161
- max_items: 4,
162
- },
163
- },
164
- ],
165
- layouts: [
166
- {
167
- key: "default",
168
- title: "Default",
169
- styles: {
170
- layout: {
171
- display: "flex",
172
- width: "100%",
173
- "padding-top": "3xl",
174
- "padding-bottom": "3xl",
175
- "padding-left": "lg",
176
- "padding-right": "lg",
177
- "background-color": "white",
178
- mobile: {
179
- "padding-top": "2xl",
180
- "padding-bottom": "2xl",
181
- "padding-left": "base",
182
- "padding-right": "base",
183
- filter: "none",
184
- },
185
- filter: "none",
186
- tablet: {
187
- filter: "none",
188
- },
189
- },
190
- container: {
191
- display: "flex",
192
- width: "100%",
193
- "max-width": "1280px",
194
- "margin-left": "auto",
195
- "margin-right": "auto",
196
- filter: "none",
197
- tablet: {
198
- filter: "none",
199
- },
200
- mobile: {
201
- filter: "none",
202
- },
203
- },
204
- features_levoGroup: {
205
- display: "flex",
206
- width: "100%",
207
- "align-items": "center",
208
- "justify-content": "space-between",
209
- mobile: {
210
- "flex-direction": "column",
211
- "row-gap": "xl",
212
- filter: "none",
213
- display: "flex",
214
- },
215
- filter: "none",
216
- tablet: {
217
- filter: "none",
218
- display: "grid",
219
- "column-gap": "none",
220
- "flex-direction": "row",
221
- "row-gap": "5xl",
222
- },
223
- "grid-template-columns": "repeat(2, minmax(0, 1fr))",
224
- "grid-template-rows": "repeat(1, minmax(0, 1fr))",
225
- },
226
- features: [
227
- {
228
- item_wrapper: {
229
- display: "flex",
230
- "align-items": "center",
231
- "flex-grow": "1",
232
- mobile: {
233
- "flex-direction": "column",
234
- width: "100%",
235
- filter: "none",
236
- "border-bottom": "1px s",
237
- },
238
- tablet: {
239
- filter: "none",
240
- },
241
- },
242
- icon_content_wrapper: {
243
- display: "flex",
244
- "align-items": "start",
245
- "column-gap": "base",
246
- "text-align": "left",
247
- mobile: {
248
- "flex-direction": "row",
249
- "row-gap": "sm",
250
- "text-align": "center",
251
- filter: "none",
252
- "border-bottom": "1px solid",
253
- "column-gap": "base",
254
- },
255
- filter: "none",
256
- "justify-content": "start",
257
- },
258
- icon: {
259
- width: "48px",
260
- height: "48px",
261
- "flex-shrink": "0",
262
- mobile: {
263
- width: "40px",
264
- height: "40px",
265
- },
266
- filter: "none",
267
- },
268
- content_wrapper: {
269
- display: "flex",
270
- "flex-direction": "column",
271
- "row-gap": "xs",
272
- filter: "none",
273
- "justify-content": "start",
274
- "align-items": "start",
275
- mobile: {
276
- filter: "none",
277
- "justify-content": "start",
278
- "align-items": "start",
279
- },
280
- },
281
- title: {
282
- "font-size": "lg",
283
- "font-weight": "600",
284
- color: "text-1",
285
- mobile: {
286
- "font-size": "base",
287
- "text-align": "center",
288
- },
289
- },
290
- description: {
291
- "font-family": "var(--font-body)",
292
- color: "text-2",
293
- "font-size": "sm",
294
- "line-height": "normal",
295
- "max-width": "200px",
296
- mobile: {
297
- "font-size": "xs",
298
- "max-width": "180px",
299
- "text-align": "left",
300
- filter: "none",
301
- },
302
- },
303
- cta: {
304
- "background-color": "white",
305
- color: "text-1",
306
- "padding-top": "xs",
307
- "padding-bottom": "xs",
308
- "padding-left": "none",
309
- "padding-right": "sm",
310
- "border-radius": "4px",
311
- "border-width": "1px",
312
- "border-color": "border",
313
- "font-size": "sm",
314
- "font-weight": "500",
315
- "text-decoration": "none",
316
- "margin-top": "xs",
317
- mobile: {
318
- "padding-top": "xs",
319
- "padding-bottom": "xs",
320
- "padding-left": "base",
321
- "padding-right": "base",
322
- "font-size": "xs",
323
- },
324
- filter: "none",
325
- tablet: {
326
- filter: "none",
327
- "margin-top": "none",
328
- "padding-top": "none",
329
- "padding-bottom": "none",
330
- },
331
- },
332
- separator: {
333
- width: "1px",
334
- height: "150px",
335
- "background-color": "var(--color-border)",
336
- "margin-left": "xl",
337
- "margin-right": "xl",
338
- mobile: {
339
- display: "none",
340
- filter: "none",
341
- },
342
- filter: "none",
343
- tablet: {
344
- filter: "none",
345
- display: "none",
346
- height: "80px",
347
- "margin-left": "none",
348
- "margin-right": "none",
349
- },
350
- },
351
- },
352
- {
353
- item_wrapper: {
354
- display: "flex",
355
- "align-items": "center",
356
- "flex-grow": "1",
357
- mobile: {
358
- "flex-direction": "column",
359
- width: "100%",
360
- },
361
- tablet: {
362
- filter: "none",
363
- },
364
- },
365
- icon_content_wrapper: {
366
- display: "flex",
367
- "align-items": "start",
368
- "column-gap": "base",
369
- "text-align": "left",
370
- mobile: {
371
- "flex-direction": "row",
372
- "row-gap": "sm",
373
- "text-align": "center",
374
- filter: "none",
375
- "border-bottom": "1px solid",
376
- "column-gap": "base",
377
- },
378
- filter: "none",
379
- "justify-content": "start",
380
- },
381
- icon: {
382
- width: "48px",
383
- height: "48px",
384
- "flex-shrink": "0",
385
- mobile: {
386
- width: "40px",
387
- height: "40px",
388
- },
389
- filter: "none",
390
- },
391
- content_wrapper: {
392
- display: "flex",
393
- "flex-direction": "column",
394
- "row-gap": "xs",
395
- filter: "none",
396
- "justify-content": "start",
397
- "align-items": "start",
398
- mobile: {
399
- filter: "none",
400
- "justify-content": "start",
401
- "align-items": "start",
402
- },
403
- },
404
- title: {
405
- "font-size": "lg",
406
- "font-weight": "600",
407
- color: "text-1",
408
- mobile: {
409
- "font-size": "base",
410
- "text-align": "center",
411
- },
412
- },
413
- description: {
414
- "font-size": "sm",
415
- color: "text-2",
416
- "max-width": "200px",
417
- mobile: {
418
- "font-size": "xs",
419
- "max-width": "180px",
420
- "text-align": "left",
421
- filter: "none",
422
- },
423
- },
424
- cta: {
425
- display: "flex",
426
- "align-items": "center",
427
- "justify-content": "center",
428
- "border-radius": "4px",
429
- "background-color": "white",
430
- color: "text-1",
431
- cursor: "pointer",
432
- "font-size": "sm",
433
- "font-weight": "500",
434
- "padding-top": "xs",
435
- "padding-bottom": "xs",
436
- "padding-left": "none",
437
- "padding-right": "sm",
438
- "border-color": "border",
439
- "border-width": "1px",
440
- "border-style": "solid",
441
- _hover: {
442
- opacity: "0.9",
443
- },
444
- "text-decoration": "none",
445
- "margin-top": "xs",
446
- mobile: {
447
- "padding-top": "xs",
448
- "padding-bottom": "xs",
449
- "padding-left": "base",
450
- "padding-right": "base",
451
- "font-size": "xs",
452
- },
453
- filter: "none",
454
- tablet: {
455
- filter: "none",
456
- "margin-top": "none",
457
- "padding-top": "none",
458
- "padding-bottom": "none",
459
- },
460
- },
461
- separator: {
462
- width: "1px",
463
- height: "150px",
464
- "background-color": "var(--color-border)",
465
- "margin-left": "xl",
466
- "margin-right": "xl",
467
- mobile: {
468
- display: "none",
469
- },
470
- filter: "none",
471
- tablet: {
472
- filter: "none",
473
- display: "none",
474
- },
475
- },
476
- },
477
- {
478
- item_wrapper: {
479
- display: "flex",
480
- "align-items": "center",
481
- "flex-grow": "1",
482
- mobile: {
483
- "flex-direction": "column",
484
- width: "100%",
485
- },
486
- },
487
- icon_content_wrapper: {
488
- display: "flex",
489
- "align-items": "start",
490
- "column-gap": "base",
491
- "text-align": "left",
492
- mobile: {
493
- "flex-direction": "row",
494
- "row-gap": "sm",
495
- "text-align": "center",
496
- filter: "none",
497
- "border-bottom": "1px solid",
498
- "column-gap": "base",
499
- },
500
- filter: "none",
501
- "justify-content": "start",
502
- },
503
- icon: {
504
- width: "48px",
505
- height: "48px",
506
- "flex-shrink": "0",
507
- mobile: {
508
- width: "40px",
509
- height: "40px",
510
- },
511
- filter: "none",
512
- },
513
- content_wrapper: {
514
- display: "flex",
515
- "flex-direction": "column",
516
- "row-gap": "xs",
517
- filter: "none",
518
- "justify-content": "start",
519
- "align-items": "start",
520
- mobile: {
521
- filter: "none",
522
- "justify-content": "start",
523
- "align-items": "start",
524
- },
525
- },
526
- title: {
527
- "font-size": "lg",
528
- "font-weight": "600",
529
- color: "text-1",
530
- mobile: {
531
- "font-size": "base",
532
- "text-align": "center",
533
- },
534
- },
535
- description: {
536
- "font-family": "var(--font-body)",
537
- color: "text-2",
538
- "font-size": "sm",
539
- "line-height": "normal",
540
- "max-width": "200px",
541
- mobile: {
542
- "font-size": "xs",
543
- "max-width": "180px",
544
- "text-align": "left",
545
- filter: "none",
546
- },
547
- },
548
- cta: {
549
- display: "flex",
550
- "align-items": "center",
551
- "justify-content": "center",
552
- "border-radius": "4px",
553
- "background-color": "white",
554
- color: "text-1",
555
- cursor: "pointer",
556
- "font-size": "sm",
557
- "font-weight": "500",
558
- "padding-top": "xs",
559
- "padding-bottom": "xs",
560
- "padding-left": "none",
561
- "padding-right": "sm",
562
- "border-color": "border",
563
- "border-width": "1px",
564
- "border-style": "solid",
565
- _hover: {
566
- opacity: "0.9",
567
- },
568
- "text-decoration": "none",
569
- "margin-top": "xs",
570
- mobile: {
571
- "padding-top": "xs",
572
- "padding-bottom": "xs",
573
- "padding-left": "base",
574
- "padding-right": "base",
575
- "font-size": "xs",
576
- },
577
- filter: "none",
578
- tablet: {
579
- filter: "none",
580
- "margin-top": "none",
581
- "padding-top": "none",
582
- "padding-bottom": "none",
583
- },
584
- },
585
- separator: {
586
- width: "1px",
587
- height: "150px",
588
- "background-color": "var(--color-border)",
589
- "margin-left": "xl",
590
- "margin-right": "xl",
591
- mobile: {
592
- display: "none",
593
- },
594
- filter: "none",
595
- tablet: {
596
- filter: "none",
597
- display: "none",
598
- },
599
- },
600
- },
601
- {
602
- item_wrapper: {
603
- display: "flex",
604
- "align-items": "center",
605
- "flex-grow": "1",
606
- mobile: {
607
- "flex-direction": "column",
608
- width: "100%",
609
- },
610
- },
611
- icon_content_wrapper: {
612
- display: "flex",
613
- "align-items": "start",
614
- "column-gap": "base",
615
- "text-align": "left",
616
- mobile: {
617
- "flex-direction": "row",
618
- "row-gap": "sm",
619
- "text-align": "center",
620
- filter: "none",
621
- "border-bottom": "1px solid",
622
- "column-gap": "base",
623
- },
624
- filter: "none",
625
- "justify-content": "start",
626
- },
627
- icon: {
628
- width: "48px",
629
- height: "48px",
630
- "flex-shrink": "0",
631
- mobile: {
632
- width: "40px",
633
- height: "40px",
634
- filter: "none",
635
- },
636
- filter: "none",
637
- },
638
- content_wrapper: {
639
- display: "flex",
640
- "flex-direction": "column",
641
- "row-gap": "xs",
642
- filter: "none",
643
- "justify-content": "start",
644
- "align-items": "start",
645
- mobile: {
646
- filter: "none",
647
- "justify-content": "start",
648
- "align-items": "start",
649
- },
650
- },
651
- title: {
652
- "font-size": "lg",
653
- "font-weight": "600",
654
- color: "text-1",
655
- mobile: {
656
- "font-size": "base",
657
- "text-align": "center",
658
- },
659
- },
660
- description: {
661
- "font-family": "var(--font-body)",
662
- color: "text-2",
663
- "font-size": "sm",
664
- "line-height": "normal",
665
- "max-width": "200px",
666
- mobile: {
667
- "font-size": "xs",
668
- "max-width": "180px",
669
- "text-align": "left",
670
- filter: "none",
671
- },
672
- },
673
- cta: {
674
- display: "flex",
675
- "align-items": "center",
676
- "justify-content": "center",
677
- "border-radius": "4px",
678
- "background-color": "white",
679
- color: "text-1",
680
- cursor: "pointer",
681
- "font-size": "sm",
682
- "font-weight": "500",
683
- "padding-top": "xs",
684
- "padding-bottom": "xs",
685
- "padding-left": "none",
686
- "padding-right": "sm",
687
- "border-color": "border",
688
- "border-width": "1px",
689
- "border-style": "solid",
690
- _hover: {
691
- opacity: "0.9",
692
- },
693
- "text-decoration": "none",
694
- "margin-top": "xs",
695
- mobile: {
696
- "padding-top": "xs",
697
- "padding-bottom": "xs",
698
- "padding-left": "base",
699
- "padding-right": "base",
700
- "font-size": "xs",
701
- },
702
- filter: "none",
703
- tablet: {
704
- filter: "none",
705
- "margin-top": "none",
706
- "padding-top": "none",
707
- "padding-bottom": "none",
708
- },
709
- },
710
- separator: {
711
- width: "1px",
712
- height: "80px",
713
- "background-color": "var(--color-border)",
714
- "margin-left": "xl",
715
- "margin-right": "xl",
716
- mobile: {
717
- display: "none",
718
- },
719
- },
720
- },
721
- ],
722
- },
723
- content: DEFAULT_CONTENT,
724
- config: {},
725
- },
726
- ],
727
- };