@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,1672 @@
1
+ import type { IBlock } from "@levo-so/studio";
2
+
3
+ // const QUOTE_ICON = {
4
+ // object: "media",
5
+ // id: "9GFUqRMqQKAX",
6
+ // workspace_id: "WLZ1TXTD",
7
+ // filename: "quote.svg",
8
+ // kind: "image",
9
+ // path: "WLZ1TXTD/-9GFhqRMqQKVE.svg",
10
+ // location: "https://static.levocdn.com/WLZ1TXTD/-9GFhqRMqQKVE.svg",
11
+ // metadata: {
12
+ // etag: '"834462315a88cc87897a300e4b2f5d45"',
13
+ // mimetype: "image/svg+xml",
14
+ // size: 1115,
15
+ // },
16
+ // srcset: {},
17
+ // created_at: "2025-04-27T11:33:42.633Z",
18
+ // updated_at: "2025-04-27T11:33:42.633Z",
19
+ // created_by: null,
20
+ // updated_by: null,
21
+ // };
22
+
23
+ const DEFAULT_CONTENT = {
24
+ layout: null,
25
+ container: null,
26
+ "carousel-container": null,
27
+ testimonials: [
28
+ {
29
+ testimonial: null,
30
+ "icon-container": null,
31
+ icon: {
32
+ kind: "custom",
33
+ data: {
34
+ id: "VbXqqm7bqTgoM",
35
+ filename: "image.png",
36
+ kind: "image",
37
+ location:
38
+ "https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz.png",
39
+ srcset: {
40
+ "1080w":
41
+ "https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-1080w.webp",
42
+ "1200w":
43
+ "https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-1200w.webp",
44
+ "1920w":
45
+ "https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-1920w.webp",
46
+ "320w":
47
+ "https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-320w.webp",
48
+ "640w":
49
+ "https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-640w.webp",
50
+ "750w":
51
+ "https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-750w.webp",
52
+ "828w":
53
+ "https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-828w.webp",
54
+ path: "https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-1200w.webp 1200w, https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-1920w.webp 1920w, https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-320w.webp 320w, https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-640w.webp 640w, https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-828w.webp 828w, https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-750w.webp 750w, https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-1080w.webp 1080w",
55
+ },
56
+ mimetype: "image/png",
57
+ },
58
+ },
59
+ "content-container": null,
60
+ "testimonial-content": null,
61
+ "testimonial-text":
62
+ "What impressed me most was the continuous support and guidance. Every session felt purposeful, and the trainers genuinely cared about helping me achieve my fitness goals.",
63
+ "bottom-section": null,
64
+ "author-section": null,
65
+ "author-info": null,
66
+ "author-name": "Michael Chen",
67
+ "author-position": "Member since 2023",
68
+ "author-avatar": {
69
+ kind: "icon",
70
+ data: {
71
+ id: "profile-circle",
72
+ label: "Profile Circle",
73
+ tags: ["circle", "custom", "profile", "users"],
74
+ svgCode:
75
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M12.1205 13.53C12.1005 13.53 12.0705 13.53 12.0505 13.53C12.0205 13.53 11.9805 13.53 11.9505 13.53C9.68047 13.46 7.98047 11.69 7.98047 9.50998C7.98047 7.28998 9.79047 5.47998 12.0105 5.47998C14.2305 5.47998 16.0405 7.28998 16.0405 9.50998C16.0305 11.7 14.3205 13.46 12.1505 13.53C12.1305 13.53 12.1305 13.53 12.1205 13.53ZM12.0005 6.96998C10.6005 6.96998 9.47047 8.10998 9.47047 9.49998C9.47047 10.87 10.5405 11.98 11.9005 12.03C11.9305 12.02 12.0305 12.02 12.1305 12.03C13.4705 11.96 14.5205 10.86 14.5305 9.49998C14.5305 8.10998 13.4005 6.96998 12.0005 6.96998Z" fill="var(--color-icon-primary)"/>\n<path d="M11.9998 22.7499C9.30984 22.7499 6.73984 21.7499 4.74984 19.9299C4.56984 19.7699 4.48984 19.5299 4.50984 19.2999C4.63984 18.1099 5.37984 16.9999 6.60984 16.1799C9.58984 14.1999 14.4198 14.1999 17.3898 16.1799C18.6198 17.0099 19.3598 18.1099 19.4898 19.2999C19.5198 19.5399 19.4298 19.7699 19.2498 19.9299C17.2598 21.7499 14.6898 22.7499 11.9998 22.7499ZM6.07984 19.0999C7.73984 20.4899 9.82984 21.2499 11.9998 21.2499C14.1698 21.2499 16.2598 20.4899 17.9198 19.0999C17.7398 18.4899 17.2598 17.8999 16.5498 17.4199C14.0898 15.7799 9.91984 15.7799 7.43984 17.4199C6.72984 17.8999 6.25984 18.4899 6.07984 19.0999Z" fill="var(--color-icon-primary)"/>\n<path d="M12 22.75C6.07 22.75 1.25 17.93 1.25 12C1.25 6.07 6.07 1.25 12 1.25C17.93 1.25 22.75 6.07 22.75 12C22.75 17.93 17.93 22.75 12 22.75ZM12 2.75C6.9 2.75 2.75 6.9 2.75 12C2.75 17.1 6.9 21.25 12 21.25C17.1 21.25 21.25 17.1 21.25 12C21.25 6.9 17.1 2.75 12 2.75Z" fill="var(--color-icon-primary)"/>\n</svg>',
76
+ },
77
+ },
78
+ },
79
+ {
80
+ testimonial: null,
81
+ "icon-container": null,
82
+ icon: {
83
+ kind: "custom",
84
+ data: {
85
+ id: "VbXqqm7bqTgoM",
86
+ filename: "image.png",
87
+ kind: "image",
88
+ location:
89
+ "https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz.png",
90
+ srcset: {
91
+ "1080w":
92
+ "https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-1080w.webp",
93
+ "1200w":
94
+ "https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-1200w.webp",
95
+ "1920w":
96
+ "https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-1920w.webp",
97
+ "320w":
98
+ "https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-320w.webp",
99
+ "640w":
100
+ "https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-640w.webp",
101
+ "750w":
102
+ "https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-750w.webp",
103
+ "828w":
104
+ "https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-828w.webp",
105
+ path: "https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-1200w.webp 1200w, https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-1920w.webp 1920w, https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-320w.webp 320w, https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-640w.webp 640w, https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-828w.webp 828w, https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-750w.webp 750w, https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-1080w.webp 1080w",
106
+ },
107
+ mimetype: "image/png",
108
+ },
109
+ },
110
+ "content-container": null,
111
+ "testimonial-content": null,
112
+ "testimonial-text":
113
+ "What impressed me most was the continuous support and guidance. Every session felt purposeful, and the trainers genuinely cared about helping me achieve my fitness goals.",
114
+ "bottom-section": null,
115
+ "author-section": null,
116
+ "author-info": null,
117
+ "author-name": "Michael Chen",
118
+ "author-position": "Member since 2023",
119
+ "author-avatar": {
120
+ kind: "icon",
121
+ data: {
122
+ id: "profile-circle",
123
+ label: "Profile Circle",
124
+ tags: ["circle", "custom", "profile", "users"],
125
+ svgCode:
126
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M12.1205 13.53C12.1005 13.53 12.0705 13.53 12.0505 13.53C12.0205 13.53 11.9805 13.53 11.9505 13.53C9.68047 13.46 7.98047 11.69 7.98047 9.50998C7.98047 7.28998 9.79047 5.47998 12.0105 5.47998C14.2305 5.47998 16.0405 7.28998 16.0405 9.50998C16.0305 11.7 14.3205 13.46 12.1505 13.53C12.1305 13.53 12.1305 13.53 12.1205 13.53ZM12.0005 6.96998C10.6005 6.96998 9.47047 8.10998 9.47047 9.49998C9.47047 10.87 10.5405 11.98 11.9005 12.03C11.9305 12.02 12.0305 12.02 12.1305 12.03C13.4705 11.96 14.5205 10.86 14.5305 9.49998C14.5305 8.10998 13.4005 6.96998 12.0005 6.96998Z" fill="var(--color-icon-primary)"/>\n<path d="M11.9998 22.7499C9.30984 22.7499 6.73984 21.7499 4.74984 19.9299C4.56984 19.7699 4.48984 19.5299 4.50984 19.2999C4.63984 18.1099 5.37984 16.9999 6.60984 16.1799C9.58984 14.1999 14.4198 14.1999 17.3898 16.1799C18.6198 17.0099 19.3598 18.1099 19.4898 19.2999C19.5198 19.5399 19.4298 19.7699 19.2498 19.9299C17.2598 21.7499 14.6898 22.7499 11.9998 22.7499ZM6.07984 19.0999C7.73984 20.4899 9.82984 21.2499 11.9998 21.2499C14.1698 21.2499 16.2598 20.4899 17.9198 19.0999C17.7398 18.4899 17.2598 17.8999 16.5498 17.4199C14.0898 15.7799 9.91984 15.7799 7.43984 17.4199C6.72984 17.8999 6.25984 18.4899 6.07984 19.0999Z" fill="var(--color-icon-primary)"/>\n<path d="M12 22.75C6.07 22.75 1.25 17.93 1.25 12C1.25 6.07 6.07 1.25 12 1.25C17.93 1.25 22.75 6.07 22.75 12C22.75 17.93 17.93 22.75 12 22.75ZM12 2.75C6.9 2.75 2.75 6.9 2.75 12C2.75 17.1 6.9 21.25 12 21.25C17.1 21.25 21.25 17.1 21.25 12C21.25 6.9 17.1 2.75 12 2.75Z" fill="var(--color-icon-primary)"/>\n</svg>',
127
+ },
128
+ },
129
+ },
130
+ {
131
+ testimonial: null,
132
+ "icon-container": null,
133
+ icon: {
134
+ kind: "custom",
135
+ data: {
136
+ id: "VbXqqm7bqTgoM",
137
+ filename: "image.png",
138
+ kind: "image",
139
+ location:
140
+ "https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz.png",
141
+ srcset: {
142
+ "1080w":
143
+ "https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-1080w.webp",
144
+ "1200w":
145
+ "https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-1200w.webp",
146
+ "1920w":
147
+ "https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-1920w.webp",
148
+ "320w":
149
+ "https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-320w.webp",
150
+ "640w":
151
+ "https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-640w.webp",
152
+ "750w":
153
+ "https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-750w.webp",
154
+ "828w":
155
+ "https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-828w.webp",
156
+ path: "https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-1200w.webp 1200w, https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-1920w.webp 1920w, https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-320w.webp 320w, https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-640w.webp 640w, https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-828w.webp 828w, https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-750w.webp 750w, https://static.levostg.online/W6OEVMW8/image-74dI2DIhPomWz-1080w.webp 1080w",
157
+ },
158
+ mimetype: "image/png",
159
+ },
160
+ },
161
+ "content-container": null,
162
+ "testimonial-content": null,
163
+ "testimonial-text":
164
+ "What impressed me most was the continuous support and guidance. Every session felt purposeful, and the trainers genuinely cared about helping me achieve my fitness goals.",
165
+ "bottom-section": null,
166
+ "author-section": null,
167
+ "author-info": null,
168
+ "author-name": "Michael Chen",
169
+ "author-position": "Member since 2023",
170
+ "author-avatar": {
171
+ kind: "icon",
172
+ data: {
173
+ id: "profile-circle",
174
+ label: "Profile Circle",
175
+ tags: ["circle", "custom", "profile", "users"],
176
+ svgCode:
177
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M12.1205 13.53C12.1005 13.53 12.0705 13.53 12.0505 13.53C12.0205 13.53 11.9805 13.53 11.9505 13.53C9.68047 13.46 7.98047 11.69 7.98047 9.50998C7.98047 7.28998 9.79047 5.47998 12.0105 5.47998C14.2305 5.47998 16.0405 7.28998 16.0405 9.50998C16.0305 11.7 14.3205 13.46 12.1505 13.53C12.1305 13.53 12.1305 13.53 12.1205 13.53ZM12.0005 6.96998C10.6005 6.96998 9.47047 8.10998 9.47047 9.49998C9.47047 10.87 10.5405 11.98 11.9005 12.03C11.9305 12.02 12.0305 12.02 12.1305 12.03C13.4705 11.96 14.5205 10.86 14.5305 9.49998C14.5305 8.10998 13.4005 6.96998 12.0005 6.96998Z" fill="var(--color-icon-primary)"/>\n<path d="M11.9998 22.7499C9.30984 22.7499 6.73984 21.7499 4.74984 19.9299C4.56984 19.7699 4.48984 19.5299 4.50984 19.2999C4.63984 18.1099 5.37984 16.9999 6.60984 16.1799C9.58984 14.1999 14.4198 14.1999 17.3898 16.1799C18.6198 17.0099 19.3598 18.1099 19.4898 19.2999C19.5198 19.5399 19.4298 19.7699 19.2498 19.9299C17.2598 21.7499 14.6898 22.7499 11.9998 22.7499ZM6.07984 19.0999C7.73984 20.4899 9.82984 21.2499 11.9998 21.2499C14.1698 21.2499 16.2598 20.4899 17.9198 19.0999C17.7398 18.4899 17.2598 17.8999 16.5498 17.4199C14.0898 15.7799 9.91984 15.7799 7.43984 17.4199C6.72984 17.8999 6.25984 18.4899 6.07984 19.0999Z" fill="var(--color-icon-primary)"/>\n<path d="M12 22.75C6.07 22.75 1.25 17.93 1.25 12C1.25 6.07 6.07 1.25 12 1.25C17.93 1.25 22.75 6.07 22.75 12C22.75 17.93 17.93 22.75 12 22.75ZM12 2.75C6.9 2.75 2.75 6.9 2.75 12C2.75 17.1 6.9 21.25 12 21.25C17.1 21.25 21.25 17.1 21.25 12C21.25 6.9 17.1 2.75 12 2.75Z" fill="var(--color-icon-primary)"/>\n</svg>',
178
+ },
179
+ },
180
+ },
181
+ ],
182
+ "carousel-navigation": null,
183
+ "carousel-navigation-arrow-left": " ",
184
+ "carousel-navigation-arrow-right": " ",
185
+ "carousel-navigation-arrow-left-side": " ",
186
+ "carousel-navigation-arrow-right-side": " ",
187
+ "carousel-navigation-bottom-container": null,
188
+ "carousel-navigation-arrow-left-bottom": " ",
189
+ "carousel-navigation-arrow-right-bottom": " ",
190
+ "carousel-navigation-arrow-left_leftIcon": {
191
+ kind: "icon",
192
+ data: {
193
+ id: "arrow-left",
194
+ label: "Arrow Left",
195
+ tags: ["arrow", "custom", "directional", "left"],
196
+ svgCode:
197
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M9.57043 18.82C9.38043 18.82 9.19043 18.75 9.04043 18.6L2.97043 12.53C2.68043 12.24 2.68043 11.76 2.97043 11.47L9.04043 5.4C9.33043 5.11 9.81043 5.11 10.1004 5.4C10.3904 5.69 10.3904 6.17 10.1004 6.46L4.56043 12L10.1004 17.54C10.3904 17.83 10.3904 18.31 10.1004 18.6C9.96043 18.75 9.76043 18.82 9.57043 18.82Z" fill="currentColor"/>\n<path d="M20.4999 12.75H3.66992C3.25992 12.75 2.91992 12.41 2.91992 12C2.91992 11.59 3.25992 11.25 3.66992 11.25H20.4999C20.9099 11.25 21.2499 11.59 21.2499 12C21.2499 12.41 20.9099 12.75 20.4999 12.75Z" fill="currentColor"/>\n</svg>',
198
+ },
199
+ },
200
+ "carousel-navigation-arrow-right_rightIcon": {
201
+ kind: "icon",
202
+ data: {
203
+ id: "arrow-right-1",
204
+ label: "Arrow Right 1",
205
+ tags: ["arrow", "custom", "directional", "right"],
206
+ svgCode:
207
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M14.4301 18.82C14.2401 18.82 14.0501 18.75 13.9001 18.6C13.6101 18.31 13.6101 17.83 13.9001 17.54L19.4401 12L13.9001 6.46C13.6101 6.17 13.6101 5.69 13.9001 5.4C14.1901 5.11 14.6701 5.11 14.9601 5.4L21.0301 11.47C21.3201 11.76 21.3201 12.24 21.0301 12.53L14.9601 18.6C14.8101 18.75 14.6201 18.82 14.4301 18.82Z" fill="currentColor"/>\n<path d="M20.33 12.75H3.5C3.09 12.75 2.75 12.41 2.75 12C2.75 11.25 3.5 11.25H20.33C20.74 11.25 21.08 11.59 21.08 12C21.08 12.41 20.74 12.75 20.33 12.75Z" fill="currentColor"/>\n</svg>',
208
+ },
209
+ },
210
+ "carousel-navigation-arrow-left-side_leftIcon": {
211
+ kind: "icon",
212
+ data: {
213
+ id: "arrow-left",
214
+ label: "Arrow Left",
215
+ tags: ["arrow", "custom", "directional", "left"],
216
+ svgCode:
217
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M9.57043 18.82C9.38043 18.82 9.19043 18.75 9.04043 18.6L2.97043 12.53C2.68043 12.24 2.68043 11.76 2.97043 11.47L9.04043 5.4C9.33043 5.11 9.81043 5.11 10.1004 5.4C10.3904 5.69 10.3904 6.17 10.1004 6.46L4.56043 12L10.1004 17.54C10.3904 17.83 10.3904 18.31 10.1004 18.6C9.96043 18.75 9.76043 18.82 9.57043 18.82Z" fill="currentColor"/>\n<path d="M20.4999 12.75H3.66992C3.25992 12.75 2.91992 12.41 2.91992 12C2.91992 11.59 3.25992 11.25 3.66992 11.25H20.4999C20.9099 11.25 21.2499 11.59 21.2499 12C21.2499 12.41 20.9099 12.75 20.4999 12.75Z" fill="currentColor"/>\n</svg>',
218
+ },
219
+ },
220
+ "carousel-navigation-arrow-right-side_rightIcon": {
221
+ kind: "icon",
222
+ data: {
223
+ id: "arrow-right-1",
224
+ label: "Arrow Right 1",
225
+ tags: ["arrow", "custom", "directional", "right"],
226
+ svgCode:
227
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M14.4301 18.82C14.2401 18.82 14.0501 18.75 13.9001 18.6C13.6101 18.31 13.6101 17.83 13.9001 17.54L19.4401 12L13.9001 6.46C13.6101 6.17 13.6101 5.69 13.9001 5.4C14.1901 5.11 14.6701 5.11 14.9601 5.4L21.0301 11.47C21.3201 11.76 21.3201 12.24 21.0301 12.53L14.9601 18.6C14.8101 18.75 14.6201 18.82 14.4301 18.82Z" fill="currentColor"/>\n<path d="M20.33 12.75H3.5C3.09 12.75 2.75 12.41 2.75 12C2.75 11.59 3.09 11.25 3.5 11.25H20.33C20.74 11.25 21.08 11.59 21.08 12C21.08 12.41 20.74 12.75 20.33 12.75Z" fill="currentColor"/>\n</svg>',
228
+ },
229
+ },
230
+ "carousel-navigation-arrow-left-bottom_leftIcon": {
231
+ kind: "icon",
232
+ data: {
233
+ id: "arrow-left",
234
+ label: "Arrow Left",
235
+ tags: ["arrow", "custom", "directional", "left"],
236
+ svgCode:
237
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M9.57043 18.82C9.38043 18.82 9.19043 18.75 9.04043 18.6L2.97043 12.53C2.68043 12.24 2.68043 11.76 2.97043 11.47L9.04043 5.4C9.33043 5.11 9.81043 5.11 10.1004 5.4C10.3904 5.69 10.3904 6.17 10.1004 6.46L4.56043 12L10.1004 17.54C10.3904 17.83 10.3904 18.31 10.1004 18.6C9.96043 18.75 9.76043 18.82 9.57043 18.82Z" fill="currentColor"/>\n<path d="M20.4999 12.75H3.66992C3.25992 12.75 2.91992 12.41 2.91992 12C2.91992 11.59 3.25992 11.25 3.66992 11.25H20.4999C20.9099 11.25 21.2499 11.59 21.2499 12C21.2499 12.41 20.9099 12.75 20.4999 12.75Z" fill="currentColor"/>\n</svg>',
238
+ },
239
+ },
240
+ "carousel-navigation-arrow-right-bottom_rightIcon": {
241
+ kind: "icon",
242
+ data: {
243
+ id: "arrow-right-1",
244
+ label: "Arrow Right 1",
245
+ tags: ["arrow", "custom", "directional", "right"],
246
+ svgCode:
247
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M14.4301 18.82C14.2401 18.82 14.0501 18.75 13.9001 18.6C13.6101 18.31 13.6101 17.83 13.9001 17.54L19.4401 12L13.9001 6.46C13.6101 6.17 13.6101 5.69 13.9001 5.4C14.1901 5.11 14.6701 5.11 14.9601 5.4L21.0301 11.47C21.3201 11.76 21.3201 12.24 21.0301 12.53L14.9601 18.6C14.8101 18.75 14.6201 18.82 14.4301 18.82Z" fill="currentColor"/>\n<path d="M20.33 12.75H3.5C3.09 12.75 2.75 12.41 2.75 12C2.75 11.59 3.09 11.25 3.5 11.25H20.33C20.74 11.25 21.08 11.59 21.08 12C21.08 12.41 20.74 12.75 20.33 12.75Z" fill="currentColor"/>\n</svg>',
248
+ },
249
+ },
250
+ };
251
+
252
+ export type ITestimonial6Content = typeof DEFAULT_CONTENT;
253
+
254
+ export const Testimonial6: IBlock = {
255
+ category_id: "testimonial",
256
+ title: "Testimonial 6",
257
+ key: "testimonial-6",
258
+ version: "v1",
259
+ prompt_description:
260
+ "A two-column testimonial carousel with quote icon on left and testimonial content with navigation on right",
261
+ content_schema: [
262
+ {
263
+ key: "layout",
264
+ label: "Layout",
265
+ field_interface: "LayoutWidget",
266
+ },
267
+ {
268
+ key: "container",
269
+ label: "Container",
270
+ field_interface: "ContainerWidget",
271
+ },
272
+ {
273
+ key: "carousel-container",
274
+ label: "Carousel Container",
275
+ field_interface: "BoxWidget",
276
+ },
277
+ {
278
+ key: "carousel-navigation",
279
+ label: "Carousel Navigation",
280
+ field_interface: "BoxWidget",
281
+ },
282
+ {
283
+ key: "carousel-navigation-arrow-left",
284
+ label: "Carousel Navigation Arrow Left",
285
+ field_interface: "ButtonWidget",
286
+ },
287
+ {
288
+ key: "carousel-navigation-arrow-right",
289
+ label: "Carousel Navigation Arrow Right",
290
+ field_interface: "ButtonWidget",
291
+ },
292
+ {
293
+ key: "carousel-navigation-arrow-left-side",
294
+ label: "Carousel Navigation Arrow Left Side",
295
+ field_interface: "ButtonWidget",
296
+ },
297
+ {
298
+ key: "carousel-navigation-arrow-right-side",
299
+ label: "Carousel Navigation Arrow Right Side",
300
+ field_interface: "ButtonWidget",
301
+ },
302
+ {
303
+ key: "carousel-navigation-bottom-container",
304
+ label: "Carousel Navigation Bottom Container",
305
+ field_interface: "BoxWidget",
306
+ },
307
+ {
308
+ key: "carousel-navigation-arrow-left-bottom",
309
+ label: "Carousel Navigation Arrow Left Bottom",
310
+ field_interface: "ButtonWidget",
311
+ },
312
+ {
313
+ key: "carousel-navigation-arrow-right-bottom",
314
+ label: "Carousel Navigation Arrow Right Bottom",
315
+ field_interface: "ButtonWidget",
316
+ },
317
+ {
318
+ key: "testimonials",
319
+ label: "Testimonials",
320
+ field_interface: "CarouselWidget",
321
+ kind: "group",
322
+ fields: [
323
+ {
324
+ key: "testimonial",
325
+ label: "Testimonial",
326
+ field_interface: "BoxWidget",
327
+ },
328
+ {
329
+ key: "icon-container",
330
+ label: "Icon Container",
331
+ field_interface: "BoxWidget",
332
+ },
333
+ {
334
+ key: "icon",
335
+ label: "Quote Icon",
336
+ field_interface: "IconWidget",
337
+ },
338
+ {
339
+ key: "content-container",
340
+ label: "Content Container",
341
+ field_interface: "BoxWidget",
342
+ },
343
+ {
344
+ key: "testimonial-content",
345
+ label: "Testimonial Content",
346
+ field_interface: "BoxWidget",
347
+ },
348
+ {
349
+ key: "testimonial-text",
350
+ label: "Testimonial Text",
351
+ field_interface: "TypographyWidget",
352
+ },
353
+ {
354
+ key: "bottom-section",
355
+ label: "Bottom Section",
356
+ field_interface: "BoxWidget",
357
+ },
358
+ {
359
+ key: "author-section",
360
+ label: "Author Section",
361
+ field_interface: "BoxWidget",
362
+ },
363
+ {
364
+ key: "author-info",
365
+ label: "Author Info",
366
+ field_interface: "BoxWidget",
367
+ },
368
+ {
369
+ key: "author-name",
370
+ label: "Author Name",
371
+ field_interface: "TypographyWidget",
372
+ },
373
+ {
374
+ key: "author-position",
375
+ label: "Author Position",
376
+ field_interface: "TypographyWidget",
377
+ },
378
+ {
379
+ key: "author-avatar",
380
+ label: "Author Avatar",
381
+ field_interface: "IconWidget",
382
+ },
383
+ ],
384
+ },
385
+ ],
386
+ layouts: [
387
+ {
388
+ key: "default",
389
+ title: "Default",
390
+ styles: {
391
+ layout: {
392
+ "padding-top": "3xl",
393
+ "padding-bottom": "3xl",
394
+ },
395
+ container: {
396
+ "margin-left": "auto",
397
+ "margin-right": "auto",
398
+ },
399
+ testimonials_levoGroup: {
400
+ number_of_slides: 1,
401
+ },
402
+ testimonials: [
403
+ {
404
+ testimonial: {
405
+ display: "flex",
406
+ "align-items": "flex-start",
407
+ "column-gap": "2xl",
408
+ "border-radius": "xl",
409
+ "padding-top": "2xl",
410
+ "padding-bottom": "2xl",
411
+ "padding-left": "2xl",
412
+ "padding-right": "2xl",
413
+ "margin-left": "auto",
414
+ "margin-right": "auto",
415
+ "max-width": "100%",
416
+ mobile: {
417
+ "flex-direction": "column",
418
+ "row-gap": "base",
419
+ },
420
+ },
421
+ "icon-container": {
422
+ "flex-shrink": "0",
423
+ display: "flex",
424
+ "align-items": "flex-start",
425
+ "justify-content": "center",
426
+ "padding-top": "xs",
427
+ },
428
+ icon: {
429
+ width: "48px",
430
+ height: "48px",
431
+ "object-fit": "contain",
432
+ },
433
+ "content-container": {
434
+ flex: "1",
435
+ display: "flex",
436
+ "flex-direction": "column",
437
+ "justify-content": "space-between",
438
+ "min-height": "200px",
439
+ },
440
+ "testimonial-content": {
441
+ "margin-bottom": "2xl",
442
+ },
443
+ "testimonial-text": {
444
+ "font-size": "xl",
445
+ "line-height": "1.6",
446
+ color: "text-1",
447
+ "font-weight": "400",
448
+ },
449
+ "bottom-section": {
450
+ display: "flex",
451
+ "justify-content": "space-between",
452
+ "align-items": "center",
453
+ mobile: {
454
+ "flex-direction": "column",
455
+ "row-gap": "2xl",
456
+ },
457
+ },
458
+ "author-section": {
459
+ display: "flex",
460
+ "align-items": "center",
461
+ "column-gap": "base",
462
+ },
463
+ "author-info": {
464
+ display: "flex",
465
+ "flex-direction": "column",
466
+ "align-items": "flex-start",
467
+ },
468
+ "author-name": {
469
+ "font-size": "lg",
470
+ "font-weight": "600",
471
+ color: "text-1",
472
+ "margin-bottom": "xs",
473
+ },
474
+ "author-position": {
475
+ "font-size": "sm",
476
+ color: "text-2",
477
+ "font-weight": "400",
478
+ },
479
+ "author-avatar": {
480
+ width: "48px",
481
+ height: "48px",
482
+ "border-radius": "base",
483
+ "object-fit": "cover",
484
+ },
485
+ },
486
+ {
487
+ testimonial: {
488
+ display: "flex",
489
+ "align-items": "flex-start",
490
+ "column-gap": "2xl",
491
+ "border-radius": "xl",
492
+ "padding-top": "2xl",
493
+ "padding-bottom": "2xl",
494
+ "padding-left": "2xl",
495
+ "padding-right": "2xl",
496
+ "margin-left": "auto",
497
+ "margin-right": "auto",
498
+ "max-width": "100%",
499
+ mobile: {
500
+ "flex-direction": "column",
501
+ "row-gap": "base",
502
+ },
503
+ },
504
+ "icon-container": {
505
+ "flex-shrink": "0",
506
+ display: "flex",
507
+ "align-items": "flex-start",
508
+ "justify-content": "center",
509
+ "padding-top": "xs",
510
+ },
511
+ icon: {
512
+ width: "48px",
513
+ height: "48px",
514
+ "object-fit": "contain",
515
+ },
516
+ "content-container": {
517
+ flex: "1",
518
+ display: "flex",
519
+ "flex-direction": "column",
520
+ "justify-content": "space-between",
521
+ "min-height": "200px",
522
+ },
523
+ "testimonial-content": {
524
+ "margin-bottom": "2xl",
525
+ },
526
+ "testimonial-text": {
527
+ "font-size": "xl",
528
+ "line-height": "1.6",
529
+ color: "text-1",
530
+ "font-weight": "400",
531
+ },
532
+ "bottom-section": {
533
+ display: "flex",
534
+ "justify-content": "space-between",
535
+ "align-items": "center",
536
+ mobile: {
537
+ "flex-direction": "column",
538
+ "row-gap": "2xl",
539
+ },
540
+ },
541
+ "author-section": {
542
+ display: "flex",
543
+ "align-items": "center",
544
+ "column-gap": "base",
545
+ },
546
+ "author-info": {
547
+ display: "flex",
548
+ "flex-direction": "column",
549
+ "align-items": "flex-start",
550
+ },
551
+ "author-name": {
552
+ "font-size": "lg",
553
+ "font-weight": "600",
554
+ color: "text-1",
555
+ "margin-bottom": "xs",
556
+ },
557
+ "author-position": {
558
+ "font-size": "sm",
559
+ color: "text-2",
560
+ "font-weight": "400",
561
+ },
562
+ "author-avatar": {
563
+ width: "48px",
564
+ height: "48px",
565
+ "border-radius": "base",
566
+ "object-fit": "cover",
567
+ },
568
+ },
569
+ {
570
+ testimonial: {
571
+ display: "flex",
572
+ "align-items": "flex-start",
573
+ "column-gap": "2xl",
574
+ "border-radius": "xl",
575
+ "padding-top": "2xl",
576
+ "padding-bottom": "2xl",
577
+ "padding-left": "2xl",
578
+ "padding-right": "2xl",
579
+ "margin-left": "auto",
580
+ "margin-right": "auto",
581
+ "max-width": "100%",
582
+ mobile: {
583
+ "flex-direction": "column",
584
+ "row-gap": "base",
585
+ },
586
+ },
587
+ "icon-container": {
588
+ "flex-shrink": "0",
589
+ display: "flex",
590
+ "align-items": "flex-start",
591
+ "justify-content": "center",
592
+ "padding-top": "xs",
593
+ },
594
+ icon: {
595
+ width: "48px",
596
+ height: "48px",
597
+ "object-fit": "contain",
598
+ },
599
+ "content-container": {
600
+ flex: "1",
601
+ display: "flex",
602
+ "flex-direction": "column",
603
+ "justify-content": "space-between",
604
+ "min-height": "200px",
605
+ },
606
+ "testimonial-content": {
607
+ "margin-bottom": "2xl",
608
+ },
609
+ "testimonial-text": {
610
+ "font-size": "xl",
611
+ "line-height": "1.6",
612
+ color: "text-1",
613
+ "font-weight": "400",
614
+ },
615
+ "bottom-section": {
616
+ display: "flex",
617
+ "justify-content": "space-between",
618
+ "align-items": "center",
619
+ mobile: {
620
+ "flex-direction": "column",
621
+ "row-gap": "2xl",
622
+ },
623
+ },
624
+ "author-section": {
625
+ display: "flex",
626
+ "align-items": "center",
627
+ "column-gap": "base",
628
+ },
629
+ "author-info": {
630
+ display: "flex",
631
+ "flex-direction": "column",
632
+ "align-items": "flex-start",
633
+ },
634
+ "author-name": {
635
+ "font-size": "lg",
636
+ "font-weight": "600",
637
+ color: "text-1",
638
+ "margin-bottom": "xs",
639
+ },
640
+ "author-position": {
641
+ "font-size": "sm",
642
+ color: "text-2",
643
+ "font-weight": "400",
644
+ },
645
+ "author-avatar": {
646
+ width: "48px",
647
+ height: "48px",
648
+ "border-radius": "base",
649
+ "object-fit": "cover",
650
+ },
651
+ },
652
+ {
653
+ testimonial: {
654
+ display: "flex",
655
+ "align-items": "flex-start",
656
+ "column-gap": "2xl",
657
+ "border-radius": "xl",
658
+ "padding-top": "2xl",
659
+ "padding-bottom": "2xl",
660
+ "padding-left": "2xl",
661
+ "padding-right": "2xl",
662
+ "margin-left": "auto",
663
+ "margin-right": "auto",
664
+ "max-width": "100%",
665
+ },
666
+ "icon-container": {
667
+ "flex-shrink": "0",
668
+ display: "flex",
669
+ "align-items": "flex-start",
670
+ "justify-content": "center",
671
+ "padding-top": "xs",
672
+ },
673
+ icon: {
674
+ width: "48px",
675
+ height: "48px",
676
+ },
677
+ "content-container": {
678
+ flex: "1",
679
+ display: "flex",
680
+ "flex-direction": "column",
681
+ "justify-content": "space-between",
682
+ "min-height": "200px",
683
+ },
684
+ "testimonial-content": {
685
+ "margin-bottom": "2xl",
686
+ },
687
+ "testimonial-text": {
688
+ "font-size": "xl",
689
+ "line-height": "1.6",
690
+ color: "text-1",
691
+ "font-weight": "400",
692
+ },
693
+ "bottom-section": {
694
+ display: "flex",
695
+ "justify-content": "flex-start",
696
+ "align-items": "center",
697
+ },
698
+ "author-section": {
699
+ display: "flex",
700
+ "align-items": "center",
701
+ "column-gap": "base",
702
+ },
703
+ "author-info": {
704
+ display: "flex",
705
+ "flex-direction": "column",
706
+ "align-items": "flex-start",
707
+ },
708
+ "author-name": {
709
+ "font-size": "lg",
710
+ "font-weight": "600",
711
+ color: "text-1",
712
+ "margin-bottom": "xs",
713
+ },
714
+ "author-position": {
715
+ "font-size": "sm",
716
+ color: "text-2",
717
+ "font-weight": "400",
718
+ },
719
+ "author-avatar": {
720
+ width: "48px",
721
+ height: "48px",
722
+ "border-radius": "base",
723
+ "object-fit": "cover",
724
+ },
725
+ },
726
+ {
727
+ testimonial: {
728
+ display: "flex",
729
+ "align-items": "flex-start",
730
+ "column-gap": "2xl",
731
+ "border-radius": "xl",
732
+ "padding-top": "2xl",
733
+ "padding-bottom": "2xl",
734
+ "padding-left": "2xl",
735
+ "padding-right": "2xl",
736
+ "margin-left": "auto",
737
+ "margin-right": "auto",
738
+ "max-width": "100%",
739
+ },
740
+ "icon-container": {
741
+ "flex-shrink": "0",
742
+ display: "flex",
743
+ "align-items": "flex-start",
744
+ "justify-content": "center",
745
+ "padding-top": "xs",
746
+ },
747
+ icon: {
748
+ width: "48px",
749
+ height: "48px",
750
+ },
751
+ "content-container": {
752
+ flex: "1",
753
+ display: "flex",
754
+ "flex-direction": "column",
755
+ "justify-content": "space-between",
756
+ "min-height": "200px",
757
+ },
758
+ "testimonial-content": {
759
+ "margin-bottom": "2xl",
760
+ },
761
+ "testimonial-text": {
762
+ "font-size": "xl",
763
+ "line-height": "1.6",
764
+ color: "text-1",
765
+ "font-weight": "400",
766
+ },
767
+ "bottom-section": {
768
+ display: "flex",
769
+ "justify-content": "flex-start",
770
+ "align-items": "center",
771
+ },
772
+ "author-section": {
773
+ display: "flex",
774
+ "align-items": "center",
775
+ "column-gap": "base",
776
+ },
777
+ "author-info": {
778
+ display: "flex",
779
+ "flex-direction": "column",
780
+ "align-items": "flex-start",
781
+ },
782
+ "author-name": {
783
+ "font-size": "lg",
784
+ "font-weight": "600",
785
+ color: "text-1",
786
+ "margin-bottom": "xs",
787
+ },
788
+ "author-position": {
789
+ "font-size": "sm",
790
+ color: "text-2",
791
+ "font-weight": "400",
792
+ },
793
+ "author-avatar": {
794
+ width: "48px",
795
+ height: "48px",
796
+ "border-radius": "base",
797
+ "object-fit": "cover",
798
+ },
799
+ },
800
+ ],
801
+ "carousel-navigation": {
802
+ display: "flex",
803
+ "column-gap": "sm",
804
+ "align-items": "center",
805
+ },
806
+ "carousel-navigation-arrow-left": {
807
+ "border-color": "border",
808
+ "border-width": "1px",
809
+ "border-radius": "50%",
810
+ width: "48px",
811
+ height: "48px",
812
+ display: "flex",
813
+ "align-items": "center",
814
+ "justify-content": "center",
815
+ cursor: "pointer",
816
+ "box-shadow": "sm",
817
+ "padding-left": "none",
818
+ "padding-top": "none",
819
+ "padding-right": "none",
820
+ "padding-bottom": "none",
821
+ },
822
+ "carousel-navigation-arrow-right": {
823
+ "border-color": "border",
824
+ "border-width": "1px",
825
+ "border-radius": "50%",
826
+ width: "48px",
827
+ height: "48px",
828
+ display: "flex",
829
+ "align-items": "center",
830
+ "justify-content": "center",
831
+ cursor: "pointer",
832
+ "box-shadow": "sm",
833
+ "padding-top": "none",
834
+ "padding-right": "none",
835
+ "padding-left": "none",
836
+ "padding-bottom": "none",
837
+ },
838
+ "carousel-navigation-arrow-left_leftIcon": {
839
+ height: "24px",
840
+ width: "24px",
841
+ "font-size": "24px",
842
+ },
843
+ "carousel-navigation-arrow-right_rightIcon": {
844
+ height: "24px",
845
+ width: "24px",
846
+ "font-size": "24px",
847
+ },
848
+ mobile: {
849
+ layout: {
850
+ "padding-top": "2xl",
851
+ "padding-bottom": "2xl",
852
+ "padding-left": "base",
853
+ "padding-right": "base",
854
+ },
855
+ testimonials: [
856
+ {
857
+ testimonial: {
858
+ "flex-direction": "column",
859
+ "align-items": "center",
860
+ "column-gap": "none",
861
+ "row-gap": "lg",
862
+ "padding-top": "xl",
863
+ "padding-bottom": "xl",
864
+ "padding-left": "lg",
865
+ "padding-right": "lg",
866
+ },
867
+ "icon-container": {
868
+ "padding-top": "none",
869
+ },
870
+ "content-container": {
871
+ "min-height": "auto",
872
+ "text-align": "center",
873
+ },
874
+ "testimonial-text": {
875
+ "font-size": "base",
876
+ },
877
+ "bottom-section": {
878
+ "flex-direction": "column",
879
+ "align-items": "center",
880
+ "row-gap": "base",
881
+ },
882
+ "author-section": {
883
+ "flex-direction": "column",
884
+ "align-items": "center",
885
+ "row-gap": "xs",
886
+ },
887
+ "author-info": {
888
+ "align-items": "center",
889
+ "text-align": "center",
890
+ },
891
+ "author-avatar": {
892
+ width: "40px",
893
+ height: "40px",
894
+ },
895
+ },
896
+ {
897
+ testimonial: {
898
+ "flex-direction": "column",
899
+ "align-items": "center",
900
+ "column-gap": "none",
901
+ "row-gap": "lg",
902
+ "padding-top": "xl",
903
+ "padding-bottom": "xl",
904
+ "padding-left": "lg",
905
+ "padding-right": "lg",
906
+ },
907
+ "icon-container": {
908
+ "padding-top": "none",
909
+ },
910
+ "content-container": {
911
+ "min-height": "auto",
912
+ "text-align": "center",
913
+ },
914
+ "testimonial-text": {
915
+ "font-size": "base",
916
+ },
917
+ "bottom-section": {
918
+ "flex-direction": "column",
919
+ "align-items": "center",
920
+ "row-gap": "base",
921
+ },
922
+ "author-section": {
923
+ "flex-direction": "column",
924
+ "align-items": "center",
925
+ "row-gap": "xs",
926
+ },
927
+ "author-info": {
928
+ "align-items": "center",
929
+ "text-align": "center",
930
+ },
931
+ "author-avatar": {
932
+ width: "40px",
933
+ height: "40px",
934
+ },
935
+ },
936
+ {
937
+ testimonial: {
938
+ "flex-direction": "column",
939
+ "align-items": "center",
940
+ "column-gap": "none",
941
+ "row-gap": "lg",
942
+ "padding-top": "xl",
943
+ "padding-bottom": "xl",
944
+ "padding-left": "lg",
945
+ "padding-right": "lg",
946
+ },
947
+ "icon-container": {
948
+ "padding-top": "none",
949
+ },
950
+ "content-container": {
951
+ "min-height": "auto",
952
+ "text-align": "center",
953
+ },
954
+ "testimonial-text": {
955
+ "font-size": "base",
956
+ },
957
+ "bottom-section": {
958
+ "flex-direction": "column",
959
+ "align-items": "center",
960
+ "row-gap": "base",
961
+ },
962
+ "author-section": {
963
+ "flex-direction": "column",
964
+ "align-items": "center",
965
+ "row-gap": "xs",
966
+ },
967
+ "author-info": {
968
+ "align-items": "center",
969
+ "text-align": "center",
970
+ },
971
+ "author-avatar": {
972
+ width: "40px",
973
+ height: "40px",
974
+ },
975
+ },
976
+ ],
977
+ "carousel-navigation-arrow-left": {
978
+ width: "40px",
979
+ height: "40px",
980
+ },
981
+ "carousel-navigation-arrow-right": {
982
+ width: "40px",
983
+ height: "40px",
984
+ },
985
+ },
986
+ tablet: {
987
+ layout: {
988
+ "padding-top": "2xl",
989
+ "padding-bottom": "2xl",
990
+ "padding-left": "base",
991
+ "padding-right": "base",
992
+ },
993
+ testimonials: [
994
+ {
995
+ testimonial: {
996
+ "column-gap": "xl",
997
+ "padding-top": "xl",
998
+ "padding-bottom": "xl",
999
+ "padding-left": "xl",
1000
+ "padding-right": "xl",
1001
+ },
1002
+ "content-container": {
1003
+ "min-height": "150px",
1004
+ },
1005
+ },
1006
+ {
1007
+ testimonial: {
1008
+ "column-gap": "xl",
1009
+ "padding-top": "xl",
1010
+ "padding-bottom": "xl",
1011
+ "padding-left": "xl",
1012
+ "padding-right": "xl",
1013
+ },
1014
+ "content-container": {
1015
+ "min-height": "150px",
1016
+ },
1017
+ },
1018
+ {
1019
+ testimonial: {
1020
+ "column-gap": "xl",
1021
+ "padding-top": "xl",
1022
+ "padding-bottom": "xl",
1023
+ "padding-left": "xl",
1024
+ "padding-right": "xl",
1025
+ },
1026
+ "content-container": {
1027
+ "min-height": "150px",
1028
+ },
1029
+ },
1030
+ ],
1031
+ },
1032
+ "carousel-navigation-arrow-left-side": {
1033
+ display: "none",
1034
+ },
1035
+ "carousel-navigation-arrow-right-side": {
1036
+ display: "none",
1037
+ },
1038
+ "carousel-navigation-bottom-container": {
1039
+ display: "none",
1040
+ },
1041
+ "carousel-navigation-arrow-left-bottom": {
1042
+ display: "none",
1043
+ },
1044
+ "carousel-navigation-arrow-right-bottom": {
1045
+ display: "none",
1046
+ },
1047
+ },
1048
+ content: DEFAULT_CONTENT,
1049
+ config: {
1050
+ testimonials_levoGroup: {
1051
+ carousel: {
1052
+ loop: true,
1053
+ },
1054
+ },
1055
+ "carousel-navigation-arrow-left": {
1056
+ button_icons: {
1057
+ left: {
1058
+ enabled: true,
1059
+ },
1060
+ },
1061
+ },
1062
+ "carousel-navigation-arrow-right": {
1063
+ button_icons: {
1064
+ right: {
1065
+ enabled: true,
1066
+ },
1067
+ },
1068
+ },
1069
+ },
1070
+ },
1071
+ {
1072
+ key: "side-navigation",
1073
+ title: "Side Navigation",
1074
+ styles: {
1075
+ layout: {
1076
+ "padding-top": "3xl",
1077
+ "padding-bottom": "3xl",
1078
+ },
1079
+ container: {
1080
+ "margin-left": "auto",
1081
+ "margin-right": "auto",
1082
+ },
1083
+ "carousel-container": {
1084
+ display: "flex",
1085
+ "align-items": "center",
1086
+ "column-gap": "xl",
1087
+ },
1088
+ testimonials_levoGroup: {
1089
+ number_of_slides: 1,
1090
+ flex: "1",
1091
+ },
1092
+ testimonials: [
1093
+ {
1094
+ testimonial: {
1095
+ display: "flex",
1096
+ "align-items": "flex-start",
1097
+ "column-gap": "2xl",
1098
+ "border-radius": "xl",
1099
+ "padding-top": "2xl",
1100
+ "padding-bottom": "2xl",
1101
+ "padding-left": "2xl",
1102
+ "padding-right": "2xl",
1103
+ "margin-left": "auto",
1104
+ "margin-right": "auto",
1105
+ "max-width": "100%",
1106
+ },
1107
+ "icon-container": {
1108
+ "flex-shrink": "0",
1109
+ display: "flex",
1110
+ "align-items": "flex-start",
1111
+ "justify-content": "center",
1112
+ "padding-top": "xs",
1113
+ },
1114
+ icon: {
1115
+ width: "48px",
1116
+ height: "48px",
1117
+ },
1118
+ "content-container": {
1119
+ flex: "1",
1120
+ display: "flex",
1121
+ "flex-direction": "column",
1122
+ "justify-content": "space-between",
1123
+ "min-height": "200px",
1124
+ },
1125
+ "testimonial-content": {
1126
+ "margin-bottom": "2xl",
1127
+ },
1128
+ "testimonial-text": {
1129
+ "font-size": "xl",
1130
+ "line-height": "1.6",
1131
+ color: "text-1",
1132
+ "font-weight": "400",
1133
+ },
1134
+ "bottom-section": {
1135
+ display: "flex",
1136
+ "justify-content": "flex-start",
1137
+ "align-items": "center",
1138
+ },
1139
+ "author-section": {
1140
+ display: "flex",
1141
+ "align-items": "center",
1142
+ "column-gap": "base",
1143
+ },
1144
+ "author-info": {
1145
+ display: "flex",
1146
+ "flex-direction": "column",
1147
+ "align-items": "flex-start",
1148
+ },
1149
+ "author-name": {
1150
+ "font-size": "lg",
1151
+ "font-weight": "600",
1152
+ color: "text-1",
1153
+ "margin-bottom": "xs",
1154
+ },
1155
+ "author-position": {
1156
+ "font-size": "sm",
1157
+ color: "text-2",
1158
+ "font-weight": "400",
1159
+ },
1160
+ "author-avatar": {
1161
+ width: "48px",
1162
+ height: "48px",
1163
+ "border-radius": "base",
1164
+ "object-fit": "cover",
1165
+ },
1166
+ },
1167
+ {
1168
+ testimonial: {
1169
+ display: "flex",
1170
+ "align-items": "flex-start",
1171
+ "column-gap": "2xl",
1172
+ "border-radius": "xl",
1173
+ "padding-top": "2xl",
1174
+ "padding-bottom": "2xl",
1175
+ "padding-left": "2xl",
1176
+ "padding-right": "2xl",
1177
+ "margin-left": "auto",
1178
+ "margin-right": "auto",
1179
+ "max-width": "100%",
1180
+ },
1181
+ "icon-container": {
1182
+ "flex-shrink": "0",
1183
+ display: "flex",
1184
+ "align-items": "flex-start",
1185
+ "justify-content": "center",
1186
+ "padding-top": "xs",
1187
+ },
1188
+ icon: {
1189
+ width: "48px",
1190
+ height: "48px",
1191
+ },
1192
+ "content-container": {
1193
+ flex: "1",
1194
+ display: "flex",
1195
+ "flex-direction": "column",
1196
+ "justify-content": "space-between",
1197
+ "min-height": "200px",
1198
+ },
1199
+ "testimonial-content": {
1200
+ "margin-bottom": "2xl",
1201
+ },
1202
+ "testimonial-text": {
1203
+ "font-size": "xl",
1204
+ "line-height": "1.6",
1205
+ color: "text-1",
1206
+ "font-weight": "400",
1207
+ },
1208
+ "bottom-section": {
1209
+ display: "flex",
1210
+ "justify-content": "flex-start",
1211
+ "align-items": "center",
1212
+ },
1213
+ "author-section": {
1214
+ display: "flex",
1215
+ "align-items": "center",
1216
+ "column-gap": "base",
1217
+ },
1218
+ "author-info": {
1219
+ display: "flex",
1220
+ "flex-direction": "column",
1221
+ "align-items": "flex-start",
1222
+ },
1223
+ "author-name": {
1224
+ "font-size": "lg",
1225
+ "font-weight": "600",
1226
+ color: "text-1",
1227
+ "margin-bottom": "xs",
1228
+ },
1229
+ "author-position": {
1230
+ "font-size": "sm",
1231
+ color: "text-2",
1232
+ "font-weight": "400",
1233
+ },
1234
+ "author-avatar": {
1235
+ width: "48px",
1236
+ height: "48px",
1237
+ "border-radius": "base",
1238
+ "object-fit": "cover",
1239
+ },
1240
+ },
1241
+ {
1242
+ testimonial: {
1243
+ display: "flex",
1244
+ "align-items": "flex-start",
1245
+ "column-gap": "2xl",
1246
+ "border-radius": "xl",
1247
+ "padding-top": "2xl",
1248
+ "padding-bottom": "2xl",
1249
+ "padding-left": "2xl",
1250
+ "padding-right": "2xl",
1251
+ "margin-left": "auto",
1252
+ "margin-right": "auto",
1253
+ "max-width": "100%",
1254
+ },
1255
+ "icon-container": {
1256
+ "flex-shrink": "0",
1257
+ display: "flex",
1258
+ "align-items": "flex-start",
1259
+ "justify-content": "center",
1260
+ "padding-top": "xs",
1261
+ },
1262
+ icon: {
1263
+ width: "48px",
1264
+ height: "48px",
1265
+ },
1266
+ "content-container": {
1267
+ flex: "1",
1268
+ display: "flex",
1269
+ "flex-direction": "column",
1270
+ "justify-content": "space-between",
1271
+ "min-height": "200px",
1272
+ },
1273
+ "testimonial-content": {
1274
+ "margin-bottom": "2xl",
1275
+ },
1276
+ "testimonial-text": {
1277
+ "font-size": "xl",
1278
+ "line-height": "1.6",
1279
+ color: "text-1",
1280
+ "font-weight": "400",
1281
+ },
1282
+ "bottom-section": {
1283
+ display: "flex",
1284
+ "justify-content": "flex-start",
1285
+ "align-items": "center",
1286
+ },
1287
+ "author-section": {
1288
+ display: "flex",
1289
+ "align-items": "center",
1290
+ "column-gap": "base",
1291
+ },
1292
+ "author-info": {
1293
+ display: "flex",
1294
+ "flex-direction": "column",
1295
+ "align-items": "flex-start",
1296
+ },
1297
+ "author-name": {
1298
+ "font-size": "lg",
1299
+ "font-weight": "600",
1300
+ color: "text-1",
1301
+ "margin-bottom": "xs",
1302
+ },
1303
+ "author-position": {
1304
+ "font-size": "sm",
1305
+ color: "text-2",
1306
+ "font-weight": "400",
1307
+ },
1308
+ "author-avatar": {
1309
+ width: "48px",
1310
+ height: "48px",
1311
+ "border-radius": "base",
1312
+ "object-fit": "cover",
1313
+ },
1314
+ },
1315
+ ],
1316
+ "carousel-navigation": {
1317
+ display: "none",
1318
+ },
1319
+ "carousel-navigation-arrow-left": {
1320
+ display: "none",
1321
+ },
1322
+ "carousel-navigation-arrow-right": {
1323
+ display: "none",
1324
+ },
1325
+ "carousel-navigation-arrow-left-side": {
1326
+ "border-color": "border",
1327
+ "border-width": "1px",
1328
+ "border-radius": "50%",
1329
+ width: "48px",
1330
+ height: "48px",
1331
+ display: "flex",
1332
+ "align-items": "center",
1333
+ "justify-content": "center",
1334
+ cursor: "pointer",
1335
+ "box-shadow": "sm",
1336
+ "padding-left": "none",
1337
+ "padding-top": "none",
1338
+ "padding-right": "none",
1339
+ "padding-bottom": "none",
1340
+ "flex-shrink": "0",
1341
+ mobile: {
1342
+ display: "none",
1343
+ },
1344
+ tablet: {
1345
+ display: "none",
1346
+ },
1347
+ },
1348
+ "carousel-navigation-arrow-right-side": {
1349
+ "border-color": "border",
1350
+ "border-width": "1px",
1351
+ "border-radius": "50%",
1352
+ width: "48px",
1353
+ height: "48px",
1354
+ display: "flex",
1355
+ "align-items": "center",
1356
+ "justify-content": "center",
1357
+ cursor: "pointer",
1358
+ "box-shadow": "sm",
1359
+ "padding-top": "none",
1360
+ "padding-right": "none",
1361
+ "padding-left": "none",
1362
+ "padding-bottom": "none",
1363
+ "flex-shrink": "0",
1364
+ mobile: {
1365
+ display: "none",
1366
+ },
1367
+ tablet: {
1368
+ display: "none",
1369
+ },
1370
+ },
1371
+ "carousel-navigation-bottom-container": {
1372
+ display: "none",
1373
+ mobile: {
1374
+ display: "flex",
1375
+ "justify-content": "center",
1376
+ "align-items": "center",
1377
+ "column-gap": "sm",
1378
+ "padding-top": "lg",
1379
+ },
1380
+ tablet: {
1381
+ display: "flex",
1382
+ "justify-content": "center",
1383
+ "align-items": "center",
1384
+ "column-gap": "sm",
1385
+ "padding-top": "lg",
1386
+ },
1387
+ },
1388
+ "carousel-navigation-arrow-left-bottom": {
1389
+ "border-color": "border",
1390
+ "border-width": "1px",
1391
+ "border-radius": "50%",
1392
+ width: "48px",
1393
+ height: "48px",
1394
+ display: "flex",
1395
+ "align-items": "center",
1396
+ "justify-content": "center",
1397
+ cursor: "pointer",
1398
+ "box-shadow": "sm",
1399
+ "padding-left": "none",
1400
+ "padding-top": "none",
1401
+ "padding-right": "none",
1402
+ "padding-bottom": "none",
1403
+ mobile: {
1404
+ width: "40px",
1405
+ height: "40px",
1406
+ },
1407
+ },
1408
+ "carousel-navigation-arrow-right-bottom": {
1409
+ "border-color": "border",
1410
+ "border-width": "1px",
1411
+ "border-radius": "50%",
1412
+ width: "48px",
1413
+ height: "48px",
1414
+ display: "flex",
1415
+ "align-items": "center",
1416
+ "justify-content": "center",
1417
+ cursor: "pointer",
1418
+ "box-shadow": "sm",
1419
+ "padding-top": "none",
1420
+ "padding-right": "none",
1421
+ "padding-left": "none",
1422
+ "padding-bottom": "none",
1423
+ mobile: {
1424
+ width: "40px",
1425
+ height: "40px",
1426
+ },
1427
+ },
1428
+ "carousel-navigation-arrow-left-side_leftIcon": {
1429
+ height: "24px",
1430
+ width: "24px",
1431
+ "font-size": "24px",
1432
+ },
1433
+ "carousel-navigation-arrow-right-side_rightIcon": {
1434
+ height: "24px",
1435
+ width: "24px",
1436
+ "font-size": "24px",
1437
+ },
1438
+ "carousel-navigation-arrow-left-bottom_leftIcon": {
1439
+ height: "24px",
1440
+ width: "24px",
1441
+ "font-size": "24px",
1442
+ },
1443
+ "carousel-navigation-arrow-right-bottom_rightIcon": {
1444
+ height: "24px",
1445
+ width: "24px",
1446
+ "font-size": "24px",
1447
+ },
1448
+ mobile: {
1449
+ layout: {
1450
+ "padding-top": "2xl",
1451
+ "padding-bottom": "2xl",
1452
+ "padding-left": "base",
1453
+ "padding-right": "base",
1454
+ },
1455
+ "carousel-container": {
1456
+ "flex-direction": "column",
1457
+ "row-gap": "lg",
1458
+ "align-items": "center",
1459
+ },
1460
+ testimonials: [
1461
+ {
1462
+ testimonial: {
1463
+ "flex-direction": "column",
1464
+ "align-items": "center",
1465
+ "column-gap": "none",
1466
+ "row-gap": "lg",
1467
+ "padding-top": "xl",
1468
+ "padding-bottom": "xl",
1469
+ "padding-left": "lg",
1470
+ "padding-right": "lg",
1471
+ },
1472
+ "icon-container": {
1473
+ "padding-top": "none",
1474
+ },
1475
+ "content-container": {
1476
+ "min-height": "auto",
1477
+ "text-align": "center",
1478
+ },
1479
+ "testimonial-text": {
1480
+ "font-size": "base",
1481
+ },
1482
+ "bottom-section": {
1483
+ "flex-direction": "column",
1484
+ "align-items": "center",
1485
+ "row-gap": "base",
1486
+ },
1487
+ "author-section": {
1488
+ "flex-direction": "column",
1489
+ "align-items": "center",
1490
+ "row-gap": "xs",
1491
+ },
1492
+ "author-info": {
1493
+ "align-items": "center",
1494
+ "text-align": "center",
1495
+ },
1496
+ "author-avatar": {
1497
+ width: "40px",
1498
+ height: "40px",
1499
+ },
1500
+ },
1501
+ {
1502
+ testimonial: {
1503
+ "flex-direction": "column",
1504
+ "align-items": "center",
1505
+ "column-gap": "none",
1506
+ "row-gap": "lg",
1507
+ "padding-top": "xl",
1508
+ "padding-bottom": "xl",
1509
+ "padding-left": "lg",
1510
+ "padding-right": "lg",
1511
+ },
1512
+ "icon-container": {
1513
+ "padding-top": "none",
1514
+ },
1515
+ "content-container": {
1516
+ "min-height": "auto",
1517
+ "text-align": "center",
1518
+ },
1519
+ "testimonial-text": {
1520
+ "font-size": "base",
1521
+ },
1522
+ "bottom-section": {
1523
+ "flex-direction": "column",
1524
+ "align-items": "center",
1525
+ "row-gap": "base",
1526
+ },
1527
+ "author-section": {
1528
+ "flex-direction": "column",
1529
+ "align-items": "center",
1530
+ "row-gap": "xs",
1531
+ },
1532
+ "author-info": {
1533
+ "align-items": "center",
1534
+ "text-align": "center",
1535
+ },
1536
+ "author-avatar": {
1537
+ width: "40px",
1538
+ height: "40px",
1539
+ },
1540
+ },
1541
+ {
1542
+ testimonial: {
1543
+ "flex-direction": "column",
1544
+ "align-items": "center",
1545
+ "column-gap": "none",
1546
+ "row-gap": "lg",
1547
+ "padding-top": "xl",
1548
+ "padding-bottom": "xl",
1549
+ "padding-left": "lg",
1550
+ "padding-right": "lg",
1551
+ },
1552
+ "icon-container": {
1553
+ "padding-top": "none",
1554
+ },
1555
+ "content-container": {
1556
+ "min-height": "auto",
1557
+ "text-align": "center",
1558
+ },
1559
+ "testimonial-text": {
1560
+ "font-size": "base",
1561
+ },
1562
+ "bottom-section": {
1563
+ "flex-direction": "column",
1564
+ "align-items": "center",
1565
+ "row-gap": "base",
1566
+ },
1567
+ "author-section": {
1568
+ "flex-direction": "column",
1569
+ "align-items": "center",
1570
+ "row-gap": "xs",
1571
+ },
1572
+ "author-info": {
1573
+ "align-items": "center",
1574
+ "text-align": "center",
1575
+ },
1576
+ "author-avatar": {
1577
+ width: "40px",
1578
+ height: "40px",
1579
+ },
1580
+ },
1581
+ ],
1582
+ },
1583
+ tablet: {
1584
+ layout: {
1585
+ "padding-top": "2xl",
1586
+ "padding-bottom": "2xl",
1587
+ "padding-left": "base",
1588
+ "padding-right": "base",
1589
+ },
1590
+ "carousel-container": {
1591
+ "column-gap": "lg",
1592
+ "justify-content": "center",
1593
+ },
1594
+ testimonials: [
1595
+ {
1596
+ testimonial: {
1597
+ "column-gap": "xl",
1598
+ "padding-top": "xl",
1599
+ "padding-bottom": "xl",
1600
+ "padding-left": "xl",
1601
+ "padding-right": "xl",
1602
+ },
1603
+ "content-container": {
1604
+ "min-height": "150px",
1605
+ },
1606
+ },
1607
+ {
1608
+ testimonial: {
1609
+ "column-gap": "xl",
1610
+ "padding-top": "xl",
1611
+ "padding-bottom": "xl",
1612
+ "padding-left": "xl",
1613
+ "padding-right": "xl",
1614
+ },
1615
+ "content-container": {
1616
+ "min-height": "150px",
1617
+ },
1618
+ },
1619
+ {
1620
+ testimonial: {
1621
+ "column-gap": "xl",
1622
+ "padding-top": "xl",
1623
+ "padding-bottom": "xl",
1624
+ "padding-left": "xl",
1625
+ "padding-right": "xl",
1626
+ },
1627
+ "content-container": {
1628
+ "min-height": "150px",
1629
+ },
1630
+ },
1631
+ ],
1632
+ },
1633
+ },
1634
+ content: DEFAULT_CONTENT,
1635
+ config: {
1636
+ testimonials_levoGroup: {
1637
+ carousel: {
1638
+ loop: true,
1639
+ },
1640
+ },
1641
+ "carousel-navigation-arrow-left-side": {
1642
+ button_icons: {
1643
+ left: {
1644
+ enabled: true,
1645
+ },
1646
+ },
1647
+ },
1648
+ "carousel-navigation-arrow-right-side": {
1649
+ button_icons: {
1650
+ right: {
1651
+ enabled: true,
1652
+ },
1653
+ },
1654
+ },
1655
+ "carousel-navigation-arrow-left-bottom": {
1656
+ button_icons: {
1657
+ left: {
1658
+ enabled: true,
1659
+ },
1660
+ },
1661
+ },
1662
+ "carousel-navigation-arrow-right-bottom": {
1663
+ button_icons: {
1664
+ right: {
1665
+ enabled: true,
1666
+ },
1667
+ },
1668
+ },
1669
+ },
1670
+ },
1671
+ ],
1672
+ };