@levo-so/blocks 0.1.1 → 0.1.52

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