@levo-so/blocks 0.1.0 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (471) hide show
  1. package/package.json +5 -9
  2. package/src/blocks/about-us/about-us-1.schema.ts +563 -0
  3. package/src/blocks/about-us/about-us-1.tsx +53 -0
  4. package/src/blocks/blogs/blog-listing-1.schema.ts +419 -0
  5. package/src/blocks/blogs/blog-listing-1.tsx +79 -0
  6. package/src/blocks/blogs/blog-listing-2.schema.ts +608 -0
  7. package/src/blocks/blogs/blog-listing-2.tsx +83 -0
  8. package/src/blocks/blogs/blog-post-1.schema.ts +392 -0
  9. package/src/blocks/blogs/blog-post-1.tsx +52 -0
  10. package/src/blocks/blogs/blog-post-2.schema.ts +834 -0
  11. package/src/blocks/blogs/blog-post-2.tsx +131 -0
  12. package/src/blocks/cards/cards-10.schema.ts +433 -0
  13. package/src/blocks/cards/cards-10.tsx +46 -0
  14. package/src/blocks/cards/cards-11.schema.ts +440 -0
  15. package/src/blocks/cards/cards-11.tsx +50 -0
  16. package/src/blocks/cards/cards-12.schema.ts +578 -0
  17. package/src/blocks/cards/cards-12.tsx +54 -0
  18. package/src/blocks/cards/cards-2.schema.ts +293 -0
  19. package/src/blocks/cards/cards-2.tsx +42 -0
  20. package/src/blocks/cards/cards-3.schema.ts +365 -0
  21. package/src/blocks/cards/cards-3.tsx +49 -0
  22. package/src/blocks/cards/cards-4.schema.ts +677 -0
  23. package/src/blocks/cards/cards-4.tsx +50 -0
  24. package/src/blocks/cards/cards-5.schema.ts +264 -0
  25. package/src/blocks/cards/cards-5.tsx +34 -0
  26. package/src/blocks/cards/cards-6.schema.ts +639 -0
  27. package/src/blocks/cards/cards-6.tsx +136 -0
  28. package/src/blocks/cards/cards-7.schema.ts +1793 -0
  29. package/src/blocks/cards/cards-7.tsx +165 -0
  30. package/src/blocks/cards/cards-8.schema.ts +691 -0
  31. package/src/blocks/cards/cards-8.tsx +43 -0
  32. package/src/blocks/cards/cards-9.schema.ts +827 -0
  33. package/src/blocks/cards/cards-9.tsx +54 -0
  34. package/src/blocks/carousel/carousel-1.schema.ts +250 -0
  35. package/src/blocks/carousel/carousel-1.tsx +79 -0
  36. package/src/blocks/contact-us/contact-us-1.schema.ts +226 -0
  37. package/src/blocks/contact-us/contact-us-1.tsx +39 -0
  38. package/src/blocks/contact-us/contact-us-2.schema.ts +524 -0
  39. package/src/blocks/contact-us/contact-us-2.tsx +71 -0
  40. package/src/blocks/content/content-1.schema.ts +884 -0
  41. package/src/blocks/content/content-1.tsx +69 -0
  42. package/src/blocks/content/content-2.schema.ts +209 -0
  43. package/src/blocks/content/content-2.tsx +32 -0
  44. package/src/blocks/content/content-3.schema.ts +864 -0
  45. package/src/blocks/content/content-3.tsx +54 -0
  46. package/src/blocks/content/content-4.schema.ts +287 -0
  47. package/src/blocks/content/content-4.tsx +47 -0
  48. package/src/blocks/content/content-5.schema.ts +944 -0
  49. package/src/blocks/content/content-5.tsx +58 -0
  50. package/src/blocks/content/content-6.schema.ts +991 -0
  51. package/src/blocks/content/content-6.tsx +61 -0
  52. package/src/blocks/cta/cta-1.schema.ts +361 -0
  53. package/src/blocks/cta/cta-1.tsx +33 -0
  54. package/src/blocks/cta/cta-2.schema.ts +209 -0
  55. package/src/blocks/cta/cta-2.tsx +28 -0
  56. package/src/blocks/cta/cta-3.schema.ts +156 -0
  57. package/src/blocks/cta/cta-3.tsx +48 -0
  58. package/src/blocks/embed/embed-1.schema.ts +153 -0
  59. package/src/blocks/embed/embed-1.tsx +38 -0
  60. package/src/blocks/event/event-details.schema.ts +737 -0
  61. package/src/blocks/event/event-details.tsx +107 -0
  62. package/src/blocks/event/event-listing-2.schema.ts +496 -0
  63. package/src/blocks/event/event-listing-2.tsx +70 -0
  64. package/src/blocks/event/event-listing-3.schema.ts +605 -0
  65. package/src/blocks/event/event-listing-3.tsx +95 -0
  66. package/src/blocks/event/event-listing.schema.ts +1358 -0
  67. package/src/blocks/event/event-listing.tsx +90 -0
  68. package/src/blocks/faq/faq-1.schema.ts +357 -0
  69. package/src/blocks/faq/faq-1.tsx +65 -0
  70. package/src/blocks/faq/faq-2.schema.ts +356 -0
  71. package/src/blocks/faq/faq-2.tsx +84 -0
  72. package/src/blocks/faq/faq-3.schema.ts +475 -0
  73. package/src/blocks/faq/faq-3.tsx +70 -0
  74. package/src/blocks/features/features-1/features-1.schema.ts +165 -0
  75. package/src/blocks/features/features-1/features-1.tsx +48 -0
  76. package/src/blocks/features/features-1/variants/default.ts +197 -0
  77. package/{dist/blocks/features/features-1/variants/index.js → src/blocks/features/features-1/variants/index.ts} +7 -1
  78. package/src/blocks/features/features-1/variants/stylized-cards-v1.ts +138 -0
  79. package/src/blocks/features/features-1/variants/stylized-cards-v2.ts +487 -0
  80. package/src/blocks/features/features-2.schema.ts +338 -0
  81. package/src/blocks/features/features-2.tsx +66 -0
  82. package/src/blocks/features/features-3.schema.ts +438 -0
  83. package/src/blocks/features/features-3.tsx +56 -0
  84. package/src/blocks/features/features-4.schema.ts +631 -0
  85. package/src/blocks/features/features-4.tsx +75 -0
  86. package/src/blocks/features/features-5.schema.ts +747 -0
  87. package/src/blocks/features/features-5.tsx +49 -0
  88. package/src/blocks/features/features-6.schema.ts +849 -0
  89. package/src/blocks/features/features-6.tsx +125 -0
  90. package/src/blocks/footer/footer-1.schema.ts +589 -0
  91. package/src/blocks/footer/footer-1.tsx +90 -0
  92. package/src/blocks/footer/footer-2.schema.ts +898 -0
  93. package/src/blocks/footer/footer-2.tsx +77 -0
  94. package/src/blocks/footer/footer-3.schema.ts +487 -0
  95. package/src/blocks/footer/footer-3.tsx +100 -0
  96. package/src/blocks/footer/footer-4.schema.ts +644 -0
  97. package/src/blocks/footer/footer-4.tsx +97 -0
  98. package/src/blocks/footer/footer-5.schema.ts +425 -0
  99. package/src/blocks/footer/footer-5.tsx +91 -0
  100. package/src/blocks/hero/hero-1.schema.ts +766 -0
  101. package/src/blocks/hero/hero-1.tsx +52 -0
  102. package/src/blocks/hero/hero-2.schema.ts +316 -0
  103. package/src/blocks/hero/hero-2.tsx +49 -0
  104. package/src/blocks/hero/hero-3.schema.ts +415 -0
  105. package/src/blocks/hero/hero-3.tsx +50 -0
  106. package/src/blocks/hero/hero-4.schema.ts +325 -0
  107. package/src/blocks/hero/hero-4.tsx +89 -0
  108. package/src/blocks/hero/hero-5.schema.ts +192 -0
  109. package/src/blocks/hero/hero-5.tsx +86 -0
  110. package/src/blocks/hero/hero-6.schema.ts +703 -0
  111. package/src/blocks/hero/hero-6.tsx +62 -0
  112. package/src/blocks/hero/hero-7.schema.ts +508 -0
  113. package/src/blocks/hero/hero-7.tsx +115 -0
  114. package/src/blocks/hero/hero-8.schema.ts +372 -0
  115. package/src/blocks/hero/hero-8.tsx +113 -0
  116. package/src/blocks/hero/hero-9.schema.ts +379 -0
  117. package/src/blocks/hero/hero-9.tsx +49 -0
  118. package/src/blocks/index.ts +78 -0
  119. package/src/blocks/logos/logos-1.schema.ts +264 -0
  120. package/src/blocks/logos/logos-1.tsx +60 -0
  121. package/src/blocks/navbar/navbar-1.schema.ts +961 -0
  122. package/src/blocks/navbar/navbar-1.tsx +398 -0
  123. package/src/blocks/navbar/navbar-2.schema.ts +1226 -0
  124. package/src/blocks/navbar/navbar-2.tsx +417 -0
  125. package/src/blocks/pricing/pricing-1.schema.ts +1002 -0
  126. package/src/blocks/pricing/pricing-1.tsx +88 -0
  127. package/src/blocks/products/products-listing-1.schema.ts +274 -0
  128. package/src/blocks/products/products-listing-1.tsx +48 -0
  129. package/src/blocks/stats/stats-1.schema.ts +231 -0
  130. package/src/blocks/stats/stats-1.tsx +38 -0
  131. package/src/blocks/stats/stats-2.schema.ts +111 -0
  132. package/src/blocks/stats/stats-2.tsx +52 -0
  133. package/src/blocks/stats/variants/default.ts +190 -0
  134. package/src/blocks/stats/variants/hero.ts +153 -0
  135. package/{dist/blocks/stats/variants/index.js → src/blocks/stats/variants/index.ts} +1 -0
  136. package/src/blocks/team/team-1.schema.ts +516 -0
  137. package/src/blocks/team/team-1.tsx +80 -0
  138. package/src/blocks/team/team-2.schema.ts +2813 -0
  139. package/src/blocks/team/team-2.tsx +74 -0
  140. package/src/blocks/team/team-3.schema.ts +707 -0
  141. package/src/blocks/team/team-3.tsx +103 -0
  142. package/src/blocks/termsAndPrivacy/terms-and-conditions-1.schema.ts +168 -0
  143. package/src/blocks/termsAndPrivacy/terms-and-conditions-1.tsx +29 -0
  144. package/src/blocks/testimonial/testimonial-1.schema.ts +345 -0
  145. package/src/blocks/testimonial/testimonial-1.tsx +79 -0
  146. package/src/blocks/testimonial/testimonial-2.schema.ts +816 -0
  147. package/src/blocks/testimonial/testimonial-2.tsx +161 -0
  148. package/src/blocks/testimonial/testimonial-3.schema.ts +279 -0
  149. package/src/blocks/testimonial/testimonial-3.tsx +128 -0
  150. package/src/blocks/testimonial/testimonial-4.schema.ts +3373 -0
  151. package/src/blocks/testimonial/testimonial-4.tsx +202 -0
  152. package/src/blocks/testimonial/testimonial-5.schema.ts +434 -0
  153. package/src/blocks/testimonial/testimonial-5.tsx +106 -0
  154. package/src/blocks/testimonial/testimonial-6.schema.ts +709 -0
  155. package/src/blocks/testimonial/testimonial-6.tsx +128 -0
  156. package/{dist/index.js → src/index.ts} +5 -2
  157. package/{dist/schemas/blocks.js → src/schemas/blocks.ts} +75 -72
  158. package/src/schemas/categories.ts +134 -0
  159. package/src/styles.d.ts +4 -0
  160. package/dist/blocks/about-us/about-us-1.d.ts +0 -5
  161. package/dist/blocks/about-us/about-us-1.js +0 -5
  162. package/dist/blocks/about-us/about-us-1.schema.d.ts +0 -38
  163. package/dist/blocks/about-us/about-us-1.schema.js +0 -537
  164. package/dist/blocks/blogs/blog-listing-1.d.ts +0 -5
  165. package/dist/blocks/blogs/blog-listing-1.js +0 -12
  166. package/dist/blocks/blogs/blog-listing-1.schema.d.ts +0 -59
  167. package/dist/blocks/blogs/blog-listing-1.schema.js +0 -387
  168. package/dist/blocks/blogs/blog-listing-2.d.ts +0 -5
  169. package/dist/blocks/blogs/blog-listing-2.js +0 -9
  170. package/dist/blocks/blogs/blog-listing-2.schema.d.ts +0 -104
  171. package/dist/blocks/blogs/blog-listing-2.schema.js +0 -572
  172. package/dist/blocks/blogs/blog-post-1.d.ts +0 -6
  173. package/dist/blocks/blogs/blog-post-1.js +0 -8
  174. package/dist/blocks/blogs/blog-post-1.schema.d.ts +0 -48
  175. package/dist/blocks/blogs/blog-post-1.schema.js +0 -358
  176. package/dist/blocks/blogs/blog-post-2.d.ts +0 -6
  177. package/dist/blocks/blogs/blog-post-2.js +0 -8
  178. package/dist/blocks/blogs/blog-post-2.schema.d.ts +0 -74
  179. package/dist/blocks/blogs/blog-post-2.schema.js +0 -779
  180. package/dist/blocks/cards/cards-10.d.ts +0 -6
  181. package/dist/blocks/cards/cards-10.js +0 -4
  182. package/dist/blocks/cards/cards-10.schema.d.ts +0 -44
  183. package/dist/blocks/cards/cards-10.schema.js +0 -405
  184. package/dist/blocks/cards/cards-11.d.ts +0 -6
  185. package/dist/blocks/cards/cards-11.js +0 -4
  186. package/dist/blocks/cards/cards-11.schema.d.ts +0 -58
  187. package/dist/blocks/cards/cards-11.schema.js +0 -406
  188. package/dist/blocks/cards/cards-12.d.ts +0 -6
  189. package/dist/blocks/cards/cards-12.js +0 -4
  190. package/dist/blocks/cards/cards-12.schema.d.ts +0 -38
  191. package/dist/blocks/cards/cards-12.schema.js +0 -545
  192. package/dist/blocks/cards/cards-2.d.ts +0 -5
  193. package/dist/blocks/cards/cards-2.js +0 -4
  194. package/dist/blocks/cards/cards-2.schema.d.ts +0 -46
  195. package/dist/blocks/cards/cards-2.schema.js +0 -260
  196. package/dist/blocks/cards/cards-3.d.ts +0 -6
  197. package/dist/blocks/cards/cards-3.js +0 -5
  198. package/dist/blocks/cards/cards-3.schema.d.ts +0 -36
  199. package/dist/blocks/cards/cards-3.schema.js +0 -351
  200. package/dist/blocks/cards/cards-4.d.ts +0 -6
  201. package/dist/blocks/cards/cards-4.js +0 -4
  202. package/dist/blocks/cards/cards-4.schema.d.ts +0 -40
  203. package/dist/blocks/cards/cards-4.schema.js +0 -648
  204. package/dist/blocks/cards/cards-5.d.ts +0 -5
  205. package/dist/blocks/cards/cards-5.js +0 -4
  206. package/dist/blocks/cards/cards-5.schema.d.ts +0 -48
  207. package/dist/blocks/cards/cards-5.schema.js +0 -238
  208. package/dist/blocks/cards/cards-6.d.ts +0 -5
  209. package/dist/blocks/cards/cards-6.js +0 -45
  210. package/dist/blocks/cards/cards-6.schema.d.ts +0 -50
  211. package/dist/blocks/cards/cards-6.schema.js +0 -608
  212. package/dist/blocks/cards/cards-7.d.ts +0 -5
  213. package/dist/blocks/cards/cards-7.js +0 -45
  214. package/dist/blocks/cards/cards-7.schema.d.ts +0 -87
  215. package/dist/blocks/cards/cards-7.schema.js +0 -1732
  216. package/dist/blocks/cards/cards-8.d.ts +0 -6
  217. package/dist/blocks/cards/cards-8.js +0 -4
  218. package/dist/blocks/cards/cards-8.schema.d.ts +0 -40
  219. package/dist/blocks/cards/cards-8.schema.js +0 -660
  220. package/dist/blocks/cards/cards-9.d.ts +0 -5
  221. package/dist/blocks/cards/cards-9.js +0 -4
  222. package/dist/blocks/cards/cards-9.schema.d.ts +0 -55
  223. package/dist/blocks/cards/cards-9.schema.js +0 -798
  224. package/dist/blocks/carousel/carousel-1.d.ts +0 -5
  225. package/dist/blocks/carousel/carousel-1.js +0 -12
  226. package/dist/blocks/carousel/carousel-1.schema.d.ts +0 -51
  227. package/dist/blocks/carousel/carousel-1.schema.js +0 -236
  228. package/dist/blocks/contact-us/contact-us-1.d.ts +0 -5
  229. package/dist/blocks/contact-us/contact-us-1.js +0 -4
  230. package/dist/blocks/contact-us/contact-us-1.schema.d.ts +0 -31
  231. package/dist/blocks/contact-us/contact-us-1.schema.js +0 -202
  232. package/dist/blocks/contact-us/contact-us-2.d.ts +0 -5
  233. package/dist/blocks/contact-us/contact-us-2.js +0 -4
  234. package/dist/blocks/contact-us/contact-us-2.schema.d.ts +0 -59
  235. package/dist/blocks/contact-us/contact-us-2.schema.js +0 -512
  236. package/dist/blocks/content/content-1.d.ts +0 -6
  237. package/dist/blocks/content/content-1.js +0 -4
  238. package/dist/blocks/content/content-1.schema.d.ts +0 -56
  239. package/dist/blocks/content/content-1.schema.js +0 -807
  240. package/dist/blocks/content/content-2.d.ts +0 -5
  241. package/dist/blocks/content/content-2.js +0 -4
  242. package/dist/blocks/content/content-2.schema.d.ts +0 -78
  243. package/dist/blocks/content/content-2.schema.js +0 -200
  244. package/dist/blocks/content/content-3.d.ts +0 -6
  245. package/dist/blocks/content/content-3.js +0 -5
  246. package/dist/blocks/content/content-3.schema.d.ts +0 -23
  247. package/dist/blocks/content/content-3.schema.js +0 -850
  248. package/dist/blocks/content/content-4.d.ts +0 -6
  249. package/dist/blocks/content/content-4.js +0 -6
  250. package/dist/blocks/content/content-4.schema.d.ts +0 -33
  251. package/dist/blocks/content/content-4.schema.js +0 -252
  252. package/dist/blocks/content/content-5.d.ts +0 -6
  253. package/dist/blocks/content/content-5.js +0 -5
  254. package/dist/blocks/content/content-5.schema.d.ts +0 -37
  255. package/dist/blocks/content/content-5.schema.js +0 -932
  256. package/dist/blocks/content/content-6.d.ts +0 -6
  257. package/dist/blocks/content/content-6.js +0 -5
  258. package/dist/blocks/content/content-6.schema.d.ts +0 -41
  259. package/dist/blocks/content/content-6.schema.js +0 -976
  260. package/dist/blocks/cta/cta-1.d.ts +0 -5
  261. package/dist/blocks/cta/cta-1.js +0 -4
  262. package/dist/blocks/cta/cta-1.schema.d.ts +0 -40
  263. package/dist/blocks/cta/cta-1.schema.js +0 -339
  264. package/dist/blocks/cta/cta-2.d.ts +0 -5
  265. package/dist/blocks/cta/cta-2.js +0 -4
  266. package/dist/blocks/cta/cta-2.schema.d.ts +0 -45
  267. package/dist/blocks/cta/cta-2.schema.js +0 -183
  268. package/dist/blocks/cta/cta-3.d.ts +0 -5
  269. package/dist/blocks/cta/cta-3.js +0 -4
  270. package/dist/blocks/cta/cta-3.schema.d.ts +0 -34
  271. package/dist/blocks/cta/cta-3.schema.js +0 -137
  272. package/dist/blocks/embed/embed-1.d.ts +0 -5
  273. package/dist/blocks/embed/embed-1.js +0 -5
  274. package/dist/blocks/embed/embed-1.schema.d.ts +0 -13
  275. package/dist/blocks/embed/embed-1.schema.js +0 -146
  276. package/dist/blocks/event/event-details.d.ts +0 -5
  277. package/dist/blocks/event/event-details.js +0 -9
  278. package/dist/blocks/event/event-details.schema.d.ts +0 -112
  279. package/dist/blocks/event/event-details.schema.js +0 -685
  280. package/dist/blocks/event/event-listing-2.d.ts +0 -5
  281. package/dist/blocks/event/event-listing-2.js +0 -4
  282. package/dist/blocks/event/event-listing-2.schema.d.ts +0 -84
  283. package/dist/blocks/event/event-listing-2.schema.js +0 -455
  284. package/dist/blocks/event/event-listing-3.d.ts +0 -5
  285. package/dist/blocks/event/event-listing-3.js +0 -10
  286. package/dist/blocks/event/event-listing-3.schema.d.ts +0 -77
  287. package/dist/blocks/event/event-listing-3.schema.js +0 -570
  288. package/dist/blocks/event/event-listing.d.ts +0 -5
  289. package/dist/blocks/event/event-listing.js +0 -10
  290. package/dist/blocks/event/event-listing.schema.d.ts +0 -51
  291. package/dist/blocks/event/event-listing.schema.js +0 -1297
  292. package/dist/blocks/faq/faq-1.d.ts +0 -5
  293. package/dist/blocks/faq/faq-1.js +0 -4
  294. package/dist/blocks/faq/faq-1.schema.d.ts +0 -47
  295. package/dist/blocks/faq/faq-1.schema.js +0 -325
  296. package/dist/blocks/faq/faq-2.d.ts +0 -6
  297. package/dist/blocks/faq/faq-2.js +0 -19
  298. package/dist/blocks/faq/faq-2.schema.d.ts +0 -47
  299. package/dist/blocks/faq/faq-2.schema.js +0 -329
  300. package/dist/blocks/faq/faq-3.d.ts +0 -5
  301. package/dist/blocks/faq/faq-3.js +0 -4
  302. package/dist/blocks/faq/faq-3.schema.d.ts +0 -40
  303. package/dist/blocks/faq/faq-3.schema.js +0 -444
  304. package/dist/blocks/features/features-1/features-1.d.ts +0 -5
  305. package/dist/blocks/features/features-1/features-1.js +0 -4
  306. package/dist/blocks/features/features-1/features-1.schema.d.ts +0 -5
  307. package/dist/blocks/features/features-1/features-1.schema.js +0 -142
  308. package/dist/blocks/features/features-1/variants/default.d.ts +0 -37
  309. package/dist/blocks/features/features-1/variants/default.js +0 -185
  310. package/dist/blocks/features/features-1/variants/index.d.ts +0 -5
  311. package/dist/blocks/features/features-1/variants/stylized-cards-v1.d.ts +0 -3
  312. package/dist/blocks/features/features-1/variants/stylized-cards-v1.js +0 -132
  313. package/dist/blocks/features/features-1/variants/stylized-cards-v2.d.ts +0 -3
  314. package/dist/blocks/features/features-1/variants/stylized-cards-v2.js +0 -484
  315. package/dist/blocks/features/features-2.d.ts +0 -5
  316. package/dist/blocks/features/features-2.js +0 -8
  317. package/dist/blocks/features/features-2.schema.d.ts +0 -41
  318. package/dist/blocks/features/features-2.schema.js +0 -321
  319. package/dist/blocks/features/features-3.d.ts +0 -5
  320. package/dist/blocks/features/features-3.js +0 -4
  321. package/dist/blocks/features/features-3.schema.d.ts +0 -40
  322. package/dist/blocks/features/features-3.schema.js +0 -424
  323. package/dist/blocks/features/features-4.d.ts +0 -5
  324. package/dist/blocks/features/features-4.js +0 -4
  325. package/dist/blocks/features/features-4.schema.d.ts +0 -60
  326. package/dist/blocks/features/features-4.schema.js +0 -594
  327. package/dist/blocks/features/features-5.d.ts +0 -6
  328. package/dist/blocks/features/features-5.js +0 -5
  329. package/dist/blocks/features/features-5.schema.d.ts +0 -28
  330. package/dist/blocks/features/features-5.schema.js +0 -727
  331. package/dist/blocks/features/features-6.d.ts +0 -5
  332. package/dist/blocks/features/features-6.js +0 -31
  333. package/dist/blocks/features/features-6.schema.d.ts +0 -74
  334. package/dist/blocks/features/features-6.schema.js +0 -814
  335. package/dist/blocks/footer/footer-1.d.ts +0 -6
  336. package/dist/blocks/footer/footer-1.js +0 -5
  337. package/dist/blocks/footer/footer-1.schema.d.ts +0 -62
  338. package/dist/blocks/footer/footer-1.schema.js +0 -565
  339. package/dist/blocks/footer/footer-2.d.ts +0 -5
  340. package/dist/blocks/footer/footer-2.js +0 -4
  341. package/dist/blocks/footer/footer-2.schema.d.ts +0 -76
  342. package/dist/blocks/footer/footer-2.schema.js +0 -876
  343. package/dist/blocks/footer/footer-3.d.ts +0 -6
  344. package/dist/blocks/footer/footer-3.js +0 -15
  345. package/dist/blocks/footer/footer-3.schema.d.ts +0 -48
  346. package/dist/blocks/footer/footer-3.schema.js +0 -475
  347. package/dist/blocks/footer/footer-4.d.ts +0 -6
  348. package/dist/blocks/footer/footer-4.js +0 -5
  349. package/dist/blocks/footer/footer-4.schema.d.ts +0 -71
  350. package/dist/blocks/footer/footer-4.schema.js +0 -620
  351. package/dist/blocks/footer/footer-5.d.ts +0 -6
  352. package/dist/blocks/footer/footer-5.js +0 -5
  353. package/dist/blocks/footer/footer-5.schema.d.ts +0 -52
  354. package/dist/blocks/footer/footer-5.schema.js +0 -400
  355. package/dist/blocks/hero/hero-1.d.ts +0 -5
  356. package/dist/blocks/hero/hero-1.js +0 -4
  357. package/dist/blocks/hero/hero-1.schema.d.ts +0 -35
  358. package/dist/blocks/hero/hero-1.schema.js +0 -742
  359. package/dist/blocks/hero/hero-2.d.ts +0 -5
  360. package/dist/blocks/hero/hero-2.js +0 -4
  361. package/dist/blocks/hero/hero-2.schema.d.ts +0 -46
  362. package/dist/blocks/hero/hero-2.schema.js +0 -282
  363. package/dist/blocks/hero/hero-3.d.ts +0 -5
  364. package/dist/blocks/hero/hero-3.js +0 -4
  365. package/dist/blocks/hero/hero-3.schema.d.ts +0 -54
  366. package/dist/blocks/hero/hero-3.schema.js +0 -378
  367. package/dist/blocks/hero/hero-4.d.ts +0 -5
  368. package/dist/blocks/hero/hero-4.js +0 -30
  369. package/dist/blocks/hero/hero-4.schema.d.ts +0 -33
  370. package/dist/blocks/hero/hero-4.schema.js +0 -316
  371. package/dist/blocks/hero/hero-5.d.ts +0 -5
  372. package/dist/blocks/hero/hero-5.js +0 -30
  373. package/dist/blocks/hero/hero-5.schema.d.ts +0 -32
  374. package/dist/blocks/hero/hero-5.schema.js +0 -183
  375. package/dist/blocks/hero/hero-6.d.ts +0 -5
  376. package/dist/blocks/hero/hero-6.js +0 -8
  377. package/dist/blocks/hero/hero-6.schema.d.ts +0 -36
  378. package/dist/blocks/hero/hero-6.schema.js +0 -617
  379. package/dist/blocks/hero/hero-7.d.ts +0 -5
  380. package/dist/blocks/hero/hero-7.js +0 -40
  381. package/dist/blocks/hero/hero-7.schema.d.ts +0 -12
  382. package/dist/blocks/hero/hero-7.schema.js +0 -471
  383. package/dist/blocks/hero/hero-8.d.ts +0 -5
  384. package/dist/blocks/hero/hero-8.js +0 -39
  385. package/dist/blocks/hero/hero-8.schema.d.ts +0 -17
  386. package/dist/blocks/hero/hero-8.schema.js +0 -343
  387. package/dist/blocks/hero/hero-9.d.ts +0 -6
  388. package/dist/blocks/hero/hero-9.js +0 -4
  389. package/dist/blocks/hero/hero-9.schema.d.ts +0 -39
  390. package/dist/blocks/hero/hero-9.schema.js +0 -355
  391. package/dist/blocks/index.d.ts +0 -3
  392. package/dist/blocks/index.js +0 -74
  393. package/dist/blocks/logos/logos-1.d.ts +0 -5
  394. package/dist/blocks/logos/logos-1.js +0 -10
  395. package/dist/blocks/logos/logos-1.schema.d.ts +0 -34
  396. package/dist/blocks/logos/logos-1.schema.js +0 -239
  397. package/dist/blocks/navbar/navbar-1.d.ts +0 -6
  398. package/dist/blocks/navbar/navbar-1.js +0 -100
  399. package/dist/blocks/navbar/navbar-1.schema.d.ts +0 -117
  400. package/dist/blocks/navbar/navbar-1.schema.js +0 -938
  401. package/dist/blocks/navbar/navbar-2.d.ts +0 -6
  402. package/dist/blocks/navbar/navbar-2.js +0 -99
  403. package/dist/blocks/navbar/navbar-2.schema.d.ts +0 -134
  404. package/dist/blocks/navbar/navbar-2.schema.js +0 -1200
  405. package/dist/blocks/pricing/pricing-1.d.ts +0 -5
  406. package/dist/blocks/pricing/pricing-1.js +0 -4
  407. package/dist/blocks/pricing/pricing-1.schema.d.ts +0 -87
  408. package/dist/blocks/pricing/pricing-1.schema.js +0 -976
  409. package/dist/blocks/products/products-listing-1.d.ts +0 -5
  410. package/dist/blocks/products/products-listing-1.js +0 -4
  411. package/dist/blocks/products/products-listing-1.schema.d.ts +0 -36
  412. package/dist/blocks/products/products-listing-1.schema.js +0 -264
  413. package/dist/blocks/stats/stats-1.d.ts +0 -6
  414. package/dist/blocks/stats/stats-1.js +0 -6
  415. package/dist/blocks/stats/stats-1.schema.d.ts +0 -25
  416. package/dist/blocks/stats/stats-1.schema.js +0 -213
  417. package/dist/blocks/stats/stats-2.d.ts +0 -6
  418. package/dist/blocks/stats/stats-2.js +0 -6
  419. package/dist/blocks/stats/stats-2.schema.d.ts +0 -5
  420. package/dist/blocks/stats/stats-2.schema.js +0 -104
  421. package/dist/blocks/stats/variants/default.d.ts +0 -22
  422. package/dist/blocks/stats/variants/default.js +0 -185
  423. package/dist/blocks/stats/variants/hero.d.ts +0 -3
  424. package/dist/blocks/stats/variants/hero.js +0 -151
  425. package/dist/blocks/stats/variants/index.d.ts +0 -4
  426. package/dist/blocks/team/team-1.d.ts +0 -6
  427. package/dist/blocks/team/team-1.js +0 -6
  428. package/dist/blocks/team/team-1.schema.d.ts +0 -65
  429. package/dist/blocks/team/team-1.schema.js +0 -476
  430. package/dist/blocks/team/team-2.d.ts +0 -6
  431. package/dist/blocks/team/team-2.js +0 -6
  432. package/dist/blocks/team/team-2.schema.d.ts +0 -52
  433. package/dist/blocks/team/team-2.schema.js +0 -2732
  434. package/dist/blocks/team/team-3.d.ts +0 -5
  435. package/dist/blocks/team/team-3.js +0 -30
  436. package/dist/blocks/team/team-3.schema.d.ts +0 -32
  437. package/dist/blocks/team/team-3.schema.js +0 -679
  438. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.d.ts +0 -6
  439. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.js +0 -4
  440. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.schema.d.ts +0 -14
  441. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.schema.js +0 -154
  442. package/dist/blocks/testimonial/testimonial-1.d.ts +0 -5
  443. package/dist/blocks/testimonial/testimonial-1.js +0 -10
  444. package/dist/blocks/testimonial/testimonial-1.schema.d.ts +0 -16
  445. package/dist/blocks/testimonial/testimonial-1.schema.js +0 -314
  446. package/dist/blocks/testimonial/testimonial-2.d.ts +0 -5
  447. package/dist/blocks/testimonial/testimonial-2.js +0 -42
  448. package/dist/blocks/testimonial/testimonial-2.schema.d.ts +0 -54
  449. package/dist/blocks/testimonial/testimonial-2.schema.js +0 -771
  450. package/dist/blocks/testimonial/testimonial-3.d.ts +0 -5
  451. package/dist/blocks/testimonial/testimonial-3.js +0 -38
  452. package/dist/blocks/testimonial/testimonial-3.schema.d.ts +0 -56
  453. package/dist/blocks/testimonial/testimonial-3.schema.js +0 -260
  454. package/dist/blocks/testimonial/testimonial-4.d.ts +0 -5
  455. package/dist/blocks/testimonial/testimonial-4.js +0 -51
  456. package/dist/blocks/testimonial/testimonial-4.schema.d.ts +0 -145
  457. package/dist/blocks/testimonial/testimonial-4.schema.js +0 -3214
  458. package/dist/blocks/testimonial/testimonial-5.d.ts +0 -5
  459. package/dist/blocks/testimonial/testimonial-5.js +0 -31
  460. package/dist/blocks/testimonial/testimonial-5.schema.d.ts +0 -33
  461. package/dist/blocks/testimonial/testimonial-5.schema.js +0 -401
  462. package/dist/blocks/testimonial/testimonial-6.d.ts +0 -5
  463. package/dist/blocks/testimonial/testimonial-6.js +0 -39
  464. package/dist/blocks/testimonial/testimonial-6.schema.d.ts +0 -60
  465. package/dist/blocks/testimonial/testimonial-6.schema.js +0 -695
  466. package/dist/index.d.ts +0 -6
  467. package/dist/schemas/blocks.d.ts +0 -3
  468. package/dist/schemas/categories.d.ts +0 -3
  469. package/dist/schemas/categories.js +0 -129
  470. package/dist/schemas/index.d.ts +0 -3
  471. /package/{dist/schemas/index.js → src/schemas/index.ts} +0 -0
@@ -1,771 +0,0 @@
1
- const DUMMY_ICON = {
2
- kind: "icon",
3
- data: {
4
- id: "archive-minus",
5
- label: "Archive Minus",
6
- tags: ["archive", "custom", "directional", "minus"],
7
- svgCode: '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M14.5 11.4H9.5C9.09 11.4 8.75 11.06 8.75 10.65C8.75 10.24 9.09 9.90002 9.5 9.90002H14.5C14.91 9.90002 15.25 10.24 15.25 10.65C15.25 11.06 14.91 11.4 14.5 11.4Z" fill="var(--color-icon-primary)"/>\n<path d="M4.92957 22.75C4.50957 22.75 4.11957 22.65 3.76957 22.45C2.99957 22 2.55957 21.09 2.55957 19.96V5.86C2.55957 3.32 4.62957 1.25 7.16957 1.25H16.8196C19.3596 1.25 21.4296 3.32 21.4296 5.86V19.95C21.4296 21.08 20.9896 21.99 20.2196 22.44C19.4496 22.89 18.4396 22.84 17.4496 22.29L12.5696 19.58C12.2796 19.42 11.7096 19.42 11.4196 19.58L6.53957 22.29C5.99957 22.59 5.44957 22.75 4.92957 22.75ZM7.17957 2.75C5.46957 2.75 4.06957 4.15 4.06957 5.86V19.95C4.06957 20.54 4.23957 20.98 4.53957 21.15C4.83957 21.33 5.30957 21.27 5.81957 20.98L10.6996 18.27C11.4396 17.86 12.5596 17.86 13.2996 18.27L18.1796 20.98C18.6896 21.27 19.1596 21.33 19.4596 21.15C19.7596 20.97 19.9296 20.53 19.9296 19.95V5.86C19.9296 4.15 18.5296 2.75 16.8196 2.75H7.17957Z" fill="var(--color-icon-primary)"/>\n</svg>',
8
- },
9
- };
10
- const MEDIA = {
11
- placeholder: {
12
- id: "7141014160938075687",
13
- location: "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH.png",
14
- kind: "image",
15
- mimetype: "image/png",
16
- srcset: {
17
- "1080w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1080w.webp",
18
- "1200w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1200w.webp",
19
- "1920w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1920w.webp",
20
- "320w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-320w.webp",
21
- "640w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-640w.webp",
22
- "750w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-750w.webp",
23
- "828w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-828w.webp",
24
- path: "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-640w.webp 640w, https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1080w.webp 1080w, https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1200w.webp 1200w, https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1920w.webp 1920w, https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-320w.webp 320w, https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-750w.webp 750w, https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-828w.webp 828w",
25
- },
26
- },
27
- // openQoute: {
28
- // object: "media",
29
- // id: "9GFUqRMqQKAX",
30
- // workspace_id: "WLZ1TXTD",
31
- // filename: "“.svg",
32
- // kind: "image",
33
- // path: "WLZ1TXTD/-9GFhqRMqQKVE.svg",
34
- // location: "https://static.levocdn.com/WLZ1TXTD/-9GFhqRMqQKVE.svg",
35
- // metadata: {
36
- // etag: '"834462315a88cc87897a300e4b2f5d45"',
37
- // mimetype: "image/svg+xml",
38
- // size: 1115,
39
- // },
40
- // srcset: {},
41
- // created_at: "2025-04-27T11:33:42.633Z",
42
- // updated_at: "2025-04-27T11:33:42.633Z",
43
- // created_by: null,
44
- // updated_by: null,
45
- // },
46
- };
47
- const TESTIMONIALS_CONTENT = [
48
- {
49
- testimonial: null,
50
- "cover-container": null,
51
- "testimonial-content-wrapper": null,
52
- "testimonial-content": null,
53
- icon: DUMMY_ICON,
54
- "testimonial-info": null,
55
- "author-wrapper": null,
56
- cover: MEDIA?.placeholder,
57
- cover_embed: null,
58
- "testimonial-text": "Switching to this platform has completely transformed how we handle financial reporting. The automation features are intuitive and have saved our team countless hours.",
59
- "author-name": "Daniel Kim",
60
- "author-position": "Finance Operations Lead",
61
- },
62
- {
63
- testimonial: null,
64
- "cover-container": null,
65
- "testimonial-content-wrapper": null,
66
- "testimonial-content": null,
67
- icon: DUMMY_ICON,
68
- "testimonial-info": null,
69
- "author-wrapper": null,
70
- cover: MEDIA?.placeholder,
71
- cover_embed: null,
72
- "testimonial-text": "In an industry where every second counts, having real-time analytics and secure integrations has made all the difference for our clients and internal teams.",
73
- "author-name": "Amelia Rodriguez",
74
- "author-position": "VP of Digital Banking Solutions",
75
- },
76
- {
77
- testimonial: null,
78
- "cover-container": null,
79
- "testimonial-content-wrapper": null,
80
- "testimonial-content": null,
81
- icon: DUMMY_ICON,
82
- "testimonial-info": null,
83
- "author-wrapper": null,
84
- cover: MEDIA?.placeholder,
85
- cover_embed: null,
86
- "testimonial-text": "The platform's ability to scale with our growth while maintaining transparency across all financial touchpoints is simply unmatched.",
87
- "author-name": "Omar Hassan",
88
- "author-position": "Chief Financial Officer",
89
- },
90
- {
91
- testimonial: null,
92
- "cover-container": null,
93
- "testimonial-content-wrapper": null,
94
- "testimonial-content": null,
95
- icon: DUMMY_ICON,
96
- "testimonial-info": null,
97
- "author-wrapper": null,
98
- cover: MEDIA?.placeholder,
99
- cover_embed: null,
100
- "testimonial-text": "We've seen a 30% improvement in financial process efficiency since adopting this tool. Its collaborative dashboards and user-friendly design stand out.",
101
- "author-name": "Priya Nair",
102
- "author-position": "Head of Financial Strategy",
103
- },
104
- ];
105
- const DEFAULT_CONTENT = {
106
- layout: null,
107
- container: null,
108
- header: null,
109
- "header-content": null,
110
- "badge-container": null,
111
- "badge-text": "Beta Review",
112
- title: "Loved by Industrial People",
113
- testimonials: TESTIMONIALS_CONTENT,
114
- "carousel-navigation": null,
115
- "carousel-navigation-pill": null,
116
- title_two: " ",
117
- };
118
- const TESTIMONIAL_STYLE = {
119
- testimonial: {
120
- display: "flex",
121
- "box-shadow": "xl",
122
- "border-radius": "3xl",
123
- "align-items": "stretch",
124
- overflow: "hidden",
125
- tablet: {
126
- "flex-direction": "column",
127
- },
128
- },
129
- "cover-container": {
130
- "max-width": "45%",
131
- tablet: {
132
- "max-width": "100%",
133
- },
134
- },
135
- cover: {
136
- height: "100%",
137
- width: "100%",
138
- "object-fit": "cover",
139
- tablet: {
140
- "max-width": "100%",
141
- },
142
- },
143
- cover_embed: {},
144
- "testimonial-content-wrapper": {
145
- display: "flex",
146
- flex: "1",
147
- "align-items": "center",
148
- "row-gap": "7xl",
149
- "column-gap": "7xl",
150
- "border-top-right-radius": "3xl",
151
- "border-bottom-right-radius": "3xl",
152
- padding: "7xl",
153
- tablet: {
154
- flex: "unset",
155
- padding: "4xl",
156
- "border-top-right-radius": "0",
157
- "border-bottom-left-radius": "3xl",
158
- "border-bottom-right-radius": "3xl",
159
- },
160
- mobile: {
161
- padding: "lg",
162
- },
163
- },
164
- "testimonial-content": {
165
- display: "flex",
166
- flex: "1",
167
- "align-items": "flex-start",
168
- "row-gap": "xl",
169
- "column-gap": "xl",
170
- mobile: {
171
- "column-gap": "sm",
172
- },
173
- },
174
- icon: {
175
- height: "auto",
176
- width: "40px",
177
- tablet: {
178
- height: "auto",
179
- width: "28px",
180
- },
181
- mobile: {
182
- height: "auto",
183
- width: "20px",
184
- },
185
- },
186
- "testimonial-info": {
187
- display: "flex",
188
- flex: "1",
189
- "flex-direction": "column",
190
- "row-gap": "7xl",
191
- tablet: {
192
- "row-gap": "xl",
193
- },
194
- },
195
- "testimonial-text": {
196
- color: "var(--color-text-1)",
197
- "font-size": "3xl",
198
- "font-weight": "semibold",
199
- tablet: {
200
- "font-size": "2xl",
201
- },
202
- mobile: {
203
- "font-size": "lg",
204
- },
205
- },
206
- "author-wrapper": {
207
- display: "flex",
208
- "flex-direction": "column",
209
- "row-gap": "4xs",
210
- },
211
- "author-name": {
212
- color: "var(--color-text-1)",
213
- "font-size": "2xl",
214
- "font-weight": "bold",
215
- mobile: {
216
- "font-size": "lg",
217
- },
218
- },
219
- "author-position": {
220
- color: "var(--color-text-2)",
221
- "font-size": "base",
222
- mobile: {
223
- "font-size": "sm",
224
- },
225
- },
226
- };
227
- const TESTIMONIALS_STYLES = Array(4)
228
- ?.fill(0)
229
- ?.map((_) => TESTIMONIAL_STYLE);
230
- export const Testimonial2 = {
231
- category_id: "testimonial",
232
- title: "Testimonial 2",
233
- key: "testimonial-2",
234
- version: "v1",
235
- prompt_description: "Two-column testimonial carousel with a large image on the left and a featured quote, name, and title on the right, plus visual indicators for sliding through reviews.",
236
- content_schema: [
237
- {
238
- key: "layout",
239
- label: "Layout",
240
- field_interface: "LayoutWidget",
241
- hint: {
242
- prompt_description: "Defines the overall two-column layout structure for the testimonial carousel block, ensuring balanced visual distribution between the testimonial image and the quote content.",
243
- },
244
- },
245
- {
246
- key: "container",
247
- label: "Container",
248
- field_interface: "ContainerWidget",
249
- hint: {
250
- prompt_description: "Acts as the main container, providing padding and alignment to centralize the testimonial block within the page for visual clarity.",
251
- },
252
- },
253
- {
254
- key: "header",
255
- label: "Header",
256
- field_interface: "BoxWidget",
257
- hint: {
258
- prompt_description: "Container for the block header elements, such as the badge and main title, providing spacing and alignment.",
259
- },
260
- },
261
- {
262
- key: "header-content",
263
- label: "Header Content",
264
- field_interface: "BoxWidget",
265
- hint: {
266
- prompt_description: "Positions the badge and main headline, ensuring they are grouped above the carousel content for emphasis.",
267
- },
268
- },
269
- {
270
- key: "badge-container",
271
- label: "Badge Container",
272
- field_interface: "BoxWidget",
273
- hint: {
274
- prompt_description: "Visual container framing the badge text (e.g., 'Beta Review') with rounded/capsule styling. Used for emphasis above the main heading.",
275
- },
276
- },
277
- {
278
- key: "badge-text",
279
- label: "Badge Text",
280
- field_interface: "TypographyWidget",
281
- hint: {
282
- prompt_description: "Short badge phrase indicating product status or review type. Use a concise, upbeat tone. Should fit visually into a pill-shaped badge above the headline.",
283
- min_characters: 8,
284
- max_characters: 18,
285
- },
286
- },
287
- {
288
- key: "title",
289
- label: "Title",
290
- field_interface: "HeadingWidget",
291
- hint: {
292
- prompt_description: "Primary headline for the testimonial carousel. Use a confident, aspirational tone to convey trust and appeal. Should be impactful and concise to fit prominently above the carousel content.",
293
- min_characters: 18,
294
- max_characters: 45,
295
- },
296
- },
297
- {
298
- key: "carousel-navigation-top-container",
299
- label: "Carousel Navigation Top Container",
300
- field_interface: "BoxWidget",
301
- hint: {
302
- prompt_description: "Container for the top navigation.",
303
- },
304
- },
305
- {
306
- key: "carousel-navigation-bottom-container",
307
- label: "Carousel Navigation Bottom Container",
308
- field_interface: "BoxWidget",
309
- hint: {
310
- prompt_description: "Container for the bottom navigation.",
311
- },
312
- },
313
- {
314
- key: "carousel-navigation",
315
- label: "Carousel Navigation",
316
- field_interface: "BoxWidget",
317
- hint: {
318
- prompt_description: "Container for the navigation pills or dots indicating the number of testimonials, typically placed top-right for visual balance.",
319
- },
320
- },
321
- {
322
- key: "carousel-navigation-pill",
323
- label: "Carousel Navigation Pill",
324
- field_interface: "BoxWidget",
325
- hint: {
326
- prompt_description: "Single visual navigation dot or pill to indicate the current position within the testimonial carousel. One pill per testimonial.",
327
- },
328
- },
329
- {
330
- key: "title_two",
331
- label: "Title 2",
332
- field_interface: "HeadingWidget",
333
- },
334
- {
335
- key: "testimonials",
336
- label: "Testimonials",
337
- field_interface: "CarouselWidget",
338
- kind: "group",
339
- fields: [
340
- {
341
- key: "testimonial",
342
- label: "Testimonial",
343
- field_interface: "BoxWidget",
344
- hint: {
345
- prompt_description: "Wrapper for a single testimonial's content, organizing the image, quote, and author details together in a visually cohesive unit.",
346
- },
347
- },
348
- {
349
- key: "cover-container",
350
- label: "Cover Container",
351
- field_interface: "BoxWidget",
352
- hint: {
353
- prompt_description: "Container for the testimonial cover image, providing shape (rounded corners/square) and consistent sizing across testimonials.",
354
- },
355
- },
356
- {
357
- key: "cover",
358
- label: "Cover Image",
359
- field_interface: "MediaWidget",
360
- hint: {
361
- prompt_description: "Large, simple image representing the testimonial or theme. Use stylized artwork or generic illustrations rather than specific faces. Should be visually neutral and balanced to complement text.",
362
- orientation: "square",
363
- size: "large",
364
- usecase: "hero",
365
- },
366
- },
367
- {
368
- key: "cover_embed",
369
- label: "Cover Embed",
370
- field_interface: "IframeWidget",
371
- hint: {
372
- prompt_description: "Optional embed content for the testimonial. Can be used to display embedded videos, interactive content, or other iframe-based media alongside the testimonial.",
373
- },
374
- },
375
- {
376
- key: "testimonial-content-wrapper",
377
- label: "Testimonial Content Wrapper",
378
- field_interface: "BoxWidget",
379
- hint: {
380
- prompt_description: "Container holding both the testimonial quote text and author details, ensuring clear vertical spacing and alignment next to the image.",
381
- },
382
- },
383
- {
384
- key: "testimonial-content",
385
- label: "Testimonial Content",
386
- field_interface: "BoxWidget",
387
- hint: {
388
- prompt_description: "Holds the actual testimonial quote, possibly with a quote icon and spacing above author details.",
389
- },
390
- },
391
- {
392
- key: "icon",
393
- label: "Icon",
394
- field_interface: "IconWidget",
395
- hint: {
396
- prompt_description: "Decorative quote symbol or icon to visually indicate the start of the testimonial text. Should be visually subtle and brand-aligned.",
397
- orientation: "square",
398
- size: "icon",
399
- usecase: "icon",
400
- },
401
- },
402
- {
403
- key: "testimonial-info",
404
- label: "Testimonial Info",
405
- field_interface: "BoxWidget",
406
- hint: {
407
- prompt_description: "Container for author attribution details (name and position), often styled with subtle spacing under the quote.",
408
- },
409
- },
410
- {
411
- key: "testimonial-text",
412
- label: "Testimonial Text",
413
- field_interface: "TypographyWidget",
414
- hint: {
415
- prompt_description: "Main testimonial quote text. Should be genuine, first-person, and enthusiastic; highlight positive impact or specific product benefits in 2–4 lines. Tone is conversational but credible.",
416
- min_characters: 100,
417
- max_characters: 260,
418
- },
419
- },
420
- {
421
- key: "author-wrapper",
422
- label: "Author Wrapper",
423
- field_interface: "BoxWidget",
424
- hint: {
425
- prompt_description: "Container for grouping the author’s name and position, styling them with appropriate hierarchy below the quote.",
426
- },
427
- },
428
- {
429
- key: "author-name",
430
- label: "Author Name",
431
- field_interface: "HeadingWidget",
432
- hint: {
433
- prompt_description: "The full name of the person giving the testimonial. Use a real-sounding name in title case. Should be clearly legible and bolded.",
434
- min_characters: 8,
435
- max_characters: 24,
436
- },
437
- },
438
- {
439
- key: "author-position",
440
- label: "Author Position",
441
- field_interface: "TypographyWidget",
442
- hint: {
443
- prompt_description: "Author's professional title or role. Use a business-appropriate, formal title relevant to the industry. Subdued styling under the name.",
444
- min_characters: 12,
445
- max_characters: 36,
446
- },
447
- },
448
- ],
449
- hint: {
450
- prompt_description: "A carousel of individual testimonials highlighting user experiences with the platform. Each item includes a thematic image, a featured quote, and the author’s name and position. Focus on financial/industrial credibility and approachable, genuine feedback.",
451
- min_items: 3,
452
- max_items: 5,
453
- },
454
- },
455
- ],
456
- layouts: [
457
- {
458
- key: "default",
459
- title: "Default",
460
- styles: {
461
- layout: {
462
- width: "100%",
463
- "padding-top": "10xl",
464
- "padding-bottom": "10xl",
465
- "padding-right": "8xl",
466
- "padding-left": "8xl",
467
- "media:max:768px": {
468
- "padding-top": "5xl",
469
- "padding-bottom": "5xl",
470
- "padding-right": "5xl",
471
- "padding-left": "5xl",
472
- },
473
- "media:max:480px": {
474
- "padding-top": "2xl",
475
- "padding-bottom": "2xl",
476
- "padding-right": "2xl",
477
- "padding-left": "2xl",
478
- },
479
- },
480
- container: {
481
- width: "100%",
482
- display: "flex",
483
- "flex-direction": "column",
484
- "row-gap": "7xl",
485
- "media:max:768px": {
486
- "row-gap": "3xl",
487
- },
488
- "media:max:480px": {
489
- "row-gap": "4xl",
490
- },
491
- },
492
- header: {
493
- position: "relative",
494
- display: "flex",
495
- width: "100%",
496
- "align-items": "center",
497
- "row-gap": "2xs",
498
- "column-gap": "2xs",
499
- mobile: {
500
- "flex-direction": "column",
501
- "row-gap": "md",
502
- },
503
- tablet: {
504
- "margin-bottom": "base",
505
- },
506
- },
507
- "header-content": {
508
- display: "flex",
509
- flex: "1",
510
- "flex-direction": "column",
511
- "align-items": "flex-start",
512
- "justify-content": "center",
513
- "row-gap": "2xs",
514
- "column-gap": "2xs",
515
- },
516
- "badge-container": {
517
- "border-radius": "20px",
518
- "background-color": "brandSecondary",
519
- "padding-left": "lg",
520
- "padding-right": "lg",
521
- "padding-top": "4xs",
522
- "padding-bottom": "4xs",
523
- },
524
- "badge-text": {
525
- "font-size": "base",
526
- "line-height": 1.625,
527
- "font-weight": 500,
528
- mobile: {
529
- "font-size": "sm",
530
- },
531
- },
532
- title: {
533
- "font-size": "4xl",
534
- "line-height": 1.625,
535
- "font-weight": 700,
536
- mobile: {
537
- "font-size": "2xl",
538
- },
539
- },
540
- title_two: {
541
- display: "none",
542
- },
543
- "carousel-navigation-top-container": {
544
- display: "flex",
545
- tablet: {
546
- display: "none",
547
- },
548
- mobile: {
549
- display: "none",
550
- },
551
- },
552
- "carousel-navigation-bottom-container": {
553
- display: "none",
554
- tablet: {
555
- display: "flex",
556
- "justify-content": "center",
557
- },
558
- mobile: {
559
- display: "flex",
560
- "justify-content": "center",
561
- },
562
- },
563
- "carousel-navigation": {
564
- display: "flex",
565
- "column-gap": "2xs",
566
- "align-items": "center",
567
- },
568
- "carousel-navigation-pill": {
569
- width: "8px",
570
- height: "8px",
571
- "border-radius": "8px",
572
- "background-color": "brandSecondary",
573
- },
574
- testimonials_levoGroup: {
575
- number_of_slides: 1,
576
- },
577
- testimonials: TESTIMONIALS_STYLES,
578
- },
579
- content: DEFAULT_CONTENT,
580
- config: {
581
- testimonials_levoGroup: {
582
- carousel: {
583
- loop: true,
584
- },
585
- },
586
- },
587
- },
588
- {
589
- title: "Bottom Navigation",
590
- key: "bottom-navigation",
591
- styles: {
592
- layout: {
593
- width: "100%",
594
- "padding-top": "10xl",
595
- "padding-bottom": "10xl",
596
- "padding-right": "8xl",
597
- "padding-left": "8xl",
598
- "media:max:768px": {
599
- "padding-top": "5xl",
600
- "padding-bottom": "5xl",
601
- "padding-right": "5xl",
602
- "padding-left": "5xl",
603
- },
604
- "media:max:480px": {
605
- "padding-top": "2xl",
606
- "padding-bottom": "2xl",
607
- "padding-right": "2xl",
608
- "padding-left": "2xl",
609
- },
610
- },
611
- container: {
612
- width: "100%",
613
- display: "flex",
614
- "flex-direction": "column",
615
- "row-gap": "7xl",
616
- "media:max:768px": {
617
- "row-gap": "3xl",
618
- },
619
- "media:max:480px": {
620
- "row-gap": "4xl",
621
- },
622
- },
623
- header: {
624
- position: "relative",
625
- display: "flex",
626
- width: "100%",
627
- "align-items": "center",
628
- "row-gap": "2xs",
629
- "column-gap": "2xs",
630
- mobile: {
631
- "flex-direction": "column",
632
- "row-gap": "md",
633
- },
634
- },
635
- "header-content": {
636
- display: "flex",
637
- flex: "1",
638
- "flex-direction": "column",
639
- "align-items": "center",
640
- "justify-content": "center",
641
- "row-gap": "2xs",
642
- "column-gap": "2xs",
643
- },
644
- "badge-container": {
645
- "border-radius": "20px",
646
- "background-color": "brandSecondary",
647
- "padding-left": "lg",
648
- "padding-right": "lg",
649
- "padding-top": "4xs",
650
- "padding-bottom": "4xs",
651
- },
652
- "badge-text": {
653
- "font-size": "base",
654
- "line-height": 1.625,
655
- "font-weight": 500,
656
- mobile: {
657
- "font-size": "sm",
658
- },
659
- },
660
- title: {
661
- "font-size": "4xl",
662
- "line-height": 1.625,
663
- "font-weight": 700,
664
- mobile: {
665
- "font-size": "2xl",
666
- },
667
- },
668
- "carousel-navigation-top-container": {
669
- display: "none",
670
- },
671
- "carousel-navigation-bottom-container": {
672
- display: "flex",
673
- "justify-content": "center",
674
- "margin-top": "base",
675
- },
676
- "carousel-navigation": {
677
- display: "flex",
678
- "column-gap": "2xs",
679
- "align-items": "center",
680
- },
681
- "carousel-navigation-pill": {
682
- width: "8px",
683
- height: "8px",
684
- "border-radius": "8px",
685
- "background-color": "brandSecondary",
686
- },
687
- testimonials_levoGroup: {
688
- number_of_slides: 1,
689
- },
690
- testimonials: Array(4)
691
- ?.fill(0)
692
- ?.map((_) => ({
693
- ...TESTIMONIAL_STYLE,
694
- testimonial: {
695
- ...TESTIMONIAL_STYLE["testimonial"],
696
- border: "1px solid",
697
- "border-color": "var(--color-border)",
698
- },
699
- "testimonial-content-wrapper": {
700
- ...TESTIMONIAL_STYLE["testimonial-content-wrapper"],
701
- "row-gap": "7xl",
702
- "column-gap": "7xl",
703
- padding: "9xl",
704
- tablet: {
705
- ...TESTIMONIAL_STYLE["testimonial-content-wrapper"]["tablet"],
706
- padding: "4xl",
707
- },
708
- mobile: {
709
- ...TESTIMONIAL_STYLE["testimonial-content-wrapper"]["mobile"],
710
- padding: "lg",
711
- },
712
- },
713
- "cover-container": {
714
- ...TESTIMONIAL_STYLE["cover-container"],
715
- "max-width": "571px",
716
- },
717
- cover: {
718
- ...TESTIMONIAL_STYLE["cover"],
719
- "max-width": "571px",
720
- },
721
- "testimonial-info": {
722
- ...TESTIMONIAL_STYLE["testimonial-info"],
723
- "row-gap": "3xl",
724
- tablet: {
725
- ...TESTIMONIAL_STYLE["testimonial-info"]["tablet"],
726
- "row-gap": "3xl",
727
- },
728
- },
729
- "testimonial-text": {
730
- ...TESTIMONIAL_STYLE["testimonial-text"],
731
- "font-size": "xl",
732
- "font-weight": "bold",
733
- tablet: {
734
- "font-size": "xl",
735
- },
736
- mobile: {
737
- "font-size": "base",
738
- },
739
- },
740
- "author-wrapper": {
741
- ...TESTIMONIAL_STYLE["author-wrapper"],
742
- "row-gap": "5xs",
743
- },
744
- "author-name": {
745
- ...TESTIMONIAL_STYLE["author-name"],
746
- "font-size": "lg",
747
- "font-weight": "bold",
748
- mobile: {
749
- "font-size": "base",
750
- },
751
- },
752
- "author-position": {
753
- ...TESTIMONIAL_STYLE["author-position"],
754
- "font-size": "sm",
755
- mobile: {
756
- "font-size": "sm",
757
- },
758
- },
759
- })),
760
- },
761
- content: DEFAULT_CONTENT,
762
- config: {
763
- testimonials_levoGroup: {
764
- carousel: {
765
- loop: true,
766
- },
767
- },
768
- },
769
- },
770
- ],
771
- };