@levo-so/blocks 0.1.1 → 0.1.52

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (501) hide show
  1. package/package.json +6 -10
  2. package/src/blocks/about-us/about-us-1.schema.ts +577 -0
  3. package/src/blocks/about-us/about-us-1.tsx +53 -0
  4. package/src/blocks/about-us/about-us-2.schema.ts +269 -0
  5. package/src/blocks/about-us/about-us-2.tsx +47 -0
  6. package/src/blocks/blogs/blog-listing-1.schema.ts +473 -0
  7. package/src/blocks/blogs/blog-listing-1.tsx +102 -0
  8. package/src/blocks/blogs/blog-listing-2.schema.ts +3718 -0
  9. package/src/blocks/blogs/blog-listing-2.tsx +88 -0
  10. package/src/blocks/blogs/blog-listing-3.schema.ts +2476 -0
  11. package/src/blocks/blogs/blog-listing-3.tsx +84 -0
  12. package/src/blocks/blogs/blog-post-1.schema.ts +400 -0
  13. package/src/blocks/blogs/blog-post-1.tsx +52 -0
  14. package/src/blocks/blogs/blog-post-2.schema.ts +791 -0
  15. package/src/blocks/blogs/blog-post-2.tsx +131 -0
  16. package/src/blocks/blogs/blog-post-3.schema.ts +284 -0
  17. package/src/blocks/blogs/blog-post-3.tsx +58 -0
  18. package/src/blocks/cards/cards-10.schema.ts +1012 -0
  19. package/src/blocks/cards/cards-10.tsx +48 -0
  20. package/src/blocks/cards/cards-11.schema.ts +918 -0
  21. package/src/blocks/cards/cards-11.tsx +50 -0
  22. package/src/blocks/cards/cards-12.schema.ts +578 -0
  23. package/src/blocks/cards/cards-12.tsx +54 -0
  24. package/src/blocks/cards/cards-13.schema.ts +615 -0
  25. package/src/blocks/cards/cards-13.tsx +67 -0
  26. package/src/blocks/cards/cards-2.schema.ts +290 -0
  27. package/src/blocks/cards/cards-2.tsx +42 -0
  28. package/src/blocks/cards/cards-3.schema.ts +355 -0
  29. package/src/blocks/cards/cards-3.tsx +49 -0
  30. package/src/blocks/cards/cards-4.schema.ts +655 -0
  31. package/src/blocks/cards/cards-4.tsx +50 -0
  32. package/src/blocks/cards/cards-5.schema.ts +245 -0
  33. package/src/blocks/cards/cards-5.tsx +34 -0
  34. package/src/blocks/cards/cards-6.schema.ts +2139 -0
  35. package/src/blocks/cards/cards-6.tsx +140 -0
  36. package/src/blocks/cards/cards-7.schema.ts +3538 -0
  37. package/src/blocks/cards/cards-7.tsx +197 -0
  38. package/src/blocks/cards/cards-8.schema.ts +691 -0
  39. package/src/blocks/cards/cards-8.tsx +43 -0
  40. package/src/blocks/cards/cards-9.schema.ts +827 -0
  41. package/src/blocks/cards/cards-9.tsx +54 -0
  42. package/src/blocks/carousel/carousel-1.schema.ts +250 -0
  43. package/src/blocks/carousel/carousel-1.tsx +79 -0
  44. package/src/blocks/contact-us/contact-us-1.schema.ts +233 -0
  45. package/src/blocks/contact-us/contact-us-1.tsx +39 -0
  46. package/src/blocks/contact-us/contact-us-2.schema.ts +524 -0
  47. package/src/blocks/contact-us/contact-us-2.tsx +71 -0
  48. package/src/blocks/content/content-1.schema.ts +862 -0
  49. package/src/blocks/content/content-1.tsx +69 -0
  50. package/src/blocks/content/content-2.schema.ts +212 -0
  51. package/src/blocks/content/content-2.tsx +32 -0
  52. package/src/blocks/content/content-3.schema.ts +766 -0
  53. package/src/blocks/content/content-3.tsx +55 -0
  54. package/src/blocks/content/content-4.schema.ts +287 -0
  55. package/src/blocks/content/content-4.tsx +47 -0
  56. package/src/blocks/content/content-5.schema.ts +944 -0
  57. package/src/blocks/content/content-5.tsx +59 -0
  58. package/src/blocks/content/content-6.schema.ts +991 -0
  59. package/src/blocks/content/content-6.tsx +62 -0
  60. package/src/blocks/content/content-7.schema.ts +723 -0
  61. package/src/blocks/content/content-7.tsx +53 -0
  62. package/src/blocks/cta/cta-1.schema.ts +353 -0
  63. package/src/blocks/cta/cta-1.tsx +33 -0
  64. package/src/blocks/cta/cta-2.schema.ts +209 -0
  65. package/src/blocks/cta/cta-2.tsx +28 -0
  66. package/src/blocks/cta/cta-3.schema.ts +216 -0
  67. package/src/blocks/cta/cta-3.tsx +48 -0
  68. package/src/blocks/embed/embed-1.schema.ts +153 -0
  69. package/src/blocks/embed/embed-1.tsx +38 -0
  70. package/src/blocks/event/event-details.schema.ts +732 -0
  71. package/src/blocks/event/event-details.tsx +102 -0
  72. package/src/blocks/event/event-listing-2.schema.ts +555 -0
  73. package/src/blocks/event/event-listing-2.tsx +94 -0
  74. package/src/blocks/event/event-listing-3.schema.ts +621 -0
  75. package/src/blocks/event/event-listing-3.tsx +90 -0
  76. package/src/blocks/event/event-listing-4.schema.ts +3528 -0
  77. package/src/blocks/event/event-listing-4.tsx +97 -0
  78. package/src/blocks/event/event-listing.schema.ts +1353 -0
  79. package/src/blocks/event/event-listing.tsx +88 -0
  80. package/src/blocks/faq/faq-1.schema.ts +360 -0
  81. package/src/blocks/faq/faq-1.tsx +65 -0
  82. package/src/blocks/faq/faq-2.schema.ts +358 -0
  83. package/src/blocks/faq/faq-2.tsx +84 -0
  84. package/src/blocks/faq/faq-3.schema.ts +475 -0
  85. package/src/blocks/faq/faq-3.tsx +70 -0
  86. package/src/blocks/features/features-1/features-1.schema.ts +165 -0
  87. package/src/blocks/features/features-1/features-1.tsx +48 -0
  88. package/src/blocks/features/features-1/variants/default.ts +206 -0
  89. package/{dist/blocks/features/features-1/variants/index.js → src/blocks/features/features-1/variants/index.ts} +7 -1
  90. package/src/blocks/features/features-1/variants/stylized-cards-v1.ts +138 -0
  91. package/src/blocks/features/features-1/variants/stylized-cards-v2.ts +487 -0
  92. package/src/blocks/features/features-2.schema.ts +471 -0
  93. package/src/blocks/features/features-2.tsx +66 -0
  94. package/src/blocks/features/features-3.schema.ts +424 -0
  95. package/src/blocks/features/features-3.tsx +56 -0
  96. package/src/blocks/features/features-4.schema.ts +616 -0
  97. package/src/blocks/features/features-4.tsx +75 -0
  98. package/src/blocks/features/features-5.schema.ts +728 -0
  99. package/src/blocks/features/features-5.tsx +49 -0
  100. package/src/blocks/features/features-6.schema.ts +849 -0
  101. package/src/blocks/features/features-6.tsx +125 -0
  102. package/src/blocks/footer/footer-1.schema.ts +612 -0
  103. package/src/blocks/footer/footer-1.tsx +90 -0
  104. package/src/blocks/footer/footer-2.schema.ts +913 -0
  105. package/src/blocks/footer/footer-2.tsx +77 -0
  106. package/src/blocks/footer/footer-3.schema.ts +412 -0
  107. package/src/blocks/footer/footer-3.tsx +99 -0
  108. package/src/blocks/footer/footer-4.schema.ts +649 -0
  109. package/src/blocks/footer/footer-4.tsx +97 -0
  110. package/src/blocks/footer/footer-5.schema.ts +435 -0
  111. package/src/blocks/footer/footer-5.tsx +99 -0
  112. package/src/blocks/footer/footer-6.schema.ts +730 -0
  113. package/src/blocks/footer/footer-6.tsx +100 -0
  114. package/src/blocks/hero/hero-1.schema.ts +746 -0
  115. package/src/blocks/hero/hero-1.tsx +52 -0
  116. package/src/blocks/hero/hero-10.schema.ts +175 -0
  117. package/src/blocks/hero/hero-10.tsx +35 -0
  118. package/src/blocks/hero/hero-2.schema.ts +272 -0
  119. package/src/blocks/hero/hero-2.tsx +57 -0
  120. package/src/blocks/hero/hero-3.schema.ts +419 -0
  121. package/src/blocks/hero/hero-3.tsx +50 -0
  122. package/src/blocks/hero/hero-4.schema.ts +425 -0
  123. package/src/blocks/hero/hero-4.tsx +89 -0
  124. package/src/blocks/hero/hero-5.schema.ts +198 -0
  125. package/src/blocks/hero/hero-5.tsx +86 -0
  126. package/src/blocks/hero/hero-6.schema.ts +665 -0
  127. package/src/blocks/hero/hero-6.tsx +62 -0
  128. package/src/blocks/hero/hero-7.schema.ts +505 -0
  129. package/src/blocks/hero/hero-7.tsx +115 -0
  130. package/src/blocks/hero/hero-8.schema.ts +376 -0
  131. package/src/blocks/hero/hero-8.tsx +113 -0
  132. package/src/blocks/hero/hero-9.schema.ts +379 -0
  133. package/src/blocks/hero/hero-9.tsx +49 -0
  134. package/src/blocks/index.ts +89 -0
  135. package/src/blocks/logos/logos-1.schema.ts +270 -0
  136. package/src/blocks/logos/logos-1.tsx +60 -0
  137. package/src/blocks/navbar/navbar-1.schema.ts +959 -0
  138. package/src/blocks/navbar/navbar-1.tsx +384 -0
  139. package/src/blocks/navbar/navbar-2.schema.ts +1224 -0
  140. package/src/blocks/navbar/navbar-2.tsx +403 -0
  141. package/src/blocks/navbar/navbar-3.schema.ts +6834 -0
  142. package/src/blocks/navbar/navbar-3.tsx +551 -0
  143. package/src/blocks/pricing/pricing-1.schema.ts +988 -0
  144. package/src/blocks/pricing/pricing-1.tsx +88 -0
  145. package/src/blocks/products/products-listing-1.schema.ts +271 -0
  146. package/src/blocks/products/products-listing-1.tsx +48 -0
  147. package/src/blocks/profile/profile-1.schema.ts +399 -0
  148. package/src/blocks/profile/profile-1.tsx +64 -0
  149. package/src/blocks/stats/stats-1.schema.ts +262 -0
  150. package/src/blocks/stats/stats-1.tsx +38 -0
  151. package/src/blocks/stats/stats-2.schema.ts +111 -0
  152. package/src/blocks/stats/stats-2.tsx +52 -0
  153. package/src/blocks/stats/variants/default.ts +189 -0
  154. package/src/blocks/stats/variants/hero.ts +142 -0
  155. package/{dist/blocks/stats/variants/index.js → src/blocks/stats/variants/index.ts} +1 -0
  156. package/src/blocks/team/team-1.schema.ts +544 -0
  157. package/src/blocks/team/team-1.tsx +86 -0
  158. package/src/blocks/team/team-2.schema.ts +2742 -0
  159. package/src/blocks/team/team-2.tsx +74 -0
  160. package/src/blocks/team/team-3.schema.ts +690 -0
  161. package/src/blocks/team/team-3.tsx +103 -0
  162. package/src/blocks/team/team-4.schema.ts +551 -0
  163. package/src/blocks/team/team-4.tsx +59 -0
  164. package/src/blocks/termsAndPrivacy/terms-and-conditions-1.schema.ts +158 -0
  165. package/src/blocks/termsAndPrivacy/terms-and-conditions-1.tsx +29 -0
  166. package/src/blocks/testimonial/testimonial-1.schema.ts +351 -0
  167. package/src/blocks/testimonial/testimonial-1.tsx +79 -0
  168. package/src/blocks/testimonial/testimonial-2.schema.ts +816 -0
  169. package/src/blocks/testimonial/testimonial-2.tsx +161 -0
  170. package/src/blocks/testimonial/testimonial-3.schema.ts +273 -0
  171. package/src/blocks/testimonial/testimonial-3.tsx +128 -0
  172. package/src/blocks/testimonial/testimonial-4.schema.ts +3378 -0
  173. package/src/blocks/testimonial/testimonial-4.tsx +202 -0
  174. package/src/blocks/testimonial/testimonial-5/variants/default.ts +510 -0
  175. package/src/blocks/testimonial/testimonial-5/variants/index.ts +4 -0
  176. package/src/blocks/testimonial/testimonial-5/variants/testimonialWithLogo.ts +887 -0
  177. package/src/blocks/testimonial/testimonial-5/variants/testimonialWithRatings.ts +923 -0
  178. package/src/blocks/testimonial/testimonial-5.schema.ts +250 -0
  179. package/src/blocks/testimonial/testimonial-5.tsx +130 -0
  180. package/src/blocks/testimonial/testimonial-6.schema.ts +1672 -0
  181. package/src/blocks/testimonial/testimonial-6.tsx +178 -0
  182. package/{dist/index.js → src/index.ts} +5 -2
  183. package/{dist/schemas/blocks.js → src/schemas/blocks.ts} +97 -72
  184. package/src/schemas/categories.ts +140 -0
  185. package/src/styles.d.ts +4 -0
  186. package/dist/blocks/about-us/about-us-1.d.ts +0 -5
  187. package/dist/blocks/about-us/about-us-1.js +0 -5
  188. package/dist/blocks/about-us/about-us-1.schema.d.ts +0 -38
  189. package/dist/blocks/about-us/about-us-1.schema.js +0 -537
  190. package/dist/blocks/blogs/blog-listing-1.d.ts +0 -5
  191. package/dist/blocks/blogs/blog-listing-1.js +0 -12
  192. package/dist/blocks/blogs/blog-listing-1.schema.d.ts +0 -59
  193. package/dist/blocks/blogs/blog-listing-1.schema.js +0 -387
  194. package/dist/blocks/blogs/blog-listing-2.d.ts +0 -5
  195. package/dist/blocks/blogs/blog-listing-2.js +0 -9
  196. package/dist/blocks/blogs/blog-listing-2.schema.d.ts +0 -104
  197. package/dist/blocks/blogs/blog-listing-2.schema.js +0 -572
  198. package/dist/blocks/blogs/blog-post-1.d.ts +0 -6
  199. package/dist/blocks/blogs/blog-post-1.js +0 -8
  200. package/dist/blocks/blogs/blog-post-1.schema.d.ts +0 -48
  201. package/dist/blocks/blogs/blog-post-1.schema.js +0 -358
  202. package/dist/blocks/blogs/blog-post-2.d.ts +0 -6
  203. package/dist/blocks/blogs/blog-post-2.js +0 -8
  204. package/dist/blocks/blogs/blog-post-2.schema.d.ts +0 -74
  205. package/dist/blocks/blogs/blog-post-2.schema.js +0 -779
  206. package/dist/blocks/cards/cards-10.d.ts +0 -6
  207. package/dist/blocks/cards/cards-10.js +0 -4
  208. package/dist/blocks/cards/cards-10.schema.d.ts +0 -44
  209. package/dist/blocks/cards/cards-10.schema.js +0 -405
  210. package/dist/blocks/cards/cards-11.d.ts +0 -6
  211. package/dist/blocks/cards/cards-11.js +0 -4
  212. package/dist/blocks/cards/cards-11.schema.d.ts +0 -58
  213. package/dist/blocks/cards/cards-11.schema.js +0 -406
  214. package/dist/blocks/cards/cards-12.d.ts +0 -6
  215. package/dist/blocks/cards/cards-12.js +0 -4
  216. package/dist/blocks/cards/cards-12.schema.d.ts +0 -38
  217. package/dist/blocks/cards/cards-12.schema.js +0 -545
  218. package/dist/blocks/cards/cards-2.d.ts +0 -5
  219. package/dist/blocks/cards/cards-2.js +0 -4
  220. package/dist/blocks/cards/cards-2.schema.d.ts +0 -46
  221. package/dist/blocks/cards/cards-2.schema.js +0 -260
  222. package/dist/blocks/cards/cards-3.d.ts +0 -6
  223. package/dist/blocks/cards/cards-3.js +0 -5
  224. package/dist/blocks/cards/cards-3.schema.d.ts +0 -36
  225. package/dist/blocks/cards/cards-3.schema.js +0 -351
  226. package/dist/blocks/cards/cards-4.d.ts +0 -6
  227. package/dist/blocks/cards/cards-4.js +0 -4
  228. package/dist/blocks/cards/cards-4.schema.d.ts +0 -40
  229. package/dist/blocks/cards/cards-4.schema.js +0 -648
  230. package/dist/blocks/cards/cards-5.d.ts +0 -5
  231. package/dist/blocks/cards/cards-5.js +0 -4
  232. package/dist/blocks/cards/cards-5.schema.d.ts +0 -48
  233. package/dist/blocks/cards/cards-5.schema.js +0 -238
  234. package/dist/blocks/cards/cards-6.d.ts +0 -5
  235. package/dist/blocks/cards/cards-6.js +0 -45
  236. package/dist/blocks/cards/cards-6.schema.d.ts +0 -50
  237. package/dist/blocks/cards/cards-6.schema.js +0 -608
  238. package/dist/blocks/cards/cards-7.d.ts +0 -5
  239. package/dist/blocks/cards/cards-7.js +0 -45
  240. package/dist/blocks/cards/cards-7.schema.d.ts +0 -87
  241. package/dist/blocks/cards/cards-7.schema.js +0 -1732
  242. package/dist/blocks/cards/cards-8.d.ts +0 -6
  243. package/dist/blocks/cards/cards-8.js +0 -4
  244. package/dist/blocks/cards/cards-8.schema.d.ts +0 -40
  245. package/dist/blocks/cards/cards-8.schema.js +0 -660
  246. package/dist/blocks/cards/cards-9.d.ts +0 -5
  247. package/dist/blocks/cards/cards-9.js +0 -4
  248. package/dist/blocks/cards/cards-9.schema.d.ts +0 -55
  249. package/dist/blocks/cards/cards-9.schema.js +0 -798
  250. package/dist/blocks/carousel/carousel-1.d.ts +0 -5
  251. package/dist/blocks/carousel/carousel-1.js +0 -12
  252. package/dist/blocks/carousel/carousel-1.schema.d.ts +0 -51
  253. package/dist/blocks/carousel/carousel-1.schema.js +0 -236
  254. package/dist/blocks/contact-us/contact-us-1.d.ts +0 -5
  255. package/dist/blocks/contact-us/contact-us-1.js +0 -4
  256. package/dist/blocks/contact-us/contact-us-1.schema.d.ts +0 -31
  257. package/dist/blocks/contact-us/contact-us-1.schema.js +0 -202
  258. package/dist/blocks/contact-us/contact-us-2.d.ts +0 -5
  259. package/dist/blocks/contact-us/contact-us-2.js +0 -4
  260. package/dist/blocks/contact-us/contact-us-2.schema.d.ts +0 -59
  261. package/dist/blocks/contact-us/contact-us-2.schema.js +0 -512
  262. package/dist/blocks/content/content-1.d.ts +0 -6
  263. package/dist/blocks/content/content-1.js +0 -4
  264. package/dist/blocks/content/content-1.schema.d.ts +0 -56
  265. package/dist/blocks/content/content-1.schema.js +0 -807
  266. package/dist/blocks/content/content-2.d.ts +0 -5
  267. package/dist/blocks/content/content-2.js +0 -4
  268. package/dist/blocks/content/content-2.schema.d.ts +0 -78
  269. package/dist/blocks/content/content-2.schema.js +0 -200
  270. package/dist/blocks/content/content-3.d.ts +0 -6
  271. package/dist/blocks/content/content-3.js +0 -5
  272. package/dist/blocks/content/content-3.schema.d.ts +0 -23
  273. package/dist/blocks/content/content-3.schema.js +0 -850
  274. package/dist/blocks/content/content-4.d.ts +0 -6
  275. package/dist/blocks/content/content-4.js +0 -6
  276. package/dist/blocks/content/content-4.schema.d.ts +0 -33
  277. package/dist/blocks/content/content-4.schema.js +0 -252
  278. package/dist/blocks/content/content-5.d.ts +0 -6
  279. package/dist/blocks/content/content-5.js +0 -5
  280. package/dist/blocks/content/content-5.schema.d.ts +0 -37
  281. package/dist/blocks/content/content-5.schema.js +0 -932
  282. package/dist/blocks/content/content-6.d.ts +0 -6
  283. package/dist/blocks/content/content-6.js +0 -5
  284. package/dist/blocks/content/content-6.schema.d.ts +0 -41
  285. package/dist/blocks/content/content-6.schema.js +0 -976
  286. package/dist/blocks/cta/cta-1.d.ts +0 -5
  287. package/dist/blocks/cta/cta-1.js +0 -4
  288. package/dist/blocks/cta/cta-1.schema.d.ts +0 -40
  289. package/dist/blocks/cta/cta-1.schema.js +0 -339
  290. package/dist/blocks/cta/cta-2.d.ts +0 -5
  291. package/dist/blocks/cta/cta-2.js +0 -4
  292. package/dist/blocks/cta/cta-2.schema.d.ts +0 -45
  293. package/dist/blocks/cta/cta-2.schema.js +0 -183
  294. package/dist/blocks/cta/cta-3.d.ts +0 -5
  295. package/dist/blocks/cta/cta-3.js +0 -4
  296. package/dist/blocks/cta/cta-3.schema.d.ts +0 -34
  297. package/dist/blocks/cta/cta-3.schema.js +0 -137
  298. package/dist/blocks/embed/embed-1.d.ts +0 -5
  299. package/dist/blocks/embed/embed-1.js +0 -5
  300. package/dist/blocks/embed/embed-1.schema.d.ts +0 -13
  301. package/dist/blocks/embed/embed-1.schema.js +0 -146
  302. package/dist/blocks/event/event-details.d.ts +0 -5
  303. package/dist/blocks/event/event-details.js +0 -9
  304. package/dist/blocks/event/event-details.schema.d.ts +0 -112
  305. package/dist/blocks/event/event-details.schema.js +0 -685
  306. package/dist/blocks/event/event-listing-2.d.ts +0 -5
  307. package/dist/blocks/event/event-listing-2.js +0 -4
  308. package/dist/blocks/event/event-listing-2.schema.d.ts +0 -84
  309. package/dist/blocks/event/event-listing-2.schema.js +0 -455
  310. package/dist/blocks/event/event-listing-3.d.ts +0 -5
  311. package/dist/blocks/event/event-listing-3.js +0 -10
  312. package/dist/blocks/event/event-listing-3.schema.d.ts +0 -77
  313. package/dist/blocks/event/event-listing-3.schema.js +0 -570
  314. package/dist/blocks/event/event-listing.d.ts +0 -5
  315. package/dist/blocks/event/event-listing.js +0 -10
  316. package/dist/blocks/event/event-listing.schema.d.ts +0 -51
  317. package/dist/blocks/event/event-listing.schema.js +0 -1297
  318. package/dist/blocks/faq/faq-1.d.ts +0 -5
  319. package/dist/blocks/faq/faq-1.js +0 -4
  320. package/dist/blocks/faq/faq-1.schema.d.ts +0 -47
  321. package/dist/blocks/faq/faq-1.schema.js +0 -325
  322. package/dist/blocks/faq/faq-2.d.ts +0 -6
  323. package/dist/blocks/faq/faq-2.js +0 -19
  324. package/dist/blocks/faq/faq-2.schema.d.ts +0 -47
  325. package/dist/blocks/faq/faq-2.schema.js +0 -329
  326. package/dist/blocks/faq/faq-3.d.ts +0 -5
  327. package/dist/blocks/faq/faq-3.js +0 -4
  328. package/dist/blocks/faq/faq-3.schema.d.ts +0 -40
  329. package/dist/blocks/faq/faq-3.schema.js +0 -444
  330. package/dist/blocks/features/features-1/features-1.d.ts +0 -5
  331. package/dist/blocks/features/features-1/features-1.js +0 -4
  332. package/dist/blocks/features/features-1/features-1.schema.d.ts +0 -5
  333. package/dist/blocks/features/features-1/features-1.schema.js +0 -142
  334. package/dist/blocks/features/features-1/variants/default.d.ts +0 -37
  335. package/dist/blocks/features/features-1/variants/default.js +0 -185
  336. package/dist/blocks/features/features-1/variants/index.d.ts +0 -5
  337. package/dist/blocks/features/features-1/variants/stylized-cards-v1.d.ts +0 -3
  338. package/dist/blocks/features/features-1/variants/stylized-cards-v1.js +0 -132
  339. package/dist/blocks/features/features-1/variants/stylized-cards-v2.d.ts +0 -3
  340. package/dist/blocks/features/features-1/variants/stylized-cards-v2.js +0 -484
  341. package/dist/blocks/features/features-2.d.ts +0 -5
  342. package/dist/blocks/features/features-2.js +0 -8
  343. package/dist/blocks/features/features-2.schema.d.ts +0 -41
  344. package/dist/blocks/features/features-2.schema.js +0 -321
  345. package/dist/blocks/features/features-3.d.ts +0 -5
  346. package/dist/blocks/features/features-3.js +0 -4
  347. package/dist/blocks/features/features-3.schema.d.ts +0 -40
  348. package/dist/blocks/features/features-3.schema.js +0 -424
  349. package/dist/blocks/features/features-4.d.ts +0 -5
  350. package/dist/blocks/features/features-4.js +0 -4
  351. package/dist/blocks/features/features-4.schema.d.ts +0 -60
  352. package/dist/blocks/features/features-4.schema.js +0 -594
  353. package/dist/blocks/features/features-5.d.ts +0 -6
  354. package/dist/blocks/features/features-5.js +0 -5
  355. package/dist/blocks/features/features-5.schema.d.ts +0 -28
  356. package/dist/blocks/features/features-5.schema.js +0 -727
  357. package/dist/blocks/features/features-6.d.ts +0 -5
  358. package/dist/blocks/features/features-6.js +0 -31
  359. package/dist/blocks/features/features-6.schema.d.ts +0 -74
  360. package/dist/blocks/features/features-6.schema.js +0 -814
  361. package/dist/blocks/footer/footer-1.d.ts +0 -6
  362. package/dist/blocks/footer/footer-1.js +0 -5
  363. package/dist/blocks/footer/footer-1.schema.d.ts +0 -62
  364. package/dist/blocks/footer/footer-1.schema.js +0 -565
  365. package/dist/blocks/footer/footer-2.d.ts +0 -5
  366. package/dist/blocks/footer/footer-2.js +0 -4
  367. package/dist/blocks/footer/footer-2.schema.d.ts +0 -76
  368. package/dist/blocks/footer/footer-2.schema.js +0 -876
  369. package/dist/blocks/footer/footer-3.d.ts +0 -6
  370. package/dist/blocks/footer/footer-3.js +0 -15
  371. package/dist/blocks/footer/footer-3.schema.d.ts +0 -48
  372. package/dist/blocks/footer/footer-3.schema.js +0 -475
  373. package/dist/blocks/footer/footer-4.d.ts +0 -6
  374. package/dist/blocks/footer/footer-4.js +0 -5
  375. package/dist/blocks/footer/footer-4.schema.d.ts +0 -71
  376. package/dist/blocks/footer/footer-4.schema.js +0 -620
  377. package/dist/blocks/footer/footer-5.d.ts +0 -6
  378. package/dist/blocks/footer/footer-5.js +0 -5
  379. package/dist/blocks/footer/footer-5.schema.d.ts +0 -52
  380. package/dist/blocks/footer/footer-5.schema.js +0 -400
  381. package/dist/blocks/hero/hero-1.d.ts +0 -5
  382. package/dist/blocks/hero/hero-1.js +0 -4
  383. package/dist/blocks/hero/hero-1.schema.d.ts +0 -35
  384. package/dist/blocks/hero/hero-1.schema.js +0 -742
  385. package/dist/blocks/hero/hero-2.d.ts +0 -5
  386. package/dist/blocks/hero/hero-2.js +0 -4
  387. package/dist/blocks/hero/hero-2.schema.d.ts +0 -46
  388. package/dist/blocks/hero/hero-2.schema.js +0 -282
  389. package/dist/blocks/hero/hero-3.d.ts +0 -5
  390. package/dist/blocks/hero/hero-3.js +0 -4
  391. package/dist/blocks/hero/hero-3.schema.d.ts +0 -54
  392. package/dist/blocks/hero/hero-3.schema.js +0 -378
  393. package/dist/blocks/hero/hero-4.d.ts +0 -5
  394. package/dist/blocks/hero/hero-4.js +0 -30
  395. package/dist/blocks/hero/hero-4.schema.d.ts +0 -33
  396. package/dist/blocks/hero/hero-4.schema.js +0 -316
  397. package/dist/blocks/hero/hero-5.d.ts +0 -5
  398. package/dist/blocks/hero/hero-5.js +0 -30
  399. package/dist/blocks/hero/hero-5.schema.d.ts +0 -32
  400. package/dist/blocks/hero/hero-5.schema.js +0 -183
  401. package/dist/blocks/hero/hero-6.d.ts +0 -5
  402. package/dist/blocks/hero/hero-6.js +0 -8
  403. package/dist/blocks/hero/hero-6.schema.d.ts +0 -36
  404. package/dist/blocks/hero/hero-6.schema.js +0 -617
  405. package/dist/blocks/hero/hero-7.d.ts +0 -5
  406. package/dist/blocks/hero/hero-7.js +0 -40
  407. package/dist/blocks/hero/hero-7.schema.d.ts +0 -12
  408. package/dist/blocks/hero/hero-7.schema.js +0 -471
  409. package/dist/blocks/hero/hero-8.d.ts +0 -5
  410. package/dist/blocks/hero/hero-8.js +0 -39
  411. package/dist/blocks/hero/hero-8.schema.d.ts +0 -17
  412. package/dist/blocks/hero/hero-8.schema.js +0 -343
  413. package/dist/blocks/hero/hero-9.d.ts +0 -6
  414. package/dist/blocks/hero/hero-9.js +0 -4
  415. package/dist/blocks/hero/hero-9.schema.d.ts +0 -39
  416. package/dist/blocks/hero/hero-9.schema.js +0 -355
  417. package/dist/blocks/index.d.ts +0 -3
  418. package/dist/blocks/index.js +0 -74
  419. package/dist/blocks/logos/logos-1.d.ts +0 -5
  420. package/dist/blocks/logos/logos-1.js +0 -10
  421. package/dist/blocks/logos/logos-1.schema.d.ts +0 -34
  422. package/dist/blocks/logos/logos-1.schema.js +0 -239
  423. package/dist/blocks/navbar/navbar-1.d.ts +0 -6
  424. package/dist/blocks/navbar/navbar-1.js +0 -100
  425. package/dist/blocks/navbar/navbar-1.schema.d.ts +0 -117
  426. package/dist/blocks/navbar/navbar-1.schema.js +0 -938
  427. package/dist/blocks/navbar/navbar-2.d.ts +0 -6
  428. package/dist/blocks/navbar/navbar-2.js +0 -99
  429. package/dist/blocks/navbar/navbar-2.schema.d.ts +0 -134
  430. package/dist/blocks/navbar/navbar-2.schema.js +0 -1200
  431. package/dist/blocks/pricing/pricing-1.d.ts +0 -5
  432. package/dist/blocks/pricing/pricing-1.js +0 -4
  433. package/dist/blocks/pricing/pricing-1.schema.d.ts +0 -87
  434. package/dist/blocks/pricing/pricing-1.schema.js +0 -976
  435. package/dist/blocks/products/products-listing-1.d.ts +0 -5
  436. package/dist/blocks/products/products-listing-1.js +0 -4
  437. package/dist/blocks/products/products-listing-1.schema.d.ts +0 -36
  438. package/dist/blocks/products/products-listing-1.schema.js +0 -264
  439. package/dist/blocks/stats/stats-1.d.ts +0 -6
  440. package/dist/blocks/stats/stats-1.js +0 -6
  441. package/dist/blocks/stats/stats-1.schema.d.ts +0 -25
  442. package/dist/blocks/stats/stats-1.schema.js +0 -213
  443. package/dist/blocks/stats/stats-2.d.ts +0 -6
  444. package/dist/blocks/stats/stats-2.js +0 -6
  445. package/dist/blocks/stats/stats-2.schema.d.ts +0 -5
  446. package/dist/blocks/stats/stats-2.schema.js +0 -104
  447. package/dist/blocks/stats/variants/default.d.ts +0 -22
  448. package/dist/blocks/stats/variants/default.js +0 -185
  449. package/dist/blocks/stats/variants/hero.d.ts +0 -3
  450. package/dist/blocks/stats/variants/hero.js +0 -151
  451. package/dist/blocks/stats/variants/index.d.ts +0 -4
  452. package/dist/blocks/team/team-1.d.ts +0 -6
  453. package/dist/blocks/team/team-1.js +0 -6
  454. package/dist/blocks/team/team-1.schema.d.ts +0 -65
  455. package/dist/blocks/team/team-1.schema.js +0 -476
  456. package/dist/blocks/team/team-2.d.ts +0 -6
  457. package/dist/blocks/team/team-2.js +0 -6
  458. package/dist/blocks/team/team-2.schema.d.ts +0 -52
  459. package/dist/blocks/team/team-2.schema.js +0 -2732
  460. package/dist/blocks/team/team-3.d.ts +0 -5
  461. package/dist/blocks/team/team-3.js +0 -30
  462. package/dist/blocks/team/team-3.schema.d.ts +0 -32
  463. package/dist/blocks/team/team-3.schema.js +0 -679
  464. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.d.ts +0 -6
  465. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.js +0 -4
  466. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.schema.d.ts +0 -14
  467. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.schema.js +0 -154
  468. package/dist/blocks/testimonial/testimonial-1.d.ts +0 -5
  469. package/dist/blocks/testimonial/testimonial-1.js +0 -10
  470. package/dist/blocks/testimonial/testimonial-1.schema.d.ts +0 -16
  471. package/dist/blocks/testimonial/testimonial-1.schema.js +0 -314
  472. package/dist/blocks/testimonial/testimonial-2.d.ts +0 -5
  473. package/dist/blocks/testimonial/testimonial-2.js +0 -42
  474. package/dist/blocks/testimonial/testimonial-2.schema.d.ts +0 -54
  475. package/dist/blocks/testimonial/testimonial-2.schema.js +0 -771
  476. package/dist/blocks/testimonial/testimonial-3.d.ts +0 -5
  477. package/dist/blocks/testimonial/testimonial-3.js +0 -38
  478. package/dist/blocks/testimonial/testimonial-3.schema.d.ts +0 -56
  479. package/dist/blocks/testimonial/testimonial-3.schema.js +0 -260
  480. package/dist/blocks/testimonial/testimonial-4.d.ts +0 -5
  481. package/dist/blocks/testimonial/testimonial-4.js +0 -51
  482. package/dist/blocks/testimonial/testimonial-4.schema.d.ts +0 -145
  483. package/dist/blocks/testimonial/testimonial-4.schema.js +0 -3214
  484. package/dist/blocks/testimonial/testimonial-5.d.ts +0 -5
  485. package/dist/blocks/testimonial/testimonial-5.js +0 -31
  486. package/dist/blocks/testimonial/testimonial-5.schema.d.ts +0 -33
  487. package/dist/blocks/testimonial/testimonial-5.schema.js +0 -401
  488. package/dist/blocks/testimonial/testimonial-6.d.ts +0 -5
  489. package/dist/blocks/testimonial/testimonial-6.js +0 -39
  490. package/dist/blocks/testimonial/testimonial-6.schema.d.ts +0 -60
  491. package/dist/blocks/testimonial/testimonial-6.schema.js +0 -695
  492. package/dist/blocks.d.ts +0 -3
  493. package/dist/blocks.js +0 -74
  494. package/dist/index.d.ts +0 -6
  495. package/dist/schemas/blocks.d.ts +0 -3
  496. package/dist/schemas/categories.d.ts +0 -3
  497. package/dist/schemas/categories.js +0 -129
  498. package/dist/schemas/index.d.ts +0 -3
  499. package/dist/schemas.d.ts +0 -3
  500. package/dist/schemas.js +0 -2
  501. /package/{dist/schemas/index.js → src/schemas/index.ts} +0 -0
@@ -0,0 +1,1353 @@
1
+ import type { IBlock } from "@levo-so/studio";
2
+
3
+ const DUMMY_IMAGE = {
4
+ id: "7141014160938075687",
5
+ location: "https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH.png",
6
+ kind: "image",
7
+ mimetype: "image/png",
8
+ srcset: {
9
+ "1080w":
10
+ "https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-1080w.webp",
11
+ "1200w":
12
+ "https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-1200w.webp",
13
+ "1920w":
14
+ "https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-1920w.webp",
15
+ "320w":
16
+ "https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-320w.webp",
17
+ "640w":
18
+ "https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-640w.webp",
19
+ "750w":
20
+ "https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-750w.webp",
21
+ "828w":
22
+ "https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-828w.webp",
23
+ path: "https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-640w.webp 640w, https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-1080w.webp 1080w, https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-1200w.webp 1200w, https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-1920w.webp 1920w, https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-320w.webp 320w, https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-750w.webp 750w, https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-828w.webp 828w",
24
+ },
25
+ };
26
+
27
+ const DUMMY_ICON = {
28
+ kind: "icon",
29
+ data: {
30
+ id: "archive-minus",
31
+ label: "Archive Minus",
32
+ tags: ["archive", "custom", "directional", "minus"],
33
+ svgCode:
34
+ '<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>',
35
+ },
36
+ };
37
+
38
+ const DEFAULT_CONTENT = {
39
+ layout: null,
40
+ container: null,
41
+ "cta-section": null,
42
+ "cta-heading": "Upcoming Events of 2025",
43
+ "cta-button": "",
44
+ title: "Events",
45
+ events: [
46
+ {
47
+ eventWrapper: null,
48
+ image: DUMMY_IMAGE,
49
+ textWrapper: null,
50
+ "caption-text": "Sponsor Event",
51
+ "date-icon-wrapper": null,
52
+ "date-icon": DUMMY_ICON,
53
+ publishedAt: "25 July, 2025",
54
+ title: "Books, Brighter Futures: A Day for Change",
55
+ description:
56
+ "Over 400 children will receive new educational supplies during this Event.",
57
+ },
58
+ {
59
+ eventWrapper: null,
60
+ image: DUMMY_IMAGE,
61
+ textWrapper: null,
62
+ "caption-text": "Community Event",
63
+ "date-icon-wrapper": null,
64
+ "date-icon": DUMMY_ICON,
65
+ publishedAt: "15 August, 2025",
66
+ title: "Stories of Impact: Volunteers Who Inspire",
67
+ description:
68
+ "Hear from passionate volunteers about their life-changing moments while working",
69
+ },
70
+ {
71
+ eventWrapper: null,
72
+ image: DUMMY_IMAGE,
73
+ textWrapper: null,
74
+ "caption-text": "Fundraiser Event",
75
+ "date-icon-wrapper": null,
76
+ "date-icon": DUMMY_ICON,
77
+ publishedAt: "3 December, 2025",
78
+ title: "Voices for a Cause: Music & Giving",
79
+ description:
80
+ "Experience an evening of soulful and delightful performances and storytelling.",
81
+ },
82
+ {
83
+ eventWrapper: null,
84
+ image: DUMMY_IMAGE,
85
+ textWrapper: null,
86
+ "caption-text": "Workshop Event",
87
+ "date-icon-wrapper": null,
88
+ "date-icon": DUMMY_ICON,
89
+ publishedAt: "10 March, 2025",
90
+ title: "Digital Skills for Tomorrow",
91
+ description:
92
+ "Learn essential digital skills that will help you succeed in the modern workplace.",
93
+ },
94
+ {
95
+ eventWrapper: null,
96
+ image: DUMMY_IMAGE,
97
+ textWrapper: null,
98
+ "caption-text": "Health Event",
99
+ "date-icon-wrapper": null,
100
+ "date-icon": DUMMY_ICON,
101
+ publishedAt: "22 September, 2025",
102
+ title: "Wellness Wednesday: Mind & Body",
103
+ description:
104
+ "Join us for a comprehensive wellness program focusing on mental and physical health.",
105
+ },
106
+ {
107
+ eventWrapper: null,
108
+ image: DUMMY_IMAGE,
109
+ textWrapper: null,
110
+ "caption-text": "Career Event",
111
+ "date-icon-wrapper": null,
112
+ "date-icon": DUMMY_ICON,
113
+ publishedAt: "8 November, 2025",
114
+ title: "Career Fair: Your Future Awaits",
115
+ description:
116
+ "Connect with top employers and discover exciting career opportunities in your field.",
117
+ },
118
+ ],
119
+ paginationWrapper: null,
120
+ paginationLeftButton: "Prev",
121
+ paginationText: "",
122
+ paginationRightButton: "Next",
123
+ };
124
+
125
+ const DEFAULT_CONTENT_CTA = {
126
+ layout: null,
127
+ container: null,
128
+ "cta-section": null,
129
+ "cta-heading": "Upcoming Events of 2025",
130
+ "cta-button": "View all",
131
+ title: "Events",
132
+ events: [
133
+ {
134
+ eventWrapper: null,
135
+ image: DUMMY_IMAGE,
136
+ textWrapper: null,
137
+ "caption-text": "Sponsor Event",
138
+ "date-icon-wrapper": null,
139
+ "date-icon": DUMMY_ICON,
140
+ publishedAt: "25 July, 2025",
141
+ title: "Books, Brighter Futures: A Day for Change",
142
+ description:
143
+ "Over 400 children will receive new educational supplies during this Event.",
144
+ },
145
+ {
146
+ eventWrapper: null,
147
+ image: DUMMY_IMAGE,
148
+ textWrapper: null,
149
+ "caption-text": "Community Event",
150
+ "date-icon-wrapper": null,
151
+ "date-icon": DUMMY_ICON,
152
+ publishedAt: "15 August, 2025",
153
+ title: "Stories of Impact: Volunteers Who Inspire",
154
+ description:
155
+ "Hear from passionate volunteers about their life-changing moments while working",
156
+ },
157
+ {
158
+ eventWrapper: null,
159
+ image: DUMMY_IMAGE,
160
+ textWrapper: null,
161
+ "caption-text": "Fundraiser Event",
162
+ "date-icon-wrapper": null,
163
+ "date-icon": DUMMY_ICON,
164
+ publishedAt: "3 December, 2025",
165
+ title: "Voices for a Cause: Music & Giving",
166
+ description:
167
+ "Experience an evening of soulful and delightful performances and storytelling.",
168
+ },
169
+ {
170
+ eventWrapper: null,
171
+ image: DUMMY_IMAGE,
172
+ textWrapper: null,
173
+ "caption-text": "Workshop Event",
174
+ "date-icon-wrapper": null,
175
+ "date-icon": DUMMY_ICON,
176
+ publishedAt: "10 March, 2025",
177
+ title: "Digital Skills for Tomorrow",
178
+ description:
179
+ "Learn essential digital skills that will help you succeed in the modern workplace.",
180
+ },
181
+ {
182
+ eventWrapper: null,
183
+ image: DUMMY_IMAGE,
184
+ textWrapper: null,
185
+ "caption-text": "Health Event",
186
+ "date-icon-wrapper": null,
187
+ "date-icon": DUMMY_ICON,
188
+ publishedAt: "22 September, 2025",
189
+ title: "Wellness Wednesday: Mind & Body",
190
+ description:
191
+ "Join us for a comprehensive wellness program focusing on mental and physical health.",
192
+ },
193
+ {
194
+ eventWrapper: null,
195
+ image: DUMMY_IMAGE,
196
+ textWrapper: null,
197
+ "caption-text": "Career Event",
198
+ "date-icon-wrapper": null,
199
+ "date-icon": DUMMY_ICON,
200
+ publishedAt: "8 November, 2025",
201
+ title: "Career Fair: Your Future Awaits",
202
+ description:
203
+ "Connect with top employers and discover exciting career opportunities in your field.",
204
+ },
205
+ ],
206
+ paginationWrapper: null,
207
+ paginationLeftButton: "Previous",
208
+ paginationText: "",
209
+ paginationRightButton: "Next",
210
+ };
211
+
212
+ export type IEventListing = typeof DEFAULT_CONTENT;
213
+
214
+ export const EventListing: IBlock = {
215
+ category_id: "event",
216
+ title: "Event Listing",
217
+ key: "event-listing",
218
+ version: "v1",
219
+ prompt_description:
220
+ "Grid of event cards in two rows, each card featuring a top image, event title, brief description, and date; section headline above and pagination buttons below.",
221
+ content_schema: [
222
+ {
223
+ key: "layout",
224
+ label: "Layout",
225
+ field_interface: "LayoutWidget",
226
+ hint: {
227
+ prompt_description:
228
+ "Defines the overall structure and layout of the Events block. No content generation required.",
229
+ },
230
+ },
231
+ {
232
+ key: "container",
233
+ label: "Container",
234
+ field_interface: "ContainerWidget",
235
+ hint: {
236
+ prompt_description:
237
+ "Contains the whole Events section, providing spacing and alignment for visual consistency. No content generation required.",
238
+ },
239
+ },
240
+ {
241
+ key: "header-container",
242
+ label: "Header Container",
243
+ field_interface: "BoxWidget",
244
+ hint: {
245
+ prompt_description:
246
+ "Container for the call-to-action section at the top of the events block, holding the main heading and action button. No content generation required.",
247
+ },
248
+ },
249
+ {
250
+ key: "cta-button",
251
+ label: "CTA Button",
252
+ field_interface: "ButtonWidget",
253
+ hint: {
254
+ prompt_description:
255
+ "Call-to-action button displayed next to the main heading. Should encourage exploration, such as 'View all' or 'See more events'.",
256
+ min_characters: 6,
257
+ max_characters: 15,
258
+ },
259
+ },
260
+ {
261
+ key: "title",
262
+ label: "Title",
263
+ field_interface: "HeadingWidget",
264
+ hint: {
265
+ prompt_description:
266
+ "Block headline centered at the top of the Events section. Should clearly state the purpose of the section, such as 'Events' or a similarly concise title.",
267
+ min_characters: 5,
268
+ max_characters: 18,
269
+ },
270
+ },
271
+ {
272
+ key: "events",
273
+ label: "Events",
274
+ field_interface: "BoxWidget",
275
+ kind: "group",
276
+ fields: [
277
+ {
278
+ key: "eventWrapper",
279
+ label: "Event Wrapper",
280
+ field_interface: "BoxWidget",
281
+ },
282
+ {
283
+ key: "image",
284
+ label: "Image",
285
+ field_interface: "ImageWidget",
286
+ hint: {
287
+ prompt_description:
288
+ "Visual banner or cover image for the event, displayed prominently at the top of each card. Should be inviting and relevant to the event content.",
289
+ orientation: "landscape",
290
+ size: "medium",
291
+ usecase: "hero",
292
+ },
293
+ },
294
+ {
295
+ key: "text-wrapper",
296
+ label: "Text Wrapper",
297
+ field_interface: "BoxWidget",
298
+ },
299
+ {
300
+ key: "text-container",
301
+ label: "Text Container",
302
+ field_interface: "BoxWidget",
303
+ },
304
+
305
+ {
306
+ key: "caption-text",
307
+ label: "Caption Text",
308
+ field_interface: "TypographyWidget",
309
+ hint: {
310
+ prompt_description:
311
+ "Small caption or category label for the event, displayed prominently at the top of the card content. Examples: 'Sponsor Event', 'Community Event', 'Fundraiser Event'.",
312
+ min_characters: 8,
313
+ max_characters: 25,
314
+ },
315
+ },
316
+ {
317
+ key: "date-wrapper",
318
+ label: "Date Wrapper",
319
+ field_interface: "BoxWidget",
320
+ hint: {
321
+ prompt_description:
322
+ "Container for the date icon and date text, arranged in a flex layout. No content generation required.",
323
+ },
324
+ },
325
+ {
326
+ key: "date-icon",
327
+ label: "Date Icon",
328
+ field_interface: "IconWidget",
329
+ hint: {
330
+ prompt_description:
331
+ "Small calendar or date icon displayed next to the event date. Should be simple and clearly recognizable.",
332
+ orientation: "square",
333
+ size: "icon",
334
+ usecase: "icon",
335
+ },
336
+ },
337
+ {
338
+ key: "publishedAt-header",
339
+ label: "Published At Header",
340
+ field_interface: "TypographyWidget",
341
+ hint: {
342
+ prompt_description:
343
+ "Displays the date and time of the event. Format as 'Month DD, YYYY HH:MM AM/PM'. Keep it short, clear, and easily readable.",
344
+ min_characters: 16,
345
+ max_characters: 28,
346
+ },
347
+ },
348
+ {
349
+ key: "title",
350
+ label: "Title",
351
+ field_interface: "TypographyWidget",
352
+ hint: {
353
+ prompt_description:
354
+ "Event card headline. Should be the name or title of the event, immediately catching the user's attention. Aim for clarity and engagement.",
355
+ min_characters: 8,
356
+ max_characters: 32,
357
+ },
358
+ },
359
+ {
360
+ key: "description",
361
+ label: "Description",
362
+ field_interface: "TypographyWidget",
363
+ hint: {
364
+ prompt_description:
365
+ "Short summary or description of the event, conveying value and enticing interest. Displayed in one or two lines under the event title. Keep concise yet informative.",
366
+ min_characters: 40,
367
+ max_characters: 120,
368
+ },
369
+ },
370
+ {
371
+ key: "publishedAt",
372
+ label: "Published At",
373
+ field_interface: "TypographyWidget",
374
+ hint: {
375
+ prompt_description:
376
+ "Displays the date and time of the event. Format as 'Month DD, YYYY HH:MM AM/PM'. Keep it short, clear, and easily readable.",
377
+ min_characters: 16,
378
+ max_characters: 28,
379
+ },
380
+ },
381
+ ],
382
+ hint: {
383
+ prompt_description:
384
+ "A group representing a grid of event cards. Each card highlights an upcoming or featured event. Intended for listing multiple events at a glance.",
385
+ min_items: 6,
386
+ max_items: 6,
387
+ },
388
+ },
389
+ {
390
+ key: "paginationWrapper",
391
+ label: "Pagination Wrapper",
392
+ field_interface: "BoxWidget",
393
+ hint: {
394
+ prompt_description:
395
+ "Container holding pagination controls (buttons and info) at the bottom of the event grid. Provides structure and alignment for pagination elements. No content generation required.",
396
+ },
397
+ },
398
+ {
399
+ key: "paginationLeftButton",
400
+ label: "Pagination Left Button",
401
+ field_interface: "ButtonWidget",
402
+ hint: {
403
+ prompt_description:
404
+ "Button for navigating to the previous page of events. Label should be clear and descriptive, such as 'Previous'.",
405
+ min_characters: 4,
406
+ max_characters: 12,
407
+ },
408
+ },
409
+ {
410
+ key: "paginationInfo",
411
+ label: "Pagination Info",
412
+ field_interface: "TypographyWidget",
413
+ hint: {
414
+ prompt_description:
415
+ "Displays the current events page and total pages, e.g., '1/10'. Keep format concise and clear.",
416
+ min_characters: 3,
417
+ max_characters: 8,
418
+ },
419
+ },
420
+ {
421
+ key: "paginationText",
422
+ label: "Pagination Text",
423
+ field_interface: "TypographyWidget",
424
+ hint: {
425
+ prompt_description:
426
+ "Displays the current events page and total pages, e.g., '1/10'. Keep format concise and clear.",
427
+ min_characters: 3,
428
+ max_characters: 8,
429
+ },
430
+ },
431
+ {
432
+ key: "paginationRightButton",
433
+ label: "Pagination Right Button",
434
+ field_interface: "ButtonWidget",
435
+ hint: {
436
+ prompt_description:
437
+ "Button for navigating to the next page of events. Label should be clear and descriptive, such as 'Next'.",
438
+ min_characters: 4,
439
+ max_characters: 12,
440
+ },
441
+ },
442
+ ],
443
+ layouts: [
444
+ {
445
+ key: "default",
446
+ title: "Default",
447
+ styles: {
448
+ layout: {
449
+ "padding-left": "10xl",
450
+ "padding-right": "10xl",
451
+ "padding-top": "5xl",
452
+ "padding-bottom": "5xl",
453
+ tablet: {
454
+ "padding-left": "8xl",
455
+ "padding-right": "8xl",
456
+ "padding-top": "4xl",
457
+ "padding-bottom": "4xl",
458
+ },
459
+ mobile: {
460
+ "padding-left": "6xl",
461
+ "padding-right": "6xl",
462
+ "padding-top": "3xl",
463
+ "padding-bottom": "3xl",
464
+ },
465
+ filter: "none",
466
+ },
467
+ title: {
468
+ "padding-left": "none",
469
+ color: "text-1",
470
+ },
471
+ container: {
472
+ display: "flex",
473
+ "flex-direction": "column",
474
+ "align-items": "center",
475
+ "row-gap": "2xl",
476
+ },
477
+ events_levoGroup: {
478
+ display: "grid",
479
+ width: "100%",
480
+ "grid-template-columns": "repeat(3, 1fr)",
481
+ "row-gap": "5xl",
482
+ "column-gap": "5xl",
483
+ tablet: {
484
+ "grid-template-columns": "repeat(2, 1fr)",
485
+ },
486
+ mobile: {
487
+ "grid-template-columns": "repeat(1, 1fr)",
488
+ "row-gap": "lg",
489
+ },
490
+ },
491
+ events: [
492
+ {
493
+ eventWrapper: {
494
+ "border-radius": "base",
495
+ overflow: "hidden",
496
+ "box-shadow": "default",
497
+ },
498
+ image: {
499
+ width: "100%",
500
+ },
501
+ textWrapper: {
502
+ "padding-left": "xl",
503
+ "padding-top": "2xl",
504
+ "padding-right": "xl",
505
+ "padding-bottom": "2xl",
506
+ display: "flex",
507
+ "flex-direction": "column",
508
+ "row-gap": "sm",
509
+ },
510
+ title: {
511
+ "font-weight": 400,
512
+ "font-size": "xl",
513
+ filter: "none",
514
+ color: "text-1",
515
+ },
516
+ description: {
517
+ overflow: "hidden",
518
+ display: "-webkit-box",
519
+ "-webkit-box-orient": "vertical",
520
+ "-webkit-line-clamp": 3,
521
+ color: "text-2",
522
+ },
523
+ publishedAt: {
524
+ "font-size": "sm",
525
+ },
526
+ "text-container": {
527
+ filter: "none",
528
+ display: "none",
529
+ },
530
+ "text-wrapper": {
531
+ "padding-left": "xl",
532
+ "padding-top": "2xl",
533
+ "padding-right": "xl",
534
+ "padding-bottom": "2xl",
535
+ display: "flex",
536
+ "flex-direction": "column",
537
+ "row-gap": "sm",
538
+ filter: "none",
539
+ },
540
+ },
541
+ {
542
+ eventWrapper: {
543
+ "border-radius": "xl",
544
+ overflow: "hidden",
545
+ "box-shadow":
546
+ "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
547
+ filter: "none",
548
+ },
549
+ image: {
550
+ width: "100%",
551
+ },
552
+ textWrapper: {
553
+ "padding-left": "xl",
554
+ "padding-top": "2xl",
555
+ "padding-right": "xl",
556
+ "padding-bottom": "2xl",
557
+ display: "flex",
558
+ "flex-direction": "column",
559
+ "row-gap": "sm",
560
+ },
561
+ title: {
562
+ "font-weight": 400,
563
+ "font-size": "xl",
564
+ filter: "none",
565
+ color: "text-1",
566
+ },
567
+ description: {
568
+ overflow: "hidden",
569
+ display: "-webkit-box",
570
+ "-webkit-box-orient": "vertical",
571
+ "-webkit-line-clamp": 3,
572
+ color: "text-2",
573
+ },
574
+ publishedAt: {
575
+ "font-size": "sm",
576
+ },
577
+ "text-container": {
578
+ filter: "none",
579
+ display: "none",
580
+ },
581
+ "text-wrapper": {
582
+ "padding-left": "xl",
583
+ "padding-top": "2xl",
584
+ "padding-right": "xl",
585
+ "padding-bottom": "2xl",
586
+ display: "flex",
587
+ "flex-direction": "column",
588
+ "row-gap": "sm",
589
+ filter: "none",
590
+ },
591
+ },
592
+ {
593
+ eventWrapper: {
594
+ "border-radius": "base",
595
+ overflow: "hidden",
596
+ "box-shadow": "default",
597
+ filter: "none",
598
+ },
599
+ image: {
600
+ width: "100%",
601
+ },
602
+ textWrapper: {
603
+ "padding-left": "xl",
604
+ "padding-top": "2xl",
605
+ "padding-right": "xl",
606
+ "padding-bottom": "2xl",
607
+ display: "flex",
608
+ "flex-direction": "column",
609
+ "row-gap": "sm",
610
+ },
611
+ title: {
612
+ "font-weight": 400,
613
+ "font-size": "xl",
614
+ },
615
+ description: {
616
+ overflow: "hidden",
617
+ display: "-webkit-box",
618
+ "-webkit-box-orient": "vertical",
619
+ "-webkit-line-clamp": 3,
620
+ color: "text-2",
621
+ },
622
+ publishedAt: {
623
+ color: "text-2",
624
+ },
625
+ "text-container": {
626
+ filter: "none",
627
+ display: "none",
628
+ },
629
+ "text-wrapper": {
630
+ "padding-left": "xl",
631
+ "padding-top": "2xl",
632
+ "padding-right": "xl",
633
+ "padding-bottom": "2xl",
634
+ display: "flex",
635
+ "flex-direction": "column",
636
+ "row-gap": "sm",
637
+ filter: "none",
638
+ },
639
+ },
640
+ {
641
+ eventWrapper: {
642
+ "border-radius": "base",
643
+ overflow: "hidden",
644
+ "box-shadow": "default",
645
+ },
646
+ image: {
647
+ width: "100%",
648
+ },
649
+ textWrapper: {
650
+ "padding-left": "xl",
651
+ "padding-top": "2xl",
652
+ "padding-right": "xl",
653
+ "padding-bottom": "2xl",
654
+ display: "flex",
655
+ "flex-direction": "column",
656
+ "row-gap": "sm",
657
+ },
658
+ title: {
659
+ "font-weight": 400,
660
+ "font-size": "xl",
661
+ },
662
+ description: {
663
+ overflow: "hidden",
664
+ display: "-webkit-box",
665
+ "-webkit-box-orient": "vertical",
666
+ "-webkit-line-clamp": 3,
667
+ color: "text-2",
668
+ },
669
+ publishedAt: {
670
+ "font-size": "sm",
671
+ },
672
+ "text-container": {
673
+ filter: "none",
674
+ display: "none",
675
+ },
676
+ "text-wrapper": {
677
+ "padding-left": "xl",
678
+ "padding-top": "2xl",
679
+ "padding-right": "xl",
680
+ "padding-bottom": "2xl",
681
+ display: "flex",
682
+ "flex-direction": "column",
683
+ "row-gap": "sm",
684
+ filter: "none",
685
+ },
686
+ },
687
+ {
688
+ eventWrapper: {
689
+ "border-radius": "base",
690
+ overflow: "hidden",
691
+ "box-shadow": "default",
692
+ },
693
+ image: {
694
+ width: "100%",
695
+ },
696
+ textWrapper: {
697
+ "padding-left": "xl",
698
+ "padding-top": "2xl",
699
+ "padding-right": "xl",
700
+ "padding-bottom": "2xl",
701
+ display: "flex",
702
+ "flex-direction": "column",
703
+ "row-gap": "sm",
704
+ },
705
+ title: {
706
+ "font-weight": 400,
707
+ "font-size": "xl",
708
+ },
709
+ description: {
710
+ overflow: "hidden",
711
+ display: "-webkit-box",
712
+ "-webkit-box-orient": "vertical",
713
+ "-webkit-line-clamp": 3,
714
+ color: "text-2",
715
+ },
716
+ publishedAt: {
717
+ "font-size": "sm",
718
+ },
719
+ "text-container": {
720
+ filter: "none",
721
+ display: "none",
722
+ },
723
+ "text-wrapper": {
724
+ "padding-left": "xl",
725
+ "padding-top": "2xl",
726
+ "padding-right": "xl",
727
+ "padding-bottom": "2xl",
728
+ display: "flex",
729
+ "flex-direction": "column",
730
+ "row-gap": "sm",
731
+ filter: "none",
732
+ },
733
+ },
734
+ {
735
+ eventWrapper: {
736
+ "border-radius": "base",
737
+ overflow: "hidden",
738
+ "box-shadow": "default",
739
+ },
740
+ image: {
741
+ width: "100%",
742
+ },
743
+ textWrapper: {
744
+ "padding-left": "xl",
745
+ "padding-top": "2xl",
746
+ "padding-right": "xl",
747
+ "padding-bottom": "2xl",
748
+ display: "flex",
749
+ "flex-direction": "column",
750
+ "row-gap": "sm",
751
+ },
752
+ title: {
753
+ "font-weight": 400,
754
+ "font-size": "xl",
755
+ },
756
+ description: {
757
+ overflow: "hidden",
758
+ display: "-webkit-box",
759
+ "-webkit-box-orient": "vertical",
760
+ "-webkit-line-clamp": 3,
761
+ color: "text-2",
762
+ },
763
+ publishedAt: {
764
+ "font-size": "sm",
765
+ },
766
+ "text-container": {
767
+ filter: "none",
768
+ display: "none",
769
+ },
770
+ "text-wrapper": {
771
+ "padding-left": "xl",
772
+ "padding-top": "2xl",
773
+ "padding-right": "xl",
774
+ "padding-bottom": "2xl",
775
+ display: "flex",
776
+ "flex-direction": "column",
777
+ "row-gap": "sm",
778
+ filter: "none",
779
+ },
780
+ },
781
+ ],
782
+ paginationWrapper: {
783
+ width: "100%",
784
+ display: "flex",
785
+ "justify-content": "center",
786
+ "column-gap": "lg",
787
+ "align-items": "center",
788
+ },
789
+ "cta-button": {
790
+ filter: "none",
791
+ },
792
+ },
793
+ content: DEFAULT_CONTENT,
794
+ config: {
795
+ title: {
796
+ selectedVariants: {
797
+ Heading_Level: "H2",
798
+ },
799
+ heading: {
800
+ level: 2,
801
+ },
802
+ },
803
+ },
804
+ },
805
+ {
806
+ key: "cta-variant",
807
+ title: "CTA Variant",
808
+ styles: {
809
+ layout: {
810
+ "padding-left": "10xl",
811
+ "padding-right": "10xl",
812
+ "padding-top": "5xl",
813
+ "padding-bottom": "5xl",
814
+ tablet: {
815
+ "padding-left": "8xl",
816
+ "padding-right": "8xl",
817
+ "padding-top": "4xl",
818
+ "padding-bottom": "4xl",
819
+ },
820
+ mobile: {
821
+ "padding-left": "6xl",
822
+ "padding-right": "6xl",
823
+ "padding-top": "3xl",
824
+ "padding-bottom": "3xl",
825
+ },
826
+ filter: "none",
827
+ },
828
+ "header-container": {
829
+ display: "flex",
830
+ width: "100%",
831
+ "justify-content": "space-between",
832
+ "align-items": "center",
833
+ "margin-bottom": "3xl",
834
+ mobile: {
835
+ "flex-direction": "column",
836
+ "align-items": "flex-start",
837
+ "row-gap": "lg",
838
+ },
839
+ },
840
+ title: {
841
+ color: "text-1",
842
+ margin: "0",
843
+ },
844
+
845
+ container: {
846
+ display: "flex",
847
+ "flex-direction": "column",
848
+ "align-items": "center",
849
+ "row-gap": "2xl",
850
+ filter: "none",
851
+ },
852
+ events_levoGroup: {
853
+ display: "grid",
854
+ width: "100%",
855
+ "grid-template-columns": "repeat(3, 1fr)",
856
+ "row-gap": "5xl",
857
+ "column-gap": "5xl",
858
+ tablet: {
859
+ "grid-template-columns": "repeat(2, 1fr)",
860
+ },
861
+ mobile: {
862
+ "grid-template-columns": "repeat(1, 1fr)",
863
+ "row-gap": "lg",
864
+ },
865
+ },
866
+ events: [
867
+ {
868
+ eventWrapper: {
869
+ "border-radius": "base",
870
+ overflow: "hidden",
871
+ "box-shadow": "default",
872
+ position: "relative",
873
+ filter: "none",
874
+ "padding-bottom": "base",
875
+ },
876
+ image: {
877
+ width: "100%",
878
+ height: "200px",
879
+ "object-fit": "cover",
880
+ filter: "none",
881
+ "border-radius": "base",
882
+ },
883
+ "text-wrapper": {
884
+ "padding-left": "xl",
885
+ "padding-top": "2xl",
886
+ "padding-right": "xl",
887
+ "padding-bottom": "base",
888
+ display: "flex",
889
+ "flex-direction": "column",
890
+ "row-gap": "lg",
891
+ filter: "none",
892
+ },
893
+ "text-container": {
894
+ display: "flex",
895
+ "justify-content": "start",
896
+ "align-items": "center",
897
+ filter: "none",
898
+ "column-gap": "xs",
899
+ },
900
+ "caption-text": {
901
+ "font-family": "var(--font-body)",
902
+ color: "white",
903
+ "font-size": "xs",
904
+ "line-height": "normal",
905
+ "background-color": "brand",
906
+ "font-weight": 500,
907
+ "padding-left": "sm",
908
+ "padding-right": "sm",
909
+ "padding-top": "2xs",
910
+ "padding-bottom": "2xs",
911
+ "border-radius": "3xl",
912
+ filter: "none",
913
+ },
914
+ "date-wrapper": {
915
+ display: "flex",
916
+ "align-items": "center",
917
+ "column-gap": "2xs",
918
+ filter: "none",
919
+ " border-left": "1px solid #000",
920
+ "padding-left": "2xs",
921
+ },
922
+ "date-icon": {
923
+ width: "16px",
924
+ height: "16px",
925
+ filter: "none",
926
+ },
927
+ "publishedAt-header": {
928
+ "font-size": "sm",
929
+ color: "text-2",
930
+ "font-weight": 500,
931
+ filter: "none",
932
+ },
933
+ title: {
934
+ "font-weight": 600,
935
+ "font-size": "xl",
936
+ "margin-bottom": "xs",
937
+ color: "text-1",
938
+ filter: "none",
939
+ },
940
+ description: {
941
+ overflow: "hidden",
942
+ display: "-webkit-box",
943
+ "-webkit-box-orient": "vertical",
944
+ "-webkit-line-clamp": 3,
945
+ color: "text-2",
946
+ "line-height": 1.5,
947
+ },
948
+ publishedAt: {
949
+ display: "none",
950
+ filter: "none",
951
+ },
952
+ },
953
+ {
954
+ eventWrapper: {
955
+ "border-radius": "base",
956
+ overflow: "hidden",
957
+ "box-shadow": "default",
958
+ position: "relative",
959
+ filter: "none",
960
+ },
961
+ image: {
962
+ width: "100%",
963
+ height: "200px",
964
+ "object-fit": "cover",
965
+ filter: "none",
966
+ },
967
+ "text-wrapper": {
968
+ "padding-left": "xl",
969
+ "padding-top": "2xl",
970
+ "padding-right": "xl",
971
+ "padding-bottom": "base",
972
+ display: "flex",
973
+ "flex-direction": "column",
974
+ "row-gap": "lg",
975
+ filter: "none",
976
+ },
977
+ "text-container": {
978
+ display: "flex",
979
+ "justify-content": "start",
980
+ "align-items": "center",
981
+ filter: "none",
982
+ "column-gap": "lg",
983
+ },
984
+ "caption-text": {
985
+ "font-family": "var(--font-body)",
986
+ color: "white",
987
+ "font-size": "xs",
988
+ "line-height": "normal",
989
+ "background-color": "brand",
990
+ "font-weight": 500,
991
+ "padding-left": "sm",
992
+ "padding-right": "sm",
993
+ "padding-top": "2xs",
994
+ "padding-bottom": "2xs",
995
+ "border-radius": "3xl",
996
+ filter: "none",
997
+ },
998
+ "date-wrapper": {
999
+ display: "flex",
1000
+ "align-items": "center",
1001
+ "column-gap": "xs",
1002
+ },
1003
+ "date-icon": {
1004
+ width: "16px",
1005
+ height: "16px",
1006
+ },
1007
+ "publishedAt-header": {
1008
+ "font-size": "sm",
1009
+ color: "text-2",
1010
+ "font-weight": 500,
1011
+ },
1012
+ title: {
1013
+ "font-weight": 600,
1014
+ "font-size": "xl",
1015
+ "margin-bottom": "xs",
1016
+ color: "text-1",
1017
+ },
1018
+ description: {
1019
+ overflow: "hidden",
1020
+ display: "-webkit-box",
1021
+ "-webkit-box-orient": "vertical",
1022
+ "-webkit-line-clamp": 3,
1023
+ color: "text-2",
1024
+ "line-height": 1.5,
1025
+ },
1026
+ publishedAt: {
1027
+ display: "none",
1028
+ },
1029
+ },
1030
+ {
1031
+ eventWrapper: {
1032
+ "border-radius": "base",
1033
+ overflow: "hidden",
1034
+ "box-shadow": "default",
1035
+ position: "relative",
1036
+ filter: "none",
1037
+ },
1038
+ image: {
1039
+ width: "100%",
1040
+ height: "200px",
1041
+ "object-fit": "cover",
1042
+ },
1043
+ "text-wrapper": {
1044
+ "padding-left": "xl",
1045
+ "padding-top": "2xl",
1046
+ "padding-right": "xl",
1047
+ "padding-bottom": "base",
1048
+ display: "flex",
1049
+ "flex-direction": "column",
1050
+ "row-gap": "lg",
1051
+ filter: "none",
1052
+ },
1053
+ "text-container": {
1054
+ display: "flex",
1055
+ "justify-content": "start",
1056
+ "align-items": "center",
1057
+ filter: "none",
1058
+ "column-gap": "lg",
1059
+ },
1060
+ "caption-text": {
1061
+ "font-family": "var(--font-body)",
1062
+ color: "white",
1063
+ "font-size": "xs",
1064
+ "line-height": "normal",
1065
+ "background-color": "brand",
1066
+ "font-weight": 500,
1067
+ "padding-left": "sm",
1068
+ "padding-right": "sm",
1069
+ "padding-top": "2xs",
1070
+ "padding-bottom": "2xs",
1071
+ "border-radius": "3xl",
1072
+ filter: "none",
1073
+ },
1074
+ "date-wrapper": {
1075
+ display: "flex",
1076
+ "align-items": "center",
1077
+ "column-gap": "xs",
1078
+ },
1079
+ "date-icon": {
1080
+ width: "16px",
1081
+ height: "16px",
1082
+ },
1083
+ "publishedAt-header": {
1084
+ "font-size": "sm",
1085
+ color: "text-2",
1086
+ "font-weight": 500,
1087
+ },
1088
+ title: {
1089
+ "font-weight": 600,
1090
+ "font-size": "xl",
1091
+ "margin-bottom": "xs",
1092
+ color: "text-1",
1093
+ },
1094
+ description: {
1095
+ overflow: "hidden",
1096
+ display: "-webkit-box",
1097
+ "-webkit-box-orient": "vertical",
1098
+ "-webkit-line-clamp": 3,
1099
+ color: "text-2",
1100
+ "line-height": 1.5,
1101
+ },
1102
+ publishedAt: {
1103
+ display: "none",
1104
+ },
1105
+ },
1106
+ {
1107
+ eventWrapper: {
1108
+ "border-radius": "base",
1109
+ overflow: "hidden",
1110
+ "box-shadow": "default",
1111
+ position: "relative",
1112
+ },
1113
+ image: {
1114
+ width: "100%",
1115
+ height: "200px",
1116
+ "object-fit": "cover",
1117
+ },
1118
+ "text-wrapper": {
1119
+ "padding-left": "base",
1120
+ "padding-top": "2xl",
1121
+ "padding-right": "base",
1122
+ "padding-bottom": "base",
1123
+ display: "flex",
1124
+ "flex-direction": "column",
1125
+ "row-gap": "lg",
1126
+ filter: "none",
1127
+ },
1128
+ "text-container": {
1129
+ display: "flex",
1130
+ "justify-content": "start",
1131
+ "align-items": "center",
1132
+ filter: "none",
1133
+ "column-gap": "lg",
1134
+ },
1135
+ "caption-text": {
1136
+ "font-family": "var(--font-body)",
1137
+ color: "white",
1138
+ "font-size": "xs",
1139
+ "line-height": "normal",
1140
+ "background-color": "brand",
1141
+ "font-weight": 500,
1142
+ "padding-left": "sm",
1143
+ "padding-right": "sm",
1144
+ "padding-top": "2xs",
1145
+ "padding-bottom": "2xs",
1146
+ "border-radius": "3xl",
1147
+ filter: "none",
1148
+ },
1149
+ "date-wrapper": {
1150
+ display: "flex",
1151
+ "align-items": "center",
1152
+ "column-gap": "xs",
1153
+ },
1154
+ "date-icon": {
1155
+ width: "16px",
1156
+ height: "16px",
1157
+ },
1158
+ "publishedAt-header": {
1159
+ "font-size": "sm",
1160
+ color: "text-2",
1161
+ "font-weight": 500,
1162
+ },
1163
+ title: {
1164
+ "font-weight": 600,
1165
+ "font-size": "xl",
1166
+ "margin-bottom": "xs",
1167
+ color: "text-1",
1168
+ },
1169
+ description: {
1170
+ overflow: "hidden",
1171
+ display: "-webkit-box",
1172
+ "-webkit-box-orient": "vertical",
1173
+ "-webkit-line-clamp": 3,
1174
+ color: "text-2",
1175
+ "line-height": 1.5,
1176
+ },
1177
+ publishedAt: {
1178
+ display: "none",
1179
+ },
1180
+ },
1181
+ {
1182
+ eventWrapper: {
1183
+ "border-radius": "base",
1184
+ overflow: "hidden",
1185
+ "box-shadow": "default",
1186
+ position: "relative",
1187
+ },
1188
+ image: {
1189
+ width: "100%",
1190
+ height: "200px",
1191
+ "object-fit": "cover",
1192
+ },
1193
+ "text-wrapper": {
1194
+ "padding-left": "xl",
1195
+ "padding-top": "2xl",
1196
+ "padding-right": "xl",
1197
+ "padding-bottom": "base",
1198
+ display: "flex",
1199
+ "flex-direction": "column",
1200
+ "row-gap": "lg",
1201
+ filter: "none",
1202
+ },
1203
+ "text-container": {
1204
+ display: "flex",
1205
+ "justify-content": "start",
1206
+ "align-items": "center",
1207
+ filter: "none",
1208
+ "column-gap": "lg",
1209
+ },
1210
+ "caption-text": {
1211
+ "font-family": "var(--font-body)",
1212
+ color: "white",
1213
+ "font-size": "xs",
1214
+ "line-height": "normal",
1215
+ "background-color": "brand",
1216
+ "font-weight": 500,
1217
+ "padding-left": "sm",
1218
+ "padding-right": "sm",
1219
+ "padding-top": "2xs",
1220
+ "padding-bottom": "2xs",
1221
+ "border-radius": "3xl",
1222
+ filter: "none",
1223
+ },
1224
+ "date-wrapper": {
1225
+ display: "flex",
1226
+ "align-items": "center",
1227
+ "column-gap": "xs",
1228
+ },
1229
+ "date-icon": {
1230
+ width: "16px",
1231
+ height: "16px",
1232
+ },
1233
+ "publishedAt-header": {
1234
+ "font-size": "sm",
1235
+ color: "text-2",
1236
+ "font-weight": 500,
1237
+ },
1238
+ title: {
1239
+ "font-weight": 600,
1240
+ "font-size": "xl",
1241
+ "margin-bottom": "xs",
1242
+ color: "text-1",
1243
+ },
1244
+ description: {
1245
+ overflow: "hidden",
1246
+ display: "-webkit-box",
1247
+ "-webkit-box-orient": "vertical",
1248
+ "-webkit-line-clamp": 3,
1249
+ color: "text-2",
1250
+ "line-height": 1.5,
1251
+ },
1252
+ publishedAt: {
1253
+ display: "none",
1254
+ },
1255
+ },
1256
+ {
1257
+ eventWrapper: {
1258
+ "border-radius": "base",
1259
+ overflow: "hidden",
1260
+ "box-shadow": "default",
1261
+ position: "relative",
1262
+ },
1263
+ image: {
1264
+ width: "100%",
1265
+ height: "200px",
1266
+ "object-fit": "cover",
1267
+ },
1268
+ "text-wrapper": {
1269
+ "padding-left": "xl",
1270
+ "padding-top": "2xl",
1271
+ "padding-right": "xl",
1272
+ "padding-bottom": "base",
1273
+ display: "flex",
1274
+ "flex-direction": "column",
1275
+ "row-gap": "lg",
1276
+ filter: "none",
1277
+ },
1278
+ "text-container": {
1279
+ display: "flex",
1280
+ "justify-content": "start",
1281
+ "align-items": "center",
1282
+ filter: "none",
1283
+ "column-gap": "lg",
1284
+ },
1285
+ "caption-text": {
1286
+ "font-family": "var(--font-body)",
1287
+ color: "white",
1288
+ "font-size": "xs",
1289
+ "line-height": "normal",
1290
+ "background-color": "brand",
1291
+ "font-weight": 500,
1292
+ "padding-left": "sm",
1293
+ "padding-right": "sm",
1294
+ "padding-top": "2xs",
1295
+ "padding-bottom": "2xs",
1296
+ "border-radius": "3xl",
1297
+ filter: "none",
1298
+ },
1299
+ "date-wrapper": {
1300
+ display: "flex",
1301
+ "align-items": "center",
1302
+ "column-gap": "xs",
1303
+ },
1304
+ "date-icon": {
1305
+ width: "16px",
1306
+ height: "16px",
1307
+ },
1308
+ "publishedAt-header": {
1309
+ "font-size": "sm",
1310
+ color: "text-2",
1311
+ "font-weight": 500,
1312
+ },
1313
+ title: {
1314
+ "font-weight": 600,
1315
+ "font-size": "xl",
1316
+ "margin-bottom": "xs",
1317
+ color: "text-1",
1318
+ },
1319
+ description: {
1320
+ overflow: "hidden",
1321
+ display: "-webkit-box",
1322
+ "-webkit-box-orient": "vertical",
1323
+ "-webkit-line-clamp": 3,
1324
+ color: "text-2",
1325
+ "line-height": 1.5,
1326
+ },
1327
+ publishedAt: {
1328
+ display: "none",
1329
+ },
1330
+ },
1331
+ ],
1332
+ paginationWrapper: {
1333
+ width: "100%",
1334
+ display: "flex",
1335
+ "justify-content": "center",
1336
+ "column-gap": "lg",
1337
+ "align-items": "center",
1338
+ },
1339
+ },
1340
+ content: DEFAULT_CONTENT_CTA,
1341
+ config: {
1342
+ title: {
1343
+ selectedVariants: {
1344
+ Heading_Level: "H2",
1345
+ },
1346
+ heading: {
1347
+ level: 2,
1348
+ },
1349
+ },
1350
+ },
1351
+ },
1352
+ ],
1353
+ };