@levo-so/blocks 0.1.0 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (471) hide show
  1. package/package.json +5 -9
  2. package/src/blocks/about-us/about-us-1.schema.ts +563 -0
  3. package/src/blocks/about-us/about-us-1.tsx +53 -0
  4. package/src/blocks/blogs/blog-listing-1.schema.ts +419 -0
  5. package/src/blocks/blogs/blog-listing-1.tsx +79 -0
  6. package/src/blocks/blogs/blog-listing-2.schema.ts +608 -0
  7. package/src/blocks/blogs/blog-listing-2.tsx +83 -0
  8. package/src/blocks/blogs/blog-post-1.schema.ts +392 -0
  9. package/src/blocks/blogs/blog-post-1.tsx +52 -0
  10. package/src/blocks/blogs/blog-post-2.schema.ts +834 -0
  11. package/src/blocks/blogs/blog-post-2.tsx +131 -0
  12. package/src/blocks/cards/cards-10.schema.ts +433 -0
  13. package/src/blocks/cards/cards-10.tsx +46 -0
  14. package/src/blocks/cards/cards-11.schema.ts +440 -0
  15. package/src/blocks/cards/cards-11.tsx +50 -0
  16. package/src/blocks/cards/cards-12.schema.ts +578 -0
  17. package/src/blocks/cards/cards-12.tsx +54 -0
  18. package/src/blocks/cards/cards-2.schema.ts +293 -0
  19. package/src/blocks/cards/cards-2.tsx +42 -0
  20. package/src/blocks/cards/cards-3.schema.ts +365 -0
  21. package/src/blocks/cards/cards-3.tsx +49 -0
  22. package/src/blocks/cards/cards-4.schema.ts +677 -0
  23. package/src/blocks/cards/cards-4.tsx +50 -0
  24. package/src/blocks/cards/cards-5.schema.ts +264 -0
  25. package/src/blocks/cards/cards-5.tsx +34 -0
  26. package/src/blocks/cards/cards-6.schema.ts +639 -0
  27. package/src/blocks/cards/cards-6.tsx +136 -0
  28. package/src/blocks/cards/cards-7.schema.ts +1793 -0
  29. package/src/blocks/cards/cards-7.tsx +165 -0
  30. package/src/blocks/cards/cards-8.schema.ts +691 -0
  31. package/src/blocks/cards/cards-8.tsx +43 -0
  32. package/src/blocks/cards/cards-9.schema.ts +827 -0
  33. package/src/blocks/cards/cards-9.tsx +54 -0
  34. package/src/blocks/carousel/carousel-1.schema.ts +250 -0
  35. package/src/blocks/carousel/carousel-1.tsx +79 -0
  36. package/src/blocks/contact-us/contact-us-1.schema.ts +226 -0
  37. package/src/blocks/contact-us/contact-us-1.tsx +39 -0
  38. package/src/blocks/contact-us/contact-us-2.schema.ts +524 -0
  39. package/src/blocks/contact-us/contact-us-2.tsx +71 -0
  40. package/src/blocks/content/content-1.schema.ts +884 -0
  41. package/src/blocks/content/content-1.tsx +69 -0
  42. package/src/blocks/content/content-2.schema.ts +209 -0
  43. package/src/blocks/content/content-2.tsx +32 -0
  44. package/src/blocks/content/content-3.schema.ts +864 -0
  45. package/src/blocks/content/content-3.tsx +54 -0
  46. package/src/blocks/content/content-4.schema.ts +287 -0
  47. package/src/blocks/content/content-4.tsx +47 -0
  48. package/src/blocks/content/content-5.schema.ts +944 -0
  49. package/src/blocks/content/content-5.tsx +58 -0
  50. package/src/blocks/content/content-6.schema.ts +991 -0
  51. package/src/blocks/content/content-6.tsx +61 -0
  52. package/src/blocks/cta/cta-1.schema.ts +361 -0
  53. package/src/blocks/cta/cta-1.tsx +33 -0
  54. package/src/blocks/cta/cta-2.schema.ts +209 -0
  55. package/src/blocks/cta/cta-2.tsx +28 -0
  56. package/src/blocks/cta/cta-3.schema.ts +156 -0
  57. package/src/blocks/cta/cta-3.tsx +48 -0
  58. package/src/blocks/embed/embed-1.schema.ts +153 -0
  59. package/src/blocks/embed/embed-1.tsx +38 -0
  60. package/src/blocks/event/event-details.schema.ts +737 -0
  61. package/src/blocks/event/event-details.tsx +107 -0
  62. package/src/blocks/event/event-listing-2.schema.ts +496 -0
  63. package/src/blocks/event/event-listing-2.tsx +70 -0
  64. package/src/blocks/event/event-listing-3.schema.ts +605 -0
  65. package/src/blocks/event/event-listing-3.tsx +95 -0
  66. package/src/blocks/event/event-listing.schema.ts +1358 -0
  67. package/src/blocks/event/event-listing.tsx +90 -0
  68. package/src/blocks/faq/faq-1.schema.ts +357 -0
  69. package/src/blocks/faq/faq-1.tsx +65 -0
  70. package/src/blocks/faq/faq-2.schema.ts +356 -0
  71. package/src/blocks/faq/faq-2.tsx +84 -0
  72. package/src/blocks/faq/faq-3.schema.ts +475 -0
  73. package/src/blocks/faq/faq-3.tsx +70 -0
  74. package/src/blocks/features/features-1/features-1.schema.ts +165 -0
  75. package/src/blocks/features/features-1/features-1.tsx +48 -0
  76. package/src/blocks/features/features-1/variants/default.ts +197 -0
  77. package/{dist/blocks/features/features-1/variants/index.js → src/blocks/features/features-1/variants/index.ts} +7 -1
  78. package/src/blocks/features/features-1/variants/stylized-cards-v1.ts +138 -0
  79. package/src/blocks/features/features-1/variants/stylized-cards-v2.ts +487 -0
  80. package/src/blocks/features/features-2.schema.ts +338 -0
  81. package/src/blocks/features/features-2.tsx +66 -0
  82. package/src/blocks/features/features-3.schema.ts +438 -0
  83. package/src/blocks/features/features-3.tsx +56 -0
  84. package/src/blocks/features/features-4.schema.ts +631 -0
  85. package/src/blocks/features/features-4.tsx +75 -0
  86. package/src/blocks/features/features-5.schema.ts +747 -0
  87. package/src/blocks/features/features-5.tsx +49 -0
  88. package/src/blocks/features/features-6.schema.ts +849 -0
  89. package/src/blocks/features/features-6.tsx +125 -0
  90. package/src/blocks/footer/footer-1.schema.ts +589 -0
  91. package/src/blocks/footer/footer-1.tsx +90 -0
  92. package/src/blocks/footer/footer-2.schema.ts +898 -0
  93. package/src/blocks/footer/footer-2.tsx +77 -0
  94. package/src/blocks/footer/footer-3.schema.ts +487 -0
  95. package/src/blocks/footer/footer-3.tsx +100 -0
  96. package/src/blocks/footer/footer-4.schema.ts +644 -0
  97. package/src/blocks/footer/footer-4.tsx +97 -0
  98. package/src/blocks/footer/footer-5.schema.ts +425 -0
  99. package/src/blocks/footer/footer-5.tsx +91 -0
  100. package/src/blocks/hero/hero-1.schema.ts +766 -0
  101. package/src/blocks/hero/hero-1.tsx +52 -0
  102. package/src/blocks/hero/hero-2.schema.ts +316 -0
  103. package/src/blocks/hero/hero-2.tsx +49 -0
  104. package/src/blocks/hero/hero-3.schema.ts +415 -0
  105. package/src/blocks/hero/hero-3.tsx +50 -0
  106. package/src/blocks/hero/hero-4.schema.ts +325 -0
  107. package/src/blocks/hero/hero-4.tsx +89 -0
  108. package/src/blocks/hero/hero-5.schema.ts +192 -0
  109. package/src/blocks/hero/hero-5.tsx +86 -0
  110. package/src/blocks/hero/hero-6.schema.ts +703 -0
  111. package/src/blocks/hero/hero-6.tsx +62 -0
  112. package/src/blocks/hero/hero-7.schema.ts +508 -0
  113. package/src/blocks/hero/hero-7.tsx +115 -0
  114. package/src/blocks/hero/hero-8.schema.ts +372 -0
  115. package/src/blocks/hero/hero-8.tsx +113 -0
  116. package/src/blocks/hero/hero-9.schema.ts +379 -0
  117. package/src/blocks/hero/hero-9.tsx +49 -0
  118. package/src/blocks/index.ts +78 -0
  119. package/src/blocks/logos/logos-1.schema.ts +264 -0
  120. package/src/blocks/logos/logos-1.tsx +60 -0
  121. package/src/blocks/navbar/navbar-1.schema.ts +961 -0
  122. package/src/blocks/navbar/navbar-1.tsx +398 -0
  123. package/src/blocks/navbar/navbar-2.schema.ts +1226 -0
  124. package/src/blocks/navbar/navbar-2.tsx +417 -0
  125. package/src/blocks/pricing/pricing-1.schema.ts +1002 -0
  126. package/src/blocks/pricing/pricing-1.tsx +88 -0
  127. package/src/blocks/products/products-listing-1.schema.ts +274 -0
  128. package/src/blocks/products/products-listing-1.tsx +48 -0
  129. package/src/blocks/stats/stats-1.schema.ts +231 -0
  130. package/src/blocks/stats/stats-1.tsx +38 -0
  131. package/src/blocks/stats/stats-2.schema.ts +111 -0
  132. package/src/blocks/stats/stats-2.tsx +52 -0
  133. package/src/blocks/stats/variants/default.ts +190 -0
  134. package/src/blocks/stats/variants/hero.ts +153 -0
  135. package/{dist/blocks/stats/variants/index.js → src/blocks/stats/variants/index.ts} +1 -0
  136. package/src/blocks/team/team-1.schema.ts +516 -0
  137. package/src/blocks/team/team-1.tsx +80 -0
  138. package/src/blocks/team/team-2.schema.ts +2813 -0
  139. package/src/blocks/team/team-2.tsx +74 -0
  140. package/src/blocks/team/team-3.schema.ts +707 -0
  141. package/src/blocks/team/team-3.tsx +103 -0
  142. package/src/blocks/termsAndPrivacy/terms-and-conditions-1.schema.ts +168 -0
  143. package/src/blocks/termsAndPrivacy/terms-and-conditions-1.tsx +29 -0
  144. package/src/blocks/testimonial/testimonial-1.schema.ts +345 -0
  145. package/src/blocks/testimonial/testimonial-1.tsx +79 -0
  146. package/src/blocks/testimonial/testimonial-2.schema.ts +816 -0
  147. package/src/blocks/testimonial/testimonial-2.tsx +161 -0
  148. package/src/blocks/testimonial/testimonial-3.schema.ts +279 -0
  149. package/src/blocks/testimonial/testimonial-3.tsx +128 -0
  150. package/src/blocks/testimonial/testimonial-4.schema.ts +3373 -0
  151. package/src/blocks/testimonial/testimonial-4.tsx +202 -0
  152. package/src/blocks/testimonial/testimonial-5.schema.ts +434 -0
  153. package/src/blocks/testimonial/testimonial-5.tsx +106 -0
  154. package/src/blocks/testimonial/testimonial-6.schema.ts +709 -0
  155. package/src/blocks/testimonial/testimonial-6.tsx +128 -0
  156. package/{dist/index.js → src/index.ts} +5 -2
  157. package/{dist/schemas/blocks.js → src/schemas/blocks.ts} +75 -72
  158. package/src/schemas/categories.ts +134 -0
  159. package/src/styles.d.ts +4 -0
  160. package/dist/blocks/about-us/about-us-1.d.ts +0 -5
  161. package/dist/blocks/about-us/about-us-1.js +0 -5
  162. package/dist/blocks/about-us/about-us-1.schema.d.ts +0 -38
  163. package/dist/blocks/about-us/about-us-1.schema.js +0 -537
  164. package/dist/blocks/blogs/blog-listing-1.d.ts +0 -5
  165. package/dist/blocks/blogs/blog-listing-1.js +0 -12
  166. package/dist/blocks/blogs/blog-listing-1.schema.d.ts +0 -59
  167. package/dist/blocks/blogs/blog-listing-1.schema.js +0 -387
  168. package/dist/blocks/blogs/blog-listing-2.d.ts +0 -5
  169. package/dist/blocks/blogs/blog-listing-2.js +0 -9
  170. package/dist/blocks/blogs/blog-listing-2.schema.d.ts +0 -104
  171. package/dist/blocks/blogs/blog-listing-2.schema.js +0 -572
  172. package/dist/blocks/blogs/blog-post-1.d.ts +0 -6
  173. package/dist/blocks/blogs/blog-post-1.js +0 -8
  174. package/dist/blocks/blogs/blog-post-1.schema.d.ts +0 -48
  175. package/dist/blocks/blogs/blog-post-1.schema.js +0 -358
  176. package/dist/blocks/blogs/blog-post-2.d.ts +0 -6
  177. package/dist/blocks/blogs/blog-post-2.js +0 -8
  178. package/dist/blocks/blogs/blog-post-2.schema.d.ts +0 -74
  179. package/dist/blocks/blogs/blog-post-2.schema.js +0 -779
  180. package/dist/blocks/cards/cards-10.d.ts +0 -6
  181. package/dist/blocks/cards/cards-10.js +0 -4
  182. package/dist/blocks/cards/cards-10.schema.d.ts +0 -44
  183. package/dist/blocks/cards/cards-10.schema.js +0 -405
  184. package/dist/blocks/cards/cards-11.d.ts +0 -6
  185. package/dist/blocks/cards/cards-11.js +0 -4
  186. package/dist/blocks/cards/cards-11.schema.d.ts +0 -58
  187. package/dist/blocks/cards/cards-11.schema.js +0 -406
  188. package/dist/blocks/cards/cards-12.d.ts +0 -6
  189. package/dist/blocks/cards/cards-12.js +0 -4
  190. package/dist/blocks/cards/cards-12.schema.d.ts +0 -38
  191. package/dist/blocks/cards/cards-12.schema.js +0 -545
  192. package/dist/blocks/cards/cards-2.d.ts +0 -5
  193. package/dist/blocks/cards/cards-2.js +0 -4
  194. package/dist/blocks/cards/cards-2.schema.d.ts +0 -46
  195. package/dist/blocks/cards/cards-2.schema.js +0 -260
  196. package/dist/blocks/cards/cards-3.d.ts +0 -6
  197. package/dist/blocks/cards/cards-3.js +0 -5
  198. package/dist/blocks/cards/cards-3.schema.d.ts +0 -36
  199. package/dist/blocks/cards/cards-3.schema.js +0 -351
  200. package/dist/blocks/cards/cards-4.d.ts +0 -6
  201. package/dist/blocks/cards/cards-4.js +0 -4
  202. package/dist/blocks/cards/cards-4.schema.d.ts +0 -40
  203. package/dist/blocks/cards/cards-4.schema.js +0 -648
  204. package/dist/blocks/cards/cards-5.d.ts +0 -5
  205. package/dist/blocks/cards/cards-5.js +0 -4
  206. package/dist/blocks/cards/cards-5.schema.d.ts +0 -48
  207. package/dist/blocks/cards/cards-5.schema.js +0 -238
  208. package/dist/blocks/cards/cards-6.d.ts +0 -5
  209. package/dist/blocks/cards/cards-6.js +0 -45
  210. package/dist/blocks/cards/cards-6.schema.d.ts +0 -50
  211. package/dist/blocks/cards/cards-6.schema.js +0 -608
  212. package/dist/blocks/cards/cards-7.d.ts +0 -5
  213. package/dist/blocks/cards/cards-7.js +0 -45
  214. package/dist/blocks/cards/cards-7.schema.d.ts +0 -87
  215. package/dist/blocks/cards/cards-7.schema.js +0 -1732
  216. package/dist/blocks/cards/cards-8.d.ts +0 -6
  217. package/dist/blocks/cards/cards-8.js +0 -4
  218. package/dist/blocks/cards/cards-8.schema.d.ts +0 -40
  219. package/dist/blocks/cards/cards-8.schema.js +0 -660
  220. package/dist/blocks/cards/cards-9.d.ts +0 -5
  221. package/dist/blocks/cards/cards-9.js +0 -4
  222. package/dist/blocks/cards/cards-9.schema.d.ts +0 -55
  223. package/dist/blocks/cards/cards-9.schema.js +0 -798
  224. package/dist/blocks/carousel/carousel-1.d.ts +0 -5
  225. package/dist/blocks/carousel/carousel-1.js +0 -12
  226. package/dist/blocks/carousel/carousel-1.schema.d.ts +0 -51
  227. package/dist/blocks/carousel/carousel-1.schema.js +0 -236
  228. package/dist/blocks/contact-us/contact-us-1.d.ts +0 -5
  229. package/dist/blocks/contact-us/contact-us-1.js +0 -4
  230. package/dist/blocks/contact-us/contact-us-1.schema.d.ts +0 -31
  231. package/dist/blocks/contact-us/contact-us-1.schema.js +0 -202
  232. package/dist/blocks/contact-us/contact-us-2.d.ts +0 -5
  233. package/dist/blocks/contact-us/contact-us-2.js +0 -4
  234. package/dist/blocks/contact-us/contact-us-2.schema.d.ts +0 -59
  235. package/dist/blocks/contact-us/contact-us-2.schema.js +0 -512
  236. package/dist/blocks/content/content-1.d.ts +0 -6
  237. package/dist/blocks/content/content-1.js +0 -4
  238. package/dist/blocks/content/content-1.schema.d.ts +0 -56
  239. package/dist/blocks/content/content-1.schema.js +0 -807
  240. package/dist/blocks/content/content-2.d.ts +0 -5
  241. package/dist/blocks/content/content-2.js +0 -4
  242. package/dist/blocks/content/content-2.schema.d.ts +0 -78
  243. package/dist/blocks/content/content-2.schema.js +0 -200
  244. package/dist/blocks/content/content-3.d.ts +0 -6
  245. package/dist/blocks/content/content-3.js +0 -5
  246. package/dist/blocks/content/content-3.schema.d.ts +0 -23
  247. package/dist/blocks/content/content-3.schema.js +0 -850
  248. package/dist/blocks/content/content-4.d.ts +0 -6
  249. package/dist/blocks/content/content-4.js +0 -6
  250. package/dist/blocks/content/content-4.schema.d.ts +0 -33
  251. package/dist/blocks/content/content-4.schema.js +0 -252
  252. package/dist/blocks/content/content-5.d.ts +0 -6
  253. package/dist/blocks/content/content-5.js +0 -5
  254. package/dist/blocks/content/content-5.schema.d.ts +0 -37
  255. package/dist/blocks/content/content-5.schema.js +0 -932
  256. package/dist/blocks/content/content-6.d.ts +0 -6
  257. package/dist/blocks/content/content-6.js +0 -5
  258. package/dist/blocks/content/content-6.schema.d.ts +0 -41
  259. package/dist/blocks/content/content-6.schema.js +0 -976
  260. package/dist/blocks/cta/cta-1.d.ts +0 -5
  261. package/dist/blocks/cta/cta-1.js +0 -4
  262. package/dist/blocks/cta/cta-1.schema.d.ts +0 -40
  263. package/dist/blocks/cta/cta-1.schema.js +0 -339
  264. package/dist/blocks/cta/cta-2.d.ts +0 -5
  265. package/dist/blocks/cta/cta-2.js +0 -4
  266. package/dist/blocks/cta/cta-2.schema.d.ts +0 -45
  267. package/dist/blocks/cta/cta-2.schema.js +0 -183
  268. package/dist/blocks/cta/cta-3.d.ts +0 -5
  269. package/dist/blocks/cta/cta-3.js +0 -4
  270. package/dist/blocks/cta/cta-3.schema.d.ts +0 -34
  271. package/dist/blocks/cta/cta-3.schema.js +0 -137
  272. package/dist/blocks/embed/embed-1.d.ts +0 -5
  273. package/dist/blocks/embed/embed-1.js +0 -5
  274. package/dist/blocks/embed/embed-1.schema.d.ts +0 -13
  275. package/dist/blocks/embed/embed-1.schema.js +0 -146
  276. package/dist/blocks/event/event-details.d.ts +0 -5
  277. package/dist/blocks/event/event-details.js +0 -9
  278. package/dist/blocks/event/event-details.schema.d.ts +0 -112
  279. package/dist/blocks/event/event-details.schema.js +0 -685
  280. package/dist/blocks/event/event-listing-2.d.ts +0 -5
  281. package/dist/blocks/event/event-listing-2.js +0 -4
  282. package/dist/blocks/event/event-listing-2.schema.d.ts +0 -84
  283. package/dist/blocks/event/event-listing-2.schema.js +0 -455
  284. package/dist/blocks/event/event-listing-3.d.ts +0 -5
  285. package/dist/blocks/event/event-listing-3.js +0 -10
  286. package/dist/blocks/event/event-listing-3.schema.d.ts +0 -77
  287. package/dist/blocks/event/event-listing-3.schema.js +0 -570
  288. package/dist/blocks/event/event-listing.d.ts +0 -5
  289. package/dist/blocks/event/event-listing.js +0 -10
  290. package/dist/blocks/event/event-listing.schema.d.ts +0 -51
  291. package/dist/blocks/event/event-listing.schema.js +0 -1297
  292. package/dist/blocks/faq/faq-1.d.ts +0 -5
  293. package/dist/blocks/faq/faq-1.js +0 -4
  294. package/dist/blocks/faq/faq-1.schema.d.ts +0 -47
  295. package/dist/blocks/faq/faq-1.schema.js +0 -325
  296. package/dist/blocks/faq/faq-2.d.ts +0 -6
  297. package/dist/blocks/faq/faq-2.js +0 -19
  298. package/dist/blocks/faq/faq-2.schema.d.ts +0 -47
  299. package/dist/blocks/faq/faq-2.schema.js +0 -329
  300. package/dist/blocks/faq/faq-3.d.ts +0 -5
  301. package/dist/blocks/faq/faq-3.js +0 -4
  302. package/dist/blocks/faq/faq-3.schema.d.ts +0 -40
  303. package/dist/blocks/faq/faq-3.schema.js +0 -444
  304. package/dist/blocks/features/features-1/features-1.d.ts +0 -5
  305. package/dist/blocks/features/features-1/features-1.js +0 -4
  306. package/dist/blocks/features/features-1/features-1.schema.d.ts +0 -5
  307. package/dist/blocks/features/features-1/features-1.schema.js +0 -142
  308. package/dist/blocks/features/features-1/variants/default.d.ts +0 -37
  309. package/dist/blocks/features/features-1/variants/default.js +0 -185
  310. package/dist/blocks/features/features-1/variants/index.d.ts +0 -5
  311. package/dist/blocks/features/features-1/variants/stylized-cards-v1.d.ts +0 -3
  312. package/dist/blocks/features/features-1/variants/stylized-cards-v1.js +0 -132
  313. package/dist/blocks/features/features-1/variants/stylized-cards-v2.d.ts +0 -3
  314. package/dist/blocks/features/features-1/variants/stylized-cards-v2.js +0 -484
  315. package/dist/blocks/features/features-2.d.ts +0 -5
  316. package/dist/blocks/features/features-2.js +0 -8
  317. package/dist/blocks/features/features-2.schema.d.ts +0 -41
  318. package/dist/blocks/features/features-2.schema.js +0 -321
  319. package/dist/blocks/features/features-3.d.ts +0 -5
  320. package/dist/blocks/features/features-3.js +0 -4
  321. package/dist/blocks/features/features-3.schema.d.ts +0 -40
  322. package/dist/blocks/features/features-3.schema.js +0 -424
  323. package/dist/blocks/features/features-4.d.ts +0 -5
  324. package/dist/blocks/features/features-4.js +0 -4
  325. package/dist/blocks/features/features-4.schema.d.ts +0 -60
  326. package/dist/blocks/features/features-4.schema.js +0 -594
  327. package/dist/blocks/features/features-5.d.ts +0 -6
  328. package/dist/blocks/features/features-5.js +0 -5
  329. package/dist/blocks/features/features-5.schema.d.ts +0 -28
  330. package/dist/blocks/features/features-5.schema.js +0 -727
  331. package/dist/blocks/features/features-6.d.ts +0 -5
  332. package/dist/blocks/features/features-6.js +0 -31
  333. package/dist/blocks/features/features-6.schema.d.ts +0 -74
  334. package/dist/blocks/features/features-6.schema.js +0 -814
  335. package/dist/blocks/footer/footer-1.d.ts +0 -6
  336. package/dist/blocks/footer/footer-1.js +0 -5
  337. package/dist/blocks/footer/footer-1.schema.d.ts +0 -62
  338. package/dist/blocks/footer/footer-1.schema.js +0 -565
  339. package/dist/blocks/footer/footer-2.d.ts +0 -5
  340. package/dist/blocks/footer/footer-2.js +0 -4
  341. package/dist/blocks/footer/footer-2.schema.d.ts +0 -76
  342. package/dist/blocks/footer/footer-2.schema.js +0 -876
  343. package/dist/blocks/footer/footer-3.d.ts +0 -6
  344. package/dist/blocks/footer/footer-3.js +0 -15
  345. package/dist/blocks/footer/footer-3.schema.d.ts +0 -48
  346. package/dist/blocks/footer/footer-3.schema.js +0 -475
  347. package/dist/blocks/footer/footer-4.d.ts +0 -6
  348. package/dist/blocks/footer/footer-4.js +0 -5
  349. package/dist/blocks/footer/footer-4.schema.d.ts +0 -71
  350. package/dist/blocks/footer/footer-4.schema.js +0 -620
  351. package/dist/blocks/footer/footer-5.d.ts +0 -6
  352. package/dist/blocks/footer/footer-5.js +0 -5
  353. package/dist/blocks/footer/footer-5.schema.d.ts +0 -52
  354. package/dist/blocks/footer/footer-5.schema.js +0 -400
  355. package/dist/blocks/hero/hero-1.d.ts +0 -5
  356. package/dist/blocks/hero/hero-1.js +0 -4
  357. package/dist/blocks/hero/hero-1.schema.d.ts +0 -35
  358. package/dist/blocks/hero/hero-1.schema.js +0 -742
  359. package/dist/blocks/hero/hero-2.d.ts +0 -5
  360. package/dist/blocks/hero/hero-2.js +0 -4
  361. package/dist/blocks/hero/hero-2.schema.d.ts +0 -46
  362. package/dist/blocks/hero/hero-2.schema.js +0 -282
  363. package/dist/blocks/hero/hero-3.d.ts +0 -5
  364. package/dist/blocks/hero/hero-3.js +0 -4
  365. package/dist/blocks/hero/hero-3.schema.d.ts +0 -54
  366. package/dist/blocks/hero/hero-3.schema.js +0 -378
  367. package/dist/blocks/hero/hero-4.d.ts +0 -5
  368. package/dist/blocks/hero/hero-4.js +0 -30
  369. package/dist/blocks/hero/hero-4.schema.d.ts +0 -33
  370. package/dist/blocks/hero/hero-4.schema.js +0 -316
  371. package/dist/blocks/hero/hero-5.d.ts +0 -5
  372. package/dist/blocks/hero/hero-5.js +0 -30
  373. package/dist/blocks/hero/hero-5.schema.d.ts +0 -32
  374. package/dist/blocks/hero/hero-5.schema.js +0 -183
  375. package/dist/blocks/hero/hero-6.d.ts +0 -5
  376. package/dist/blocks/hero/hero-6.js +0 -8
  377. package/dist/blocks/hero/hero-6.schema.d.ts +0 -36
  378. package/dist/blocks/hero/hero-6.schema.js +0 -617
  379. package/dist/blocks/hero/hero-7.d.ts +0 -5
  380. package/dist/blocks/hero/hero-7.js +0 -40
  381. package/dist/blocks/hero/hero-7.schema.d.ts +0 -12
  382. package/dist/blocks/hero/hero-7.schema.js +0 -471
  383. package/dist/blocks/hero/hero-8.d.ts +0 -5
  384. package/dist/blocks/hero/hero-8.js +0 -39
  385. package/dist/blocks/hero/hero-8.schema.d.ts +0 -17
  386. package/dist/blocks/hero/hero-8.schema.js +0 -343
  387. package/dist/blocks/hero/hero-9.d.ts +0 -6
  388. package/dist/blocks/hero/hero-9.js +0 -4
  389. package/dist/blocks/hero/hero-9.schema.d.ts +0 -39
  390. package/dist/blocks/hero/hero-9.schema.js +0 -355
  391. package/dist/blocks/index.d.ts +0 -3
  392. package/dist/blocks/index.js +0 -74
  393. package/dist/blocks/logos/logos-1.d.ts +0 -5
  394. package/dist/blocks/logos/logos-1.js +0 -10
  395. package/dist/blocks/logos/logos-1.schema.d.ts +0 -34
  396. package/dist/blocks/logos/logos-1.schema.js +0 -239
  397. package/dist/blocks/navbar/navbar-1.d.ts +0 -6
  398. package/dist/blocks/navbar/navbar-1.js +0 -100
  399. package/dist/blocks/navbar/navbar-1.schema.d.ts +0 -117
  400. package/dist/blocks/navbar/navbar-1.schema.js +0 -938
  401. package/dist/blocks/navbar/navbar-2.d.ts +0 -6
  402. package/dist/blocks/navbar/navbar-2.js +0 -99
  403. package/dist/blocks/navbar/navbar-2.schema.d.ts +0 -134
  404. package/dist/blocks/navbar/navbar-2.schema.js +0 -1200
  405. package/dist/blocks/pricing/pricing-1.d.ts +0 -5
  406. package/dist/blocks/pricing/pricing-1.js +0 -4
  407. package/dist/blocks/pricing/pricing-1.schema.d.ts +0 -87
  408. package/dist/blocks/pricing/pricing-1.schema.js +0 -976
  409. package/dist/blocks/products/products-listing-1.d.ts +0 -5
  410. package/dist/blocks/products/products-listing-1.js +0 -4
  411. package/dist/blocks/products/products-listing-1.schema.d.ts +0 -36
  412. package/dist/blocks/products/products-listing-1.schema.js +0 -264
  413. package/dist/blocks/stats/stats-1.d.ts +0 -6
  414. package/dist/blocks/stats/stats-1.js +0 -6
  415. package/dist/blocks/stats/stats-1.schema.d.ts +0 -25
  416. package/dist/blocks/stats/stats-1.schema.js +0 -213
  417. package/dist/blocks/stats/stats-2.d.ts +0 -6
  418. package/dist/blocks/stats/stats-2.js +0 -6
  419. package/dist/blocks/stats/stats-2.schema.d.ts +0 -5
  420. package/dist/blocks/stats/stats-2.schema.js +0 -104
  421. package/dist/blocks/stats/variants/default.d.ts +0 -22
  422. package/dist/blocks/stats/variants/default.js +0 -185
  423. package/dist/blocks/stats/variants/hero.d.ts +0 -3
  424. package/dist/blocks/stats/variants/hero.js +0 -151
  425. package/dist/blocks/stats/variants/index.d.ts +0 -4
  426. package/dist/blocks/team/team-1.d.ts +0 -6
  427. package/dist/blocks/team/team-1.js +0 -6
  428. package/dist/blocks/team/team-1.schema.d.ts +0 -65
  429. package/dist/blocks/team/team-1.schema.js +0 -476
  430. package/dist/blocks/team/team-2.d.ts +0 -6
  431. package/dist/blocks/team/team-2.js +0 -6
  432. package/dist/blocks/team/team-2.schema.d.ts +0 -52
  433. package/dist/blocks/team/team-2.schema.js +0 -2732
  434. package/dist/blocks/team/team-3.d.ts +0 -5
  435. package/dist/blocks/team/team-3.js +0 -30
  436. package/dist/blocks/team/team-3.schema.d.ts +0 -32
  437. package/dist/blocks/team/team-3.schema.js +0 -679
  438. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.d.ts +0 -6
  439. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.js +0 -4
  440. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.schema.d.ts +0 -14
  441. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.schema.js +0 -154
  442. package/dist/blocks/testimonial/testimonial-1.d.ts +0 -5
  443. package/dist/blocks/testimonial/testimonial-1.js +0 -10
  444. package/dist/blocks/testimonial/testimonial-1.schema.d.ts +0 -16
  445. package/dist/blocks/testimonial/testimonial-1.schema.js +0 -314
  446. package/dist/blocks/testimonial/testimonial-2.d.ts +0 -5
  447. package/dist/blocks/testimonial/testimonial-2.js +0 -42
  448. package/dist/blocks/testimonial/testimonial-2.schema.d.ts +0 -54
  449. package/dist/blocks/testimonial/testimonial-2.schema.js +0 -771
  450. package/dist/blocks/testimonial/testimonial-3.d.ts +0 -5
  451. package/dist/blocks/testimonial/testimonial-3.js +0 -38
  452. package/dist/blocks/testimonial/testimonial-3.schema.d.ts +0 -56
  453. package/dist/blocks/testimonial/testimonial-3.schema.js +0 -260
  454. package/dist/blocks/testimonial/testimonial-4.d.ts +0 -5
  455. package/dist/blocks/testimonial/testimonial-4.js +0 -51
  456. package/dist/blocks/testimonial/testimonial-4.schema.d.ts +0 -145
  457. package/dist/blocks/testimonial/testimonial-4.schema.js +0 -3214
  458. package/dist/blocks/testimonial/testimonial-5.d.ts +0 -5
  459. package/dist/blocks/testimonial/testimonial-5.js +0 -31
  460. package/dist/blocks/testimonial/testimonial-5.schema.d.ts +0 -33
  461. package/dist/blocks/testimonial/testimonial-5.schema.js +0 -401
  462. package/dist/blocks/testimonial/testimonial-6.d.ts +0 -5
  463. package/dist/blocks/testimonial/testimonial-6.js +0 -39
  464. package/dist/blocks/testimonial/testimonial-6.schema.d.ts +0 -60
  465. package/dist/blocks/testimonial/testimonial-6.schema.js +0 -695
  466. package/dist/index.d.ts +0 -6
  467. package/dist/schemas/blocks.d.ts +0 -3
  468. package/dist/schemas/categories.d.ts +0 -3
  469. package/dist/schemas/categories.js +0 -129
  470. package/dist/schemas/index.d.ts +0 -3
  471. /package/{dist/schemas/index.js → src/schemas/index.ts} +0 -0
@@ -0,0 +1,1358 @@
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
+ "font-size": "5xl",
470
+ "font-weight": 600,
471
+ },
472
+ container: {
473
+ display: "flex",
474
+ "flex-direction": "column",
475
+ "align-items": "center",
476
+ "row-gap": "2xl",
477
+ },
478
+ events_levoGroup: {
479
+ display: "grid",
480
+ width: "100%",
481
+ "grid-template-columns": "repeat(3, 1fr)",
482
+ "row-gap": "5xl",
483
+ "column-gap": "5xl",
484
+ tablet: {
485
+ "grid-template-columns": "repeat(2, 1fr)",
486
+ },
487
+ mobile: {
488
+ "grid-template-columns": "repeat(1, 1fr)",
489
+ "row-gap": "lg",
490
+ },
491
+ },
492
+ events: [
493
+ {
494
+ eventWrapper: {
495
+ "border-radius": "xl",
496
+ overflow: "hidden",
497
+ "box-shadow":
498
+ "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
499
+ },
500
+ image: {
501
+ width: "100%",
502
+ },
503
+ textWrapper: {
504
+ "padding-left": "xl",
505
+ "padding-top": "2xl",
506
+ "padding-right": "xl",
507
+ "padding-bottom": "2xl",
508
+ display: "flex",
509
+ "flex-direction": "column",
510
+ "row-gap": "sm",
511
+ },
512
+ title: {
513
+ "font-weight": 400,
514
+ "font-size": "xl",
515
+ filter: "none",
516
+ },
517
+ description: {
518
+ overflow: "hidden",
519
+ display: "-webkit-box",
520
+ "-webkit-box-orient": "vertical",
521
+ "-webkit-line-clamp": 3,
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
+ },
566
+ description: {
567
+ overflow: "hidden",
568
+ display: "-webkit-box",
569
+ "-webkit-box-orient": "vertical",
570
+ "-webkit-line-clamp": 3,
571
+ },
572
+ publishedAt: {
573
+ "font-size": "sm",
574
+ },
575
+ "text-container": {
576
+ filter: "none",
577
+ display: "none",
578
+ },
579
+ "text-wrapper": {
580
+ "padding-left": "xl",
581
+ "padding-top": "2xl",
582
+ "padding-right": "xl",
583
+ "padding-bottom": "2xl",
584
+ display: "flex",
585
+ "flex-direction": "column",
586
+ "row-gap": "sm",
587
+ filter: "none",
588
+ },
589
+ },
590
+ {
591
+ eventWrapper: {
592
+ "border-radius": "xl",
593
+ overflow: "hidden",
594
+ "box-shadow":
595
+ "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
596
+ filter: "none",
597
+ },
598
+ image: {
599
+ width: "100%",
600
+ },
601
+ textWrapper: {
602
+ "padding-left": "xl",
603
+ "padding-top": "2xl",
604
+ "padding-right": "xl",
605
+ "padding-bottom": "2xl",
606
+ display: "flex",
607
+ "flex-direction": "column",
608
+ "row-gap": "sm",
609
+ },
610
+ title: {
611
+ "font-weight": 400,
612
+ "font-size": "xl",
613
+ },
614
+ description: {
615
+ overflow: "hidden",
616
+ display: "-webkit-box",
617
+ "-webkit-box-orient": "vertical",
618
+ "-webkit-line-clamp": 3,
619
+ },
620
+ publishedAt: {
621
+ "font-size": "sm",
622
+ },
623
+ "text-container": {
624
+ filter: "none",
625
+ display: "none",
626
+ },
627
+ "text-wrapper": {
628
+ "padding-left": "xl",
629
+ "padding-top": "2xl",
630
+ "padding-right": "xl",
631
+ "padding-bottom": "2xl",
632
+ display: "flex",
633
+ "flex-direction": "column",
634
+ "row-gap": "sm",
635
+ filter: "none",
636
+ },
637
+ },
638
+ {
639
+ eventWrapper: {
640
+ "border-radius": "xl",
641
+ overflow: "hidden",
642
+ "box-shadow":
643
+ "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
644
+ },
645
+ image: {
646
+ width: "100%",
647
+ },
648
+ textWrapper: {
649
+ "padding-left": "xl",
650
+ "padding-top": "2xl",
651
+ "padding-right": "xl",
652
+ "padding-bottom": "2xl",
653
+ display: "flex",
654
+ "flex-direction": "column",
655
+ "row-gap": "sm",
656
+ },
657
+ title: {
658
+ "font-weight": 400,
659
+ "font-size": "xl",
660
+ },
661
+ description: {
662
+ overflow: "hidden",
663
+ display: "-webkit-box",
664
+ "-webkit-box-orient": "vertical",
665
+ "-webkit-line-clamp": 3,
666
+ },
667
+ publishedAt: {
668
+ "font-size": "sm",
669
+ },
670
+ "text-container": {
671
+ filter: "none",
672
+ display: "none",
673
+ },
674
+ "text-wrapper": {
675
+ "padding-left": "xl",
676
+ "padding-top": "2xl",
677
+ "padding-right": "xl",
678
+ "padding-bottom": "2xl",
679
+ display: "flex",
680
+ "flex-direction": "column",
681
+ "row-gap": "sm",
682
+ filter: "none",
683
+ },
684
+ },
685
+ {
686
+ eventWrapper: {
687
+ "border-radius": "xl",
688
+ overflow: "hidden",
689
+ "box-shadow":
690
+ "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
691
+ },
692
+ image: {
693
+ width: "100%",
694
+ },
695
+ textWrapper: {
696
+ "padding-left": "xl",
697
+ "padding-top": "2xl",
698
+ "padding-right": "xl",
699
+ "padding-bottom": "2xl",
700
+ display: "flex",
701
+ "flex-direction": "column",
702
+ "row-gap": "sm",
703
+ },
704
+ title: {
705
+ "font-weight": 400,
706
+ "font-size": "xl",
707
+ },
708
+ description: {
709
+ overflow: "hidden",
710
+ display: "-webkit-box",
711
+ "-webkit-box-orient": "vertical",
712
+ "-webkit-line-clamp": 3,
713
+ },
714
+ publishedAt: {
715
+ "font-size": "sm",
716
+ },
717
+ "text-container": {
718
+ filter: "none",
719
+ display: "none",
720
+ },
721
+ "text-wrapper": {
722
+ "padding-left": "xl",
723
+ "padding-top": "2xl",
724
+ "padding-right": "xl",
725
+ "padding-bottom": "2xl",
726
+ display: "flex",
727
+ "flex-direction": "column",
728
+ "row-gap": "sm",
729
+ filter: "none",
730
+ },
731
+ },
732
+ {
733
+ eventWrapper: {
734
+ "border-radius": "xl",
735
+ overflow: "hidden",
736
+ "box-shadow":
737
+ "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
738
+ },
739
+ image: {
740
+ width: "100%",
741
+ },
742
+ textWrapper: {
743
+ "padding-left": "xl",
744
+ "padding-top": "2xl",
745
+ "padding-right": "xl",
746
+ "padding-bottom": "2xl",
747
+ display: "flex",
748
+ "flex-direction": "column",
749
+ "row-gap": "sm",
750
+ },
751
+ title: {
752
+ "font-weight": 400,
753
+ "font-size": "xl",
754
+ },
755
+ description: {
756
+ overflow: "hidden",
757
+ display: "-webkit-box",
758
+ "-webkit-box-orient": "vertical",
759
+ "-webkit-line-clamp": 3,
760
+ },
761
+ publishedAt: {
762
+ "font-size": "sm",
763
+ },
764
+ "text-container": {
765
+ filter: "none",
766
+ display: "none",
767
+ },
768
+ "text-wrapper": {
769
+ "padding-left": "xl",
770
+ "padding-top": "2xl",
771
+ "padding-right": "xl",
772
+ "padding-bottom": "2xl",
773
+ display: "flex",
774
+ "flex-direction": "column",
775
+ "row-gap": "sm",
776
+ filter: "none",
777
+ },
778
+ },
779
+ ],
780
+ paginationWrapper: {
781
+ width: "100%",
782
+ display: "flex",
783
+ "justify-content": "center",
784
+ "column-gap": "lg",
785
+ "align-items": "center",
786
+ },
787
+ "cta-button": {
788
+ filter: "none",
789
+ },
790
+ },
791
+ content: DEFAULT_CONTENT,
792
+ config: {},
793
+ },
794
+ {
795
+ key: "cta-variant",
796
+ title: "CTA Variant",
797
+ styles: {
798
+ layout: {
799
+ "padding-left": "10xl",
800
+ "padding-right": "10xl",
801
+ "padding-top": "5xl",
802
+ "padding-bottom": "5xl",
803
+ tablet: {
804
+ "padding-left": "8xl",
805
+ "padding-right": "8xl",
806
+ "padding-top": "4xl",
807
+ "padding-bottom": "4xl",
808
+ },
809
+ mobile: {
810
+ "padding-left": "6xl",
811
+ "padding-right": "6xl",
812
+ "padding-top": "3xl",
813
+ "padding-bottom": "3xl",
814
+ },
815
+ filter: "none",
816
+ },
817
+ "header-container": {
818
+ display: "flex",
819
+ width: "100%",
820
+ "justify-content": "space-between",
821
+ "align-items": "center",
822
+ "margin-bottom": "3xl",
823
+ mobile: {
824
+ "flex-direction": "column",
825
+ "align-items": "flex-start",
826
+ "row-gap": "lg",
827
+ },
828
+ },
829
+ title: {
830
+ "font-size": "5xl",
831
+ "font-weight": 700,
832
+ color: "var(--color-text-1)",
833
+ margin: "0",
834
+ mobile: {
835
+ "font-size": "3xl",
836
+ },
837
+ },
838
+ "cta-button": {
839
+ "background-color": "transparent",
840
+ color: "var(--color-brand)",
841
+ "font-size": "lg",
842
+ "font-weight": 500,
843
+ "text-decoration": "none",
844
+ border: "none",
845
+ cursor: "pointer",
846
+ display: "flex",
847
+ "align-items": "center",
848
+ "column-gap": "xs",
849
+ "&:hover": {
850
+ "text-decoration": "underline",
851
+ },
852
+ filter: "none",
853
+ },
854
+ container: {
855
+ display: "flex",
856
+ "flex-direction": "column",
857
+ "align-items": "center",
858
+ "row-gap": "2xl",
859
+ filter: "none",
860
+ },
861
+ events_levoGroup: {
862
+ display: "grid",
863
+ width: "100%",
864
+ "grid-template-columns": "repeat(3, 1fr)",
865
+ "row-gap": "5xl",
866
+ "column-gap": "5xl",
867
+ tablet: {
868
+ "grid-template-columns": "repeat(2, 1fr)",
869
+ },
870
+ mobile: {
871
+ "grid-template-columns": "repeat(1, 1fr)",
872
+ "row-gap": "lg",
873
+ },
874
+ },
875
+ events: [
876
+ {
877
+ eventWrapper: {
878
+ "border-radius": "xl",
879
+ overflow: "hidden",
880
+ "box-shadow":
881
+ "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
882
+ position: "relative",
883
+ filter: "none",
884
+ "padding-bottom": "base",
885
+ },
886
+ image: {
887
+ width: "100%",
888
+ height: "200px",
889
+ "object-fit": "cover",
890
+ filter: "none",
891
+ },
892
+ "text-wrapper": {
893
+ "padding-left": "xl",
894
+ "padding-top": "2xl",
895
+ "padding-right": "xl",
896
+ "padding-bottom": "base",
897
+ display: "flex",
898
+ "flex-direction": "column",
899
+ "row-gap": "lg",
900
+ filter: "none",
901
+ },
902
+ "text-container": {
903
+ display: "flex",
904
+ "justify-content": "start",
905
+ "align-items": "center",
906
+ filter: "none",
907
+ "column-gap": "xs",
908
+ },
909
+ "caption-text": {
910
+ "font-family": "var(--font-body)",
911
+ color: "white",
912
+ "font-size": "xs",
913
+ "line-height": "normal",
914
+ "background-color": "var(--color-brand)",
915
+ "font-weight": 500,
916
+ "padding-left": "sm",
917
+ "padding-right": "sm",
918
+ "padding-top": "2xs",
919
+ "padding-bottom": "2xs",
920
+ "border-radius": "3xl",
921
+ filter: "none",
922
+ },
923
+ "date-wrapper": {
924
+ display: "flex",
925
+ "align-items": "center",
926
+ "column-gap": "2xs",
927
+ filter: "none",
928
+ " border-left": "1px solid #000",
929
+ "padding-left": "2xs",
930
+ },
931
+ "date-icon": {
932
+ width: "16px",
933
+ height: "16px",
934
+ filter: "none",
935
+ },
936
+ "publishedAt-header": {
937
+ "font-size": "sm",
938
+ color: "var(--color-text-2)",
939
+ "font-weight": 500,
940
+ filter: "none",
941
+ },
942
+ title: {
943
+ "font-weight": 600,
944
+ "font-size": "xl",
945
+ "margin-bottom": "xs",
946
+ color: "var(--color-text-1)",
947
+ filter: "none",
948
+ },
949
+ description: {
950
+ overflow: "hidden",
951
+ display: "-webkit-box",
952
+ "-webkit-box-orient": "vertical",
953
+ "-webkit-line-clamp": 3,
954
+ color: "var(--color-text-2)",
955
+ "line-height": 1.5,
956
+ },
957
+ publishedAt: {
958
+ display: "none",
959
+ filter: "none",
960
+ },
961
+ },
962
+ {
963
+ eventWrapper: {
964
+ "border-radius": "xl",
965
+ overflow: "hidden",
966
+ "box-shadow":
967
+ "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
968
+ position: "relative",
969
+ filter: "none",
970
+ },
971
+ image: {
972
+ width: "100%",
973
+ height: "200px",
974
+ "object-fit": "cover",
975
+ filter: "none",
976
+ },
977
+ "text-wrapper": {
978
+ "padding-left": "xl",
979
+ "padding-top": "2xl",
980
+ "padding-right": "xl",
981
+ "padding-bottom": "base",
982
+ display: "flex",
983
+ "flex-direction": "column",
984
+ "row-gap": "lg",
985
+ filter: "none",
986
+ },
987
+ "text-container": {
988
+ display: "flex",
989
+ "justify-content": "start",
990
+ "align-items": "center",
991
+ filter: "none",
992
+ "column-gap": "lg",
993
+ },
994
+ "caption-text": {
995
+ "font-family": "var(--font-body)",
996
+ color: "white",
997
+ "font-size": "xs",
998
+ "line-height": "normal",
999
+ "background-color": "var(--color-brand)",
1000
+ "font-weight": 500,
1001
+ "padding-left": "sm",
1002
+ "padding-right": "sm",
1003
+ "padding-top": "2xs",
1004
+ "padding-bottom": "2xs",
1005
+ "border-radius": "3xl",
1006
+ filter: "none",
1007
+ },
1008
+ "date-wrapper": {
1009
+ display: "flex",
1010
+ "align-items": "center",
1011
+ "column-gap": "xs",
1012
+ },
1013
+ "date-icon": {
1014
+ width: "16px",
1015
+ height: "16px",
1016
+ },
1017
+ "publishedAt-header": {
1018
+ "font-size": "sm",
1019
+ color: "var(--color-text-2)",
1020
+ "font-weight": 500,
1021
+ },
1022
+ title: {
1023
+ "font-weight": 600,
1024
+ "font-size": "xl",
1025
+ "margin-bottom": "xs",
1026
+ color: "var(--color-text-1)",
1027
+ },
1028
+ description: {
1029
+ overflow: "hidden",
1030
+ display: "-webkit-box",
1031
+ "-webkit-box-orient": "vertical",
1032
+ "-webkit-line-clamp": 3,
1033
+ color: "var(--color-text-2)",
1034
+ "line-height": 1.5,
1035
+ },
1036
+ publishedAt: {
1037
+ display: "none",
1038
+ },
1039
+ },
1040
+ {
1041
+ eventWrapper: {
1042
+ "border-radius": "xl",
1043
+ overflow: "hidden",
1044
+ "box-shadow":
1045
+ "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
1046
+ position: "relative",
1047
+ filter: "none",
1048
+ },
1049
+ image: {
1050
+ width: "100%",
1051
+ height: "200px",
1052
+ "object-fit": "cover",
1053
+ },
1054
+ "text-wrapper": {
1055
+ "padding-left": "xl",
1056
+ "padding-top": "2xl",
1057
+ "padding-right": "xl",
1058
+ "padding-bottom": "base",
1059
+ display: "flex",
1060
+ "flex-direction": "column",
1061
+ "row-gap": "lg",
1062
+ filter: "none",
1063
+ },
1064
+ "text-container": {
1065
+ display: "flex",
1066
+ "justify-content": "start",
1067
+ "align-items": "center",
1068
+ filter: "none",
1069
+ "column-gap": "lg",
1070
+ },
1071
+ "caption-text": {
1072
+ "font-family": "var(--font-body)",
1073
+ color: "white",
1074
+ "font-size": "xs",
1075
+ "line-height": "normal",
1076
+ "background-color": "var(--color-brand)",
1077
+ "font-weight": 500,
1078
+ "padding-left": "sm",
1079
+ "padding-right": "sm",
1080
+ "padding-top": "2xs",
1081
+ "padding-bottom": "2xs",
1082
+ "border-radius": "3xl",
1083
+ filter: "none",
1084
+ },
1085
+ "date-wrapper": {
1086
+ display: "flex",
1087
+ "align-items": "center",
1088
+ "column-gap": "xs",
1089
+ },
1090
+ "date-icon": {
1091
+ width: "16px",
1092
+ height: "16px",
1093
+ },
1094
+ "publishedAt-header": {
1095
+ "font-size": "sm",
1096
+ color: "var(--color-text-2)",
1097
+ "font-weight": 500,
1098
+ },
1099
+ title: {
1100
+ "font-weight": 600,
1101
+ "font-size": "xl",
1102
+ "margin-bottom": "xs",
1103
+ color: "var(--color-text-1)",
1104
+ },
1105
+ description: {
1106
+ overflow: "hidden",
1107
+ display: "-webkit-box",
1108
+ "-webkit-box-orient": "vertical",
1109
+ "-webkit-line-clamp": 3,
1110
+ color: "var(--color-text-2)",
1111
+ "line-height": 1.5,
1112
+ },
1113
+ publishedAt: {
1114
+ display: "none",
1115
+ },
1116
+ },
1117
+ {
1118
+ eventWrapper: {
1119
+ "border-radius": "xl",
1120
+ overflow: "hidden",
1121
+ "box-shadow":
1122
+ "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
1123
+ position: "relative",
1124
+ },
1125
+ image: {
1126
+ width: "100%",
1127
+ height: "200px",
1128
+ "object-fit": "cover",
1129
+ },
1130
+ "text-wrapper": {
1131
+ "padding-left": "xl",
1132
+ "padding-top": "2xl",
1133
+ "padding-right": "xl",
1134
+ "padding-bottom": "base",
1135
+ display: "flex",
1136
+ "flex-direction": "column",
1137
+ "row-gap": "lg",
1138
+ filter: "none",
1139
+ },
1140
+ "text-container": {
1141
+ display: "flex",
1142
+ "justify-content": "start",
1143
+ "align-items": "center",
1144
+ filter: "none",
1145
+ "column-gap": "lg",
1146
+ },
1147
+ "caption-text": {
1148
+ "font-family": "var(--font-body)",
1149
+ color: "white",
1150
+ "font-size": "xs",
1151
+ "line-height": "normal",
1152
+ "background-color": "var(--color-brand)",
1153
+ "font-weight": 500,
1154
+ "padding-left": "sm",
1155
+ "padding-right": "sm",
1156
+ "padding-top": "2xs",
1157
+ "padding-bottom": "2xs",
1158
+ "border-radius": "3xl",
1159
+ filter: "none",
1160
+ },
1161
+ "date-wrapper": {
1162
+ display: "flex",
1163
+ "align-items": "center",
1164
+ "column-gap": "xs",
1165
+ },
1166
+ "date-icon": {
1167
+ width: "16px",
1168
+ height: "16px",
1169
+ },
1170
+ "publishedAt-header": {
1171
+ "font-size": "sm",
1172
+ color: "var(--color-text-2)",
1173
+ "font-weight": 500,
1174
+ },
1175
+ title: {
1176
+ "font-weight": 600,
1177
+ "font-size": "xl",
1178
+ "margin-bottom": "xs",
1179
+ color: "var(--color-text-1)",
1180
+ },
1181
+ description: {
1182
+ overflow: "hidden",
1183
+ display: "-webkit-box",
1184
+ "-webkit-box-orient": "vertical",
1185
+ "-webkit-line-clamp": 3,
1186
+ color: "var(--color-text-2)",
1187
+ "line-height": 1.5,
1188
+ },
1189
+ publishedAt: {
1190
+ display: "none",
1191
+ },
1192
+ },
1193
+ {
1194
+ eventWrapper: {
1195
+ "border-radius": "xl",
1196
+ overflow: "hidden",
1197
+ "box-shadow":
1198
+ "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
1199
+ position: "relative",
1200
+ },
1201
+ image: {
1202
+ width: "100%",
1203
+ height: "200px",
1204
+ "object-fit": "cover",
1205
+ },
1206
+ "text-wrapper": {
1207
+ "padding-left": "xl",
1208
+ "padding-top": "2xl",
1209
+ "padding-right": "xl",
1210
+ "padding-bottom": "base",
1211
+ display: "flex",
1212
+ "flex-direction": "column",
1213
+ "row-gap": "lg",
1214
+ filter: "none",
1215
+ },
1216
+ "text-container": {
1217
+ display: "flex",
1218
+ "justify-content": "start",
1219
+ "align-items": "center",
1220
+ filter: "none",
1221
+ "column-gap": "lg",
1222
+ },
1223
+ "caption-text": {
1224
+ "font-family": "var(--font-body)",
1225
+ color: "white",
1226
+ "font-size": "xs",
1227
+ "line-height": "normal",
1228
+ "background-color": "var(--color-brand)",
1229
+ "font-weight": 500,
1230
+ "padding-left": "sm",
1231
+ "padding-right": "sm",
1232
+ "padding-top": "2xs",
1233
+ "padding-bottom": "2xs",
1234
+ "border-radius": "3xl",
1235
+ filter: "none",
1236
+ },
1237
+ "date-wrapper": {
1238
+ display: "flex",
1239
+ "align-items": "center",
1240
+ "column-gap": "xs",
1241
+ },
1242
+ "date-icon": {
1243
+ width: "16px",
1244
+ height: "16px",
1245
+ },
1246
+ "publishedAt-header": {
1247
+ "font-size": "sm",
1248
+ color: "var(--color-text-2)",
1249
+ "font-weight": 500,
1250
+ },
1251
+ title: {
1252
+ "font-weight": 600,
1253
+ "font-size": "xl",
1254
+ "margin-bottom": "xs",
1255
+ color: "var(--color-text-1)",
1256
+ },
1257
+ description: {
1258
+ overflow: "hidden",
1259
+ display: "-webkit-box",
1260
+ "-webkit-box-orient": "vertical",
1261
+ "-webkit-line-clamp": 3,
1262
+ color: "var(--color-text-2)",
1263
+ "line-height": 1.5,
1264
+ },
1265
+ publishedAt: {
1266
+ display: "none",
1267
+ },
1268
+ },
1269
+ {
1270
+ eventWrapper: {
1271
+ "border-radius": "xl",
1272
+ overflow: "hidden",
1273
+ "box-shadow":
1274
+ "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
1275
+ position: "relative",
1276
+ },
1277
+ image: {
1278
+ width: "100%",
1279
+ height: "200px",
1280
+ "object-fit": "cover",
1281
+ },
1282
+ "text-wrapper": {
1283
+ "padding-left": "xl",
1284
+ "padding-top": "2xl",
1285
+ "padding-right": "xl",
1286
+ "padding-bottom": "base",
1287
+ display: "flex",
1288
+ "flex-direction": "column",
1289
+ "row-gap": "lg",
1290
+ filter: "none",
1291
+ },
1292
+ "text-container": {
1293
+ display: "flex",
1294
+ "justify-content": "start",
1295
+ "align-items": "center",
1296
+ filter: "none",
1297
+ "column-gap": "lg",
1298
+ },
1299
+ "caption-text": {
1300
+ "font-family": "var(--font-body)",
1301
+ color: "white",
1302
+ "font-size": "xs",
1303
+ "line-height": "normal",
1304
+ "background-color": "var(--color-brand)",
1305
+ "font-weight": 500,
1306
+ "padding-left": "sm",
1307
+ "padding-right": "sm",
1308
+ "padding-top": "2xs",
1309
+ "padding-bottom": "2xs",
1310
+ "border-radius": "3xl",
1311
+ filter: "none",
1312
+ },
1313
+ "date-wrapper": {
1314
+ display: "flex",
1315
+ "align-items": "center",
1316
+ "column-gap": "xs",
1317
+ },
1318
+ "date-icon": {
1319
+ width: "16px",
1320
+ height: "16px",
1321
+ },
1322
+ "publishedAt-header": {
1323
+ "font-size": "sm",
1324
+ color: "var(--color-text-2)",
1325
+ "font-weight": 500,
1326
+ },
1327
+ title: {
1328
+ "font-weight": 600,
1329
+ "font-size": "xl",
1330
+ "margin-bottom": "xs",
1331
+ color: "var(--color-text-1)",
1332
+ },
1333
+ description: {
1334
+ overflow: "hidden",
1335
+ display: "-webkit-box",
1336
+ "-webkit-box-orient": "vertical",
1337
+ "-webkit-line-clamp": 3,
1338
+ color: "var(--color-text-2)",
1339
+ "line-height": 1.5,
1340
+ },
1341
+ publishedAt: {
1342
+ display: "none",
1343
+ },
1344
+ },
1345
+ ],
1346
+ paginationWrapper: {
1347
+ width: "100%",
1348
+ display: "flex",
1349
+ "justify-content": "center",
1350
+ "column-gap": "lg",
1351
+ "align-items": "center",
1352
+ },
1353
+ },
1354
+ content: DEFAULT_CONTENT_CTA,
1355
+ config: {},
1356
+ },
1357
+ ],
1358
+ };