@levo-so/blocks 0.1.1 → 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 (475) 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/blocks.d.ts +0 -3
  467. package/dist/blocks.js +0 -74
  468. package/dist/index.d.ts +0 -6
  469. package/dist/schemas/blocks.d.ts +0 -3
  470. package/dist/schemas/categories.d.ts +0 -3
  471. package/dist/schemas/categories.js +0 -129
  472. package/dist/schemas/index.d.ts +0 -3
  473. package/dist/schemas.d.ts +0 -3
  474. package/dist/schemas.js +0 -2
  475. /package/{dist/schemas/index.js → src/schemas/index.ts} +0 -0
@@ -1,6 +0,0 @@
1
- import React from "react";
2
- import { type ILevoBlockBaseProps } from "@levo-so/studio";
3
- import type { ITermsAndConditions1Content } from "./terms-and-conditions-1.schema";
4
- declare const TermsAndConditions1: React.FC<ILevoBlockBaseProps<ITermsAndConditions1Content>>;
5
- export default TermsAndConditions1;
6
- //# sourceMappingURL=terms-and-conditions-1.d.ts.map
@@ -1,4 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import { Box, Container, Heading, Section, Typography, } from "@levo-so/studio";
3
- const TermsAndConditions1 = () => (_jsx(Section, { elementKey: "layout", children: _jsxs(Container, { elementKey: "container", children: [_jsxs(Box, { elementKey: "header_content", children: [_jsx(Heading, { elementKey: "title" }), _jsx(Typography, { elementKey: "subtitle" })] }), _jsx(Box, { elementKey: "content_wrapper", children: _jsx(Typography, { elementKey: "content" }) })] }) }));
4
- export default TermsAndConditions1;
@@ -1,14 +0,0 @@
1
- import type { IBlock } from "@levo-so/studio";
2
- declare const DEFAULT_CONTENT: {
3
- layout: null;
4
- container: null;
5
- header_content: null;
6
- title: string;
7
- subtitle: string;
8
- content_wrapper: null;
9
- content: string;
10
- };
11
- export type ITermsAndConditions1Content = typeof DEFAULT_CONTENT;
12
- export declare const TermsAndConditions1: IBlock;
13
- export {};
14
- //# sourceMappingURL=terms-and-conditions-1.schema.d.ts.map
@@ -1,154 +0,0 @@
1
- const DEFAULT_CONTENT = {
2
- layout: null,
3
- container: null,
4
- header_content: null,
5
- title: "Terms and Conditions",
6
- subtitle: "Enterprise Legal Documentation - Effective from January 1, 2025",
7
- content_wrapper: null,
8
- content: "<h2>1. Agreement to Terms</h2><p>By accessing and using our enterprise platform, you confirm your acceptance of these Terms and Conditions. These terms apply to all users, including clients, partners, and service providers who access our business solutions.</p><h2>2. Service Description</h2><p>Our platform provides comprehensive business technology solutions designed to streamline operations, enhance productivity, and drive growth for enterprises of all sizes. We offer scalable infrastructure, data analytics, and integration services.</p><h2>3. User Responsibilities</h2><p>Users are responsible for maintaining the confidentiality of their account credentials and for all activities that occur under their account. You agree to use our services in compliance with all applicable laws and regulations.</p><h2>4. Data Privacy and Protection</h2><p>We are committed to protecting your data privacy. Our data processing practices comply with industry standards and applicable privacy regulations. We implement robust security measures to safeguard your business information.</p><h2>5. Intellectual Property</h2><p>All content, features, and functionality of our platform are owned by us and are protected by international copyright, trademark, and other intellectual property laws.</p><h2>6. Limitation of Liability</h2><p>Our liability is limited to the maximum extent permitted by law. We provide our services on an 'as is' basis and make no warranties regarding uninterrupted or error-free operation.</p><h2>7. Contact Information</h2><p>For questions regarding these terms, please contact our legal team at legal@company.com or through our official support channels.</p>",
9
- };
10
- export const TermsAndConditions1 = {
11
- category_id: "termsAndPrivacy",
12
- title: "Terms and Conditions 1",
13
- key: "terms-and-conditions-1",
14
- version: "v1",
15
- prompt_description: "A comprehensive terms and conditions page with header section containing title and subtitle, followed by detailed legal content in rich text format.",
16
- content_schema: [
17
- {
18
- key: "layout",
19
- label: "Layout",
20
- field_interface: "LayoutWidget",
21
- hint: {
22
- prompt_description: "Provides the overall page layout with proper spacing and alignment for legal document presentation.",
23
- },
24
- },
25
- {
26
- key: "container",
27
- label: "Container",
28
- field_interface: "ContainerWidget",
29
- hint: {
30
- prompt_description: "Main content container that ensures proper width constraints and center alignment for readability.",
31
- },
32
- },
33
- {
34
- key: "header_content",
35
- label: "Header Content",
36
- field_interface: "BoxWidget",
37
- hint: {
38
- prompt_description: "Header section wrapper that groups the main title and subtitle with consistent spacing.",
39
- },
40
- },
41
- {
42
- key: "title",
43
- label: "Title",
44
- field_interface: "HeadingWidget",
45
- hint: {
46
- prompt_description: "Main page title for the legal document. Should be clear and professional. Tone: formal, authoritative.",
47
- min_characters: 10,
48
- max_characters: 60,
49
- },
50
- },
51
- {
52
- key: "subtitle",
53
- label: "Subtitle",
54
- field_interface: "TypographyWidget",
55
- hint: {
56
- prompt_description: "Subtitle providing additional context such as effective date or document description. Tone: informative, professional.",
57
- min_characters: 20,
58
- max_characters: 120,
59
- },
60
- },
61
- {
62
- key: "content_wrapper",
63
- label: "Content Wrapper",
64
- field_interface: "BoxWidget",
65
- hint: {
66
- prompt_description: "Wrapper for the main legal content area with appropriate spacing and typography styles.",
67
- },
68
- },
69
- {
70
- key: "content",
71
- label: "Content",
72
- field_interface: "TypographyWidget",
73
- hint: {
74
- prompt_description: "Main legal document content with structured sections, headings, and paragraphs. Should include comprehensive terms covering service usage, responsibilities, privacy, and legal compliance. Tone: formal, clear, legally compliant.",
75
- min_characters: 500,
76
- max_characters: 10000,
77
- },
78
- },
79
- ],
80
- layouts: [
81
- {
82
- key: "default",
83
- title: "Default",
84
- styles: {
85
- layout: {
86
- width: "100%",
87
- "padding-top": "8xl",
88
- "padding-bottom": "8xl",
89
- "background-color": "white",
90
- },
91
- container: {
92
- width: "100%",
93
- "margin-left": "auto",
94
- "margin-right": "auto",
95
- "padding-left": "none",
96
- "padding-right": "none",
97
- "media:max:768px": {
98
- "padding-left": "xl",
99
- "padding-right": "xl",
100
- },
101
- "max-width": "1200px",
102
- "padding-top": "none",
103
- "padding-bottom": "none",
104
- },
105
- header_content: {
106
- display: "flex",
107
- "flex-direction": "column",
108
- "align-items": "center",
109
- "text-align": "center",
110
- "margin-bottom": "6xl",
111
- "row-gap": "lg",
112
- },
113
- title: {
114
- "font-size": "5xl",
115
- "font-weight": "700",
116
- color: "text-1",
117
- "line-height": "1.2",
118
- "media:max:768px": {
119
- "font-size": "4xl",
120
- },
121
- "media:max:480px": {
122
- "font-size": "3xl",
123
- },
124
- },
125
- subtitle: {
126
- "font-size": "lg",
127
- "font-weight": "500",
128
- color: "text-2",
129
- "max-width": "2xl",
130
- "line-height": "1.5",
131
- "media:max:768px": {
132
- "font-size": "base",
133
- },
134
- },
135
- content_wrapper: {
136
- width: "100%",
137
- },
138
- content: {
139
- "font-size": "base",
140
- "font-weight": "400",
141
- color: "text-1",
142
- "line-height": "1.7",
143
- "text-align": "justify",
144
- "media:max:768px": {
145
- "font-size": "sm",
146
- "text-align": "left",
147
- },
148
- },
149
- },
150
- content: DEFAULT_CONTENT,
151
- config: {},
152
- },
153
- ],
154
- };
@@ -1,5 +0,0 @@
1
- import { type ILevoBlockBaseProps } from "@levo-so/studio";
2
- import type { ITestimonial1Content } from "./testimonial-1.schema";
3
- declare const Testimonial1: React.FC<ILevoBlockBaseProps<ITestimonial1Content>>;
4
- export default Testimonial1;
5
- //# sourceMappingURL=testimonial-1.d.ts.map
@@ -1,10 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import { Button, Heading, Typography, Container, Section, Box, Carousel, CarouselContent, CarouselItem, Icon, } from "@levo-so/studio";
3
- const Testimonial1 = ({ content, }) => {
4
- return (_jsx(Section, { elementKey: "layout", children: _jsxs(Container, { elementKey: "container", children: [_jsxs(Box, { elementKey: "textCTAWrapper", children: [_jsxs(Box, { elementKey: "textWrapper", children: [_jsx(Heading, { elementKey: "title" }), _jsx(Typography, { elementKey: "description" })] }), _jsx(Box, { elementKey: "ctas_levoGroup", "data-levo_group": true, children: (content.ctas ?? []).map((_, index) => (_jsx(Button, { elementKey: `ctas.${index}.cta`, "data-levo_group_item": true }, `testimonial-1-cta-${index}`))) })] }), _jsx(Carousel, { elementKey: "testimonials_levoGroup", "data-levo_group": true, opts: {
5
- watchDrag: false,
6
- watchResize: true,
7
- watchSlides: true,
8
- }, children: _jsx(CarouselContent, { children: (content?.testimonials ?? []).map((_, index) => (_jsx(CarouselItem, { "data-levo_group_item": true, children: _jsxs(Box, { elementKey: `testimonials.${index}.wrapper`, children: [_jsxs(Box, { elementKey: `testimonials.${index}.profileWrapper`, children: [_jsx(Icon, { elementKey: `testimonials.${index}.image` }), _jsxs(Box, { elementKey: `testimonials.${index}.namePositionWrapper`, children: [_jsx(Typography, { elementKey: `testimonials.${index}.name` }), _jsx(Typography, { elementKey: `testimonials.${index}.position` })] })] }), _jsx(Typography, { elementKey: `testimonials.${index}.testimonial` })] }) }, `testimonial-1-item-${index}`))) }) })] }) }));
9
- };
10
- export default Testimonial1;
@@ -1,16 +0,0 @@
1
- import type { IBlock } from "@levo-so/studio";
2
- declare const DEFAULT_CONTENT: {
3
- layout: null;
4
- container: null;
5
- textWrapper: null;
6
- title: string;
7
- description: string;
8
- ctas: {
9
- cta: string;
10
- }[];
11
- testimonials: any[];
12
- };
13
- export type ITestimonial1Content = typeof DEFAULT_CONTENT;
14
- export declare const Testimonial1: IBlock;
15
- export {};
16
- //# sourceMappingURL=testimonial-1.schema.d.ts.map
@@ -1,314 +0,0 @@
1
- const DUMMY_ICON = {
2
- kind: "icon",
3
- data: {
4
- id: "archive-minus",
5
- label: "Archive Minus",
6
- tags: ["archive", "custom", "directional", "minus"],
7
- svgCode: '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M14.5 11.4H9.5C9.09 11.4 8.75 11.06 8.75 10.65C8.75 10.24 9.09 9.90002 9.5 9.90002H14.5C14.91 9.90002 15.25 10.24 15.25 10.65C15.25 11.06 14.91 11.4 14.5 11.4Z" fill="var(--color-icon-primary)"/>\n<path d="M4.92957 22.75C4.50957 22.75 4.11957 22.65 3.76957 22.45C2.99957 22 2.55957 21.09 2.55957 19.96V5.86C2.55957 3.32 4.62957 1.25 7.16957 1.25H16.8196C19.3596 1.25 21.4296 3.32 21.4296 5.86V19.95C21.4296 21.08 20.9896 21.99 20.2196 22.44C19.4496 22.89 18.4396 22.84 17.4496 22.29L12.5696 19.58C12.2796 19.42 11.7096 19.42 11.4196 19.58L6.53957 22.29C5.99957 22.59 5.44957 22.75 4.92957 22.75ZM7.17957 2.75C5.46957 2.75 4.06957 4.15 4.06957 5.86V19.95C4.06957 20.54 4.23957 20.98 4.53957 21.15C4.83957 21.33 5.30957 21.27 5.81957 20.98L10.6996 18.27C11.4396 17.86 12.5596 17.86 13.2996 18.27L18.1796 20.98C18.6896 21.27 19.1596 21.33 19.4596 21.15C19.7596 20.97 19.9296 20.53 19.9296 19.95V5.86C19.9296 4.15 18.5296 2.75 16.8196 2.75H7.17957Z" fill="var(--color-icon-primary)"/>\n</svg>',
8
- },
9
- };
10
- const DEFAULT_TESTIMONIALS_COUNT = 8;
11
- const DEFAULT_CONTENT = {
12
- layout: null,
13
- container: null,
14
- // title, description and CTA
15
- textWrapper: null,
16
- title: "What Our Clients Say",
17
- description: "Hear from our satisfied clients about their experience working with our team.",
18
- ctas: [
19
- {
20
- cta: "View All Testimonials",
21
- },
22
- ],
23
- testimonials: Array(DEFAULT_TESTIMONIALS_COUNT).fill({
24
- wrapper: null,
25
- profileWrapper: null,
26
- image: DUMMY_ICON,
27
- namePositionWrapper: null,
28
- name: "John Smith",
29
- position: "CEO",
30
- testimonial: "Navigate complex markets confidently with our expert financial advisory services.",
31
- }),
32
- };
33
- export const Testimonial1 = {
34
- category_id: "testimonial",
35
- title: "Testimonial 1",
36
- key: "testimonial-1",
37
- version: "v1",
38
- prompt_description: "Centered headline, subheadline, and button above a horizontally auto-scrolling carousel of testimonial cards with client photos, names, roles, and brief quotes.",
39
- content_schema: [
40
- {
41
- key: "layout",
42
- label: "Layout",
43
- field_interface: "LayoutWidget",
44
- hint: {
45
- prompt_description: "Defines the overall layout structure of the testimonial section block, keeping content centered and spaced for visual emphasis. No content generation required—used for layout only.",
46
- },
47
- },
48
- {
49
- key: "container",
50
- label: "Container",
51
- field_interface: "ContainerWidget",
52
- hint: {
53
- prompt_description: "Main outer container to provide padding and alignment for testimonial section. Not for content, but for spacing and organizational structure only.",
54
- },
55
- },
56
- // Title, description and CTA
57
- {
58
- key: "textCTAWrapper",
59
- label: "Text CTA Wrapper",
60
- field_interface: "BoxWidget",
61
- hint: {
62
- prompt_description: "Container that vertically stacks the section heading, description, and the call-to-action button in the top center of the block. No content generation—structural use.",
63
- },
64
- },
65
- {
66
- key: "textWrapper",
67
- label: "Text Wrapper",
68
- field_interface: "BoxWidget",
69
- hint: {
70
- prompt_description: "Groups the heading and subheading text, ensuring central alignment and consistent spacing. No content—structural use.",
71
- },
72
- },
73
- {
74
- key: "title",
75
- label: "Title",
76
- field_interface: "HeadingWidget",
77
- hint: {
78
- prompt_description: "Primary headline introducing the testimonial section. Write a clear, inviting headline that builds trust—example: 'What Our Clients Say'. Use a confident, aspirational but neutral tone.",
79
- min_characters: 16,
80
- max_characters: 40,
81
- },
82
- },
83
- {
84
- key: "description",
85
- label: "Description",
86
- field_interface: "TypographyWidget",
87
- hint: {
88
- prompt_description: "Short subheadline that explains the purpose of this section (sharing positive client experiences). Use a friendly, inviting, and concise tone.",
89
- min_characters: 40,
90
- max_characters: 120,
91
- },
92
- },
93
- {
94
- key: "ctas",
95
- label: "CTAs",
96
- field_interface: "BoxWidget",
97
- kind: "group",
98
- fields: [
99
- {
100
- key: "cta",
101
- label: "CTA",
102
- field_interface: "ButtonWidget",
103
- hint: {
104
- prompt_description: "Main call-to-action button below the description, encouraging visitors to read more testimonials. Text should be direct, action-oriented, and brief (e.g., 'View All Testimonials').",
105
- min_characters: 8,
106
- max_characters: 32,
107
- },
108
- },
109
- ],
110
- hint: {
111
- prompt_description: "Wrapper for call-to-action buttons (typically one). The button prompts users to view all testimonials.",
112
- min_items: 1,
113
- max_items: 2,
114
- },
115
- },
116
- {
117
- key: "testimonials",
118
- label: "Testimonials",
119
- field_interface: "CarouselWidget",
120
- kind: "group",
121
- fields: [
122
- {
123
- key: "wrapper",
124
- label: "Wrapper",
125
- field_interface: "BoxWidget",
126
- hint: {
127
- prompt_description: "Card container for individual testimonial, used for visual grouping and spacing. No content—structural only.",
128
- },
129
- },
130
- {
131
- key: "profileWrapper",
132
- label: "Profile Wrapper",
133
- field_interface: "BoxWidget",
134
- hint: {
135
- prompt_description: "Groups together the client avatar, name, and position for layout purposes inside the card. Structural only.",
136
- },
137
- },
138
- {
139
- key: "image",
140
- label: "Image",
141
- field_interface: "IconWidget",
142
- hint: {
143
- prompt_description: "Client avatar displayed as a small, circular portrait to the left of their name. Use a neutral or professional style avatar if not available.",
144
- orientation: "square",
145
- size: "small",
146
- usecase: "icon",
147
- },
148
- },
149
- {
150
- key: "namePositionWrapper",
151
- label: "Name Position Wrapper",
152
- field_interface: "BoxWidget",
153
- hint: {
154
- prompt_description: "Holds the client's name and position, keeping them visually grouped next to the avatar. No content—structural only.",
155
- },
156
- },
157
- {
158
- key: "name",
159
- label: "Name",
160
- field_interface: "TypographyWidget",
161
- hint: {
162
- prompt_description: "The full name of the client giving the testimonial. Use a realistic, professional-sounding name.",
163
- min_characters: 5,
164
- max_characters: 24,
165
- },
166
- },
167
- {
168
- key: "position",
169
- label: "Position",
170
- field_interface: "TypographyWidget",
171
- hint: {
172
- prompt_description: "The professional title or position of the client listed under their name. Keep it concise (e.g., CEO, Founder, Marketing Director).",
173
- min_characters: 2,
174
- max_characters: 32,
175
- },
176
- },
177
- {
178
- key: "testimonial",
179
- label: "Testimonial",
180
- field_interface: "TypographyWidget",
181
- hint: {
182
- prompt_description: "A brief, authentic-sounding client quote describing their positive experience. Write in first-person and keep the tone genuine and professional.",
183
- min_characters: 60,
184
- max_characters: 150,
185
- },
186
- },
187
- ],
188
- hint: {
189
- prompt_description: "A horizontally scrollable group of testimonial cards, each showing a client avatar, name, position, and a brief quote. Use for displaying client feedback in a visually appealing carousel.",
190
- min_items: 4,
191
- max_items: 10,
192
- },
193
- },
194
- ],
195
- layouts: [
196
- {
197
- title: "Default",
198
- key: "default",
199
- styles: {
200
- testimonials_levoGroup: {
201
- number_of_slides: 4,
202
- tablet: {
203
- number_of_slides: 2,
204
- },
205
- mobile: {
206
- number_of_slides: 1,
207
- },
208
- },
209
- textCTAWrapper: {
210
- display: "flex",
211
- "flex-direction": "column",
212
- "align-items": "center",
213
- "row-gap": "2xl",
214
- tablet: {
215
- "row-gap": "lg",
216
- },
217
- mobile: {
218
- "row-gap": "sm",
219
- },
220
- },
221
- textWrapper: {
222
- display: "flex",
223
- "flex-direction": "column",
224
- "align-items": "center",
225
- "row-gap": "4xs",
226
- },
227
- layout: {
228
- "padding-top": "2xl",
229
- "padding-bottom": "2xl",
230
- "padding-right": "6xl",
231
- "padding-left": "6xl",
232
- tablet: {
233
- "padding-top": "lg",
234
- "padding-bottom": "lg",
235
- "padding-right": "3xl",
236
- "padding-left": "3xl",
237
- },
238
- mobile: {
239
- "padding-top": "base",
240
- "padding-bottom": "base",
241
- "padding-right": "xl",
242
- "padding-left": "xl",
243
- },
244
- },
245
- title: {
246
- "text-align": "center",
247
- "font-size": "3xl",
248
- tablet: {
249
- "font-size": "2xl",
250
- },
251
- },
252
- description: {
253
- "text-align": "center",
254
- },
255
- container: {
256
- display: "flex",
257
- "flex-direction": "column",
258
- "row-gap": "6xl",
259
- tablet: {
260
- "row-gap": "3xl",
261
- },
262
- mobile: {
263
- "row-gap": "xl",
264
- },
265
- },
266
- testimonials: Array(DEFAULT_TESTIMONIALS_COUNT).fill({
267
- wrapper: {
268
- "border-solid": "solid",
269
- "border-width": "1px",
270
- "border-color": "var(--color-border)",
271
- "border-radius": "8px",
272
- padding: "xl",
273
- display: "flex",
274
- "flex-direction": "column",
275
- "row-gap": "xs",
276
- },
277
- profileWrapper: {
278
- display: "flex",
279
- "column-gap": "2xs",
280
- },
281
- image: {
282
- height: "40px",
283
- width: "40px",
284
- "border-radius": "50%",
285
- "object-fit": "cover",
286
- "border-solid": "solid",
287
- "border-width": "1px",
288
- "border-color": "var(--color-border)",
289
- },
290
- name: {
291
- "font-weight": "500",
292
- },
293
- testimonial: {
294
- "font-style": "italic",
295
- overflow: "hidden",
296
- display: "-webkit-box",
297
- "-webkit-box-orient": "vertical",
298
- "-webkit-line-clamp": 2,
299
- },
300
- }),
301
- },
302
- content: DEFAULT_CONTENT,
303
- config: {
304
- testimonials_levoGroup: {
305
- carousel: {
306
- loop: true,
307
- autoScroll: true,
308
- speed: 2,
309
- },
310
- },
311
- },
312
- },
313
- ],
314
- };
@@ -1,5 +0,0 @@
1
- import { type ILevoBlockBaseProps } from "@levo-so/studio";
2
- import type { ITestimonial2Content } from "./testimonial-2.schema";
3
- declare const Testimonial2: React.FC<ILevoBlockBaseProps<ITestimonial2Content>>;
4
- export default Testimonial2;
5
- //# sourceMappingURL=testimonial-2.d.ts.map
@@ -1,42 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import { Heading, Typography, Container, Section, Carousel, CarouselContent, CarouselItem, Box, Media, Iframe, Icon, } from "@levo-so/studio";
3
- import { useEffect, useState } from "react";
4
- const Testimonial2 = ({ content, }) => {
5
- const [api, setApi] = useState();
6
- const [current, setCurrent] = useState(0);
7
- const [count, setCount] = useState(0);
8
- useEffect(() => {
9
- if (!api) {
10
- return;
11
- }
12
- setCount(api.scrollSnapList().length);
13
- setCurrent(api.selectedScrollSnap() + 1);
14
- api.on("select", () => {
15
- setCurrent(api.selectedScrollSnap() + 1);
16
- });
17
- }, [api]);
18
- return (_jsx(Section, { elementKey: "layout", children: _jsxs(Container, { elementKey: "container", children: [_jsxs(Box, { elementKey: "header", children: [_jsxs(Box, { elementKey: "header-content", children: [_jsx(Box, { elementKey: "badge-container", children: _jsx(Typography, { elementKey: "badge-text" }) }), _jsx(Heading, { elementKey: "title" })] }), count > 0 && (_jsx(Box, { elementKey: "carousel-navigation-top-container", children: _jsx(Box, { elementKey: "carousel-navigation", className: "flex gap-x-2", children: Array(count)
19
- ?.fill(0)
20
- ?.map((_, index) => (_jsx(Box, { elementKey: "carousel-navigation-pill", style: index + 1 === current
21
- ? {
22
- backgroundColor: "var(--color-brand)",
23
- width: "24px",
24
- }
25
- : {}, onClick: () => {
26
- if (api) {
27
- api?.scrollTo(index);
28
- }
29
- } }, index))) }) }))] }), _jsx(Carousel, { elementKey: "testimonials_levoGroup", className: "w-full", setApi: setApi, "data-levo_group": true, children: _jsx(CarouselContent, { children: (content?.testimonials ?? [])?.map((_, index) => (_jsx(CarouselItem, { "data-levo_group_item": true, children: _jsxs(Box, { elementKey: `testimonials.${index}.testimonial`, children: [_jsxs(Box, { elementKey: `testimonials.${index}.cover-container`, children: [_jsx(Media, { elementKey: `testimonials.${index}.cover`, alt: "cover" }), _jsx(Iframe, { elementKey: `testimonials.${index}.cover_embed` })] }), _jsx(Box, { elementKey: `testimonials.${index}.testimonial-content-wrapper`, children: _jsxs(Box, { elementKey: `testimonials.${index}.testimonial-content`, children: [_jsx(Icon, { elementKey: `testimonials.${index}.icon` }), _jsxs(Box, { elementKey: `testimonials.${index}.testimonial-info`, children: [_jsx(Typography, { elementKey: `testimonials.${index}.testimonial-text` }), _jsxs(Box, { elementKey: `testimonials.${index}.author-wrapper`, children: [_jsx(Heading, { elementKey: `testimonials.${index}.author-name` }), _jsx(Typography, { elementKey: `testimonials.${index}.author-position` })] })] })] }) })] }) }, index))) }) }), _jsx(Heading, { elementKey: "title_two" }), count > 0 && (_jsx(Box, { elementKey: "carousel-navigation-bottom-container", children: _jsx(Box, { elementKey: "carousel-navigation", className: "flex gap-x-2", children: Array(count)
30
- ?.fill(0)
31
- ?.map((_, index) => (_jsx(Box, { elementKey: "carousel-navigation-pill", style: index + 1 === current
32
- ? {
33
- backgroundColor: "var(--color-brand)",
34
- width: "24px",
35
- }
36
- : {}, onClick: () => {
37
- if (api) {
38
- api?.scrollTo(index);
39
- }
40
- } }, index))) }) }))] }) }));
41
- };
42
- export default Testimonial2;
@@ -1,54 +0,0 @@
1
- import type { IBlock } from "@levo-so/studio";
2
- declare const DEFAULT_CONTENT: {
3
- layout: null;
4
- container: null;
5
- header: null;
6
- "header-content": null;
7
- "badge-container": null;
8
- "badge-text": string;
9
- title: string;
10
- testimonials: {
11
- testimonial: null;
12
- "cover-container": null;
13
- "testimonial-content-wrapper": null;
14
- "testimonial-content": null;
15
- icon: {
16
- kind: string;
17
- data: {
18
- id: string;
19
- label: string;
20
- tags: string[];
21
- svgCode: string;
22
- };
23
- };
24
- "testimonial-info": null;
25
- "author-wrapper": null;
26
- cover: {
27
- id: string;
28
- location: string;
29
- kind: string;
30
- mimetype: string;
31
- srcset: {
32
- "1080w": string;
33
- "1200w": string;
34
- "1920w": string;
35
- "320w": string;
36
- "640w": string;
37
- "750w": string;
38
- "828w": string;
39
- path: string;
40
- };
41
- };
42
- cover_embed: null;
43
- "testimonial-text": string;
44
- "author-name": string;
45
- "author-position": string;
46
- }[];
47
- "carousel-navigation": null;
48
- "carousel-navigation-pill": null;
49
- title_two: string;
50
- };
51
- export type ITestimonial2Content = typeof DEFAULT_CONTENT;
52
- export declare const Testimonial2: IBlock;
53
- export {};
54
- //# sourceMappingURL=testimonial-2.schema.d.ts.map