@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
@@ -0,0 +1,3373 @@
1
+ import type { IBlock } from "@levo-so/studio";
2
+
3
+ const DUMMY_ICON = {
4
+ kind: "icon",
5
+ data: {
6
+ id: "archive-minus",
7
+ label: "Archive Minus",
8
+ tags: ["archive", "custom", "directional", "minus"],
9
+ svgCode:
10
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M14.5 11.4H9.5C9.09 11.4 8.75 11.06 8.75 10.65C8.75 10.24 9.09 9.90002 9.5 9.90002H14.5C14.91 9.90002 15.25 10.24 15.25 10.65C15.25 11.06 14.91 11.4 14.5 11.4Z" fill="var(--color-icon-primary)"/>\n<path d="M4.92957 22.75C4.50957 22.75 4.11957 22.65 3.76957 22.45C2.99957 22 2.55957 21.09 2.55957 19.96V5.86C2.55957 3.32 4.62957 1.25 7.16957 1.25H16.8196C19.3596 1.25 21.4296 3.32 21.4296 5.86V19.95C21.4296 21.08 20.9896 21.99 20.2196 22.44C19.4496 22.89 18.4396 22.84 17.4496 22.29L12.5696 19.58C12.2796 19.42 11.7096 19.42 11.4196 19.58L6.53957 22.29C5.99957 22.59 5.44957 22.75 4.92957 22.75ZM7.17957 2.75C5.46957 2.75 4.06957 4.15 4.06957 5.86V19.95C4.06957 20.54 4.23957 20.98 4.53957 21.15C4.83957 21.33 5.30957 21.27 5.81957 20.98L10.6996 18.27C11.4396 17.86 12.5596 17.86 13.2996 18.27L18.1796 20.98C18.6896 21.27 19.1596 21.33 19.4596 21.15C19.7596 20.97 19.9296 20.53 19.9296 19.95V5.86C19.9296 4.15 18.5296 2.75 16.8196 2.75H7.17957Z" fill="var(--color-icon-primary)"/>\n</svg>',
11
+ },
12
+ };
13
+
14
+ const DEFAULT_CONTENT = {
15
+ layout: null,
16
+ container: null,
17
+ header: null,
18
+ "header-content": null,
19
+ "badge-container": null,
20
+ "badge-text": "Patient Reviews",
21
+ title: "What Our Patients Says",
22
+ testimonials: [
23
+ {
24
+ testimonial: null,
25
+ "cover-container": null,
26
+ "testimonial-content-wrapper": null,
27
+ "testimonial-content": null,
28
+ icon: DUMMY_ICON,
29
+ "testimonial-info": null,
30
+ "author-wrapper": null,
31
+ cover: {
32
+ id: "hjB4vGY2wTjw",
33
+ filename: "image.png",
34
+ kind: "image",
35
+ location: "https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW.png",
36
+ srcset: {
37
+ "1080w":
38
+ "https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-1080w.webp",
39
+ "1200w":
40
+ "https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-1200w.webp",
41
+ "1920w":
42
+ "https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-1920w.webp",
43
+ "320w":
44
+ "https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-320w.webp",
45
+ "640w":
46
+ "https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-640w.webp",
47
+ "750w":
48
+ "https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-750w.webp",
49
+ "828w":
50
+ "https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-828w.webp",
51
+ path: "https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-640w.webp 640w, https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-750w.webp 750w, https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-828w.webp 828w, https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-1080w.webp 1080w, https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-1200w.webp 1200w, https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-1920w.webp 1920w, https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-320w.webp 320w",
52
+ },
53
+ mimetype: "image/png",
54
+ },
55
+ cover_embed: null,
56
+ "testimonial-text":
57
+ '<p>From the moment I walked in, I felt genuinely cared for. The doctors took time to listen, explained everything clearly, and made me feel at ease. It’s rare to find such compassionate and professional care under one roof.<br><br>The online consultation option made it so convenient during a busy week. Truly grateful for the seamless experience!"</p>',
58
+ "author-name": "Michael Chen",
59
+ "author-position": "Business Executive, Patient since 2020",
60
+ },
61
+ {
62
+ testimonial: null,
63
+ "cover-container": null,
64
+ "testimonial-content-wrapper": null,
65
+ "testimonial-content": null,
66
+ icon: DUMMY_ICON,
67
+ "testimonial-info": null,
68
+ "author-wrapper": null,
69
+ cover: {
70
+ id: "hjB4vGY2wTjw",
71
+ filename: "image.png",
72
+ kind: "image",
73
+ location: "https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW.png",
74
+ srcset: {
75
+ "1080w":
76
+ "https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-1080w.webp",
77
+ "1200w":
78
+ "https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-1200w.webp",
79
+ "1920w":
80
+ "https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-1920w.webp",
81
+ "320w":
82
+ "https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-320w.webp",
83
+ "640w":
84
+ "https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-640w.webp",
85
+ "750w":
86
+ "https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-750w.webp",
87
+ "828w":
88
+ "https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-828w.webp",
89
+ path: "https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-640w.webp 640w, https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-750w.webp 750w, https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-828w.webp 828w, https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-1080w.webp 1080w, https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-1200w.webp 1200w, https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-1920w.webp 1920w, https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-320w.webp 320w",
90
+ },
91
+ mimetype: "image/png",
92
+ },
93
+ cover_embed: null,
94
+ "testimonial-text":
95
+ '<p>From the moment I walked in, I felt genuinely cared for. The doctors took time to listen, explained everything clearly, and made me feel at ease. It’s rare to find such compassionate and professional care under one roof.<br><br>The online consultation option made it so convenient during a busy week. Truly grateful for the seamless experience!"</p>',
96
+ "author-name": "Michael Chen",
97
+ "author-position": "Business Executive, Patient since 2020",
98
+ },
99
+ {
100
+ testimonial: null,
101
+ "cover-container": null,
102
+ "testimonial-content-wrapper": null,
103
+ "testimonial-content": null,
104
+ icon: DUMMY_ICON,
105
+ "testimonial-info": null,
106
+ "author-wrapper": null,
107
+ cover: {
108
+ id: "7141014160938075687",
109
+ location: "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH.png",
110
+ kind: "image",
111
+ mimetype: "image/png",
112
+ srcset: {
113
+ "1080w":
114
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1080w.webp",
115
+ "1200w":
116
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1200w.webp",
117
+ "1920w":
118
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1920w.webp",
119
+ "320w":
120
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-320w.webp",
121
+ "640w":
122
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-640w.webp",
123
+ "750w":
124
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-750w.webp",
125
+ "828w":
126
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-828w.webp",
127
+ path: "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-640w.webp 640w, https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1080w.webp 1080w, https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1200w.webp 1200w, https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1920w.webp 1920w, https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-320w.webp 320w, https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-750w.webp 750w, https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-828w.webp 828w",
128
+ },
129
+ },
130
+ cover_embed: null,
131
+ "testimonial-text":
132
+ "Outstanding service and genuine care. The staff goes above and beyond to ensure every patient feels comfortable and well-informed about their treatment options.",
133
+ "author-name": "Jennifer Martinez",
134
+ "author-position": "Healthcare Professional, Patient since 2019",
135
+ },
136
+ ],
137
+ "carousel-navigation": null,
138
+ "carousel-navigation-arrow-left": " ",
139
+ "carousel-navigation-arrow-right": " ",
140
+ "button-prev-icon": {
141
+ id: "EBh9wxyEEVmlt",
142
+ filename: "image.png",
143
+ kind: "image",
144
+ location: "https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed.png",
145
+ srcset: {
146
+ "1080w":
147
+ "https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-1080w.webp",
148
+ "1200w":
149
+ "https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-1200w.webp",
150
+ "1920w":
151
+ "https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-1920w.webp",
152
+ "320w":
153
+ "https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-320w.webp",
154
+ "640w":
155
+ "https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-640w.webp",
156
+ "750w":
157
+ "https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-750w.webp",
158
+ "828w":
159
+ "https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-828w.webp",
160
+ path: "https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-1200w.webp 1200w, https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-320w.webp 320w, https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-1920w.webp 1920w, https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-828w.webp 828w, https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-750w.webp 750w, https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-640w.webp 640w, https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-1080w.webp 1080w",
161
+ },
162
+ mimetype: "image/png",
163
+ },
164
+ "button-next-icon": {
165
+ id: "T71EQn3ZZunDX",
166
+ filename: "image.png",
167
+ kind: "image",
168
+ location: "https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD.png",
169
+ srcset: {
170
+ "1080w":
171
+ "https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-1080w.webp",
172
+ "1200w":
173
+ "https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-1200w.webp",
174
+ "1920w":
175
+ "https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-1920w.webp",
176
+ "320w":
177
+ "https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-320w.webp",
178
+ "640w":
179
+ "https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-640w.webp",
180
+ "750w":
181
+ "https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-750w.webp",
182
+ "828w":
183
+ "https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-828w.webp",
184
+ path: "https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-1920w.webp 1920w, https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-1200w.webp 1200w, https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-828w.webp 828w, https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-640w.webp 640w, https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-750w.webp 750w, https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-1080w.webp 1080w, https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-320w.webp 320w",
185
+ },
186
+ mimetype: "image/png",
187
+ },
188
+ title_two: " ",
189
+ "carousel-navigation-arrow-left_leftIcon": {
190
+ kind: "icon",
191
+ data: {
192
+ id: "arrow-left",
193
+ label: "Arrow Left",
194
+ tags: ["arrow", "custom", "directional", "left"],
195
+ svgCode:
196
+ '<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>',
197
+ },
198
+ },
199
+ "carousel-navigation-arrow-right_rightIcon": {
200
+ kind: "icon",
201
+ data: {
202
+ id: "arrow-right-1",
203
+ label: "Arrow Right 1",
204
+ tags: ["arrow", "custom", "directional", "right"],
205
+ svgCode:
206
+ '<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>',
207
+ },
208
+ },
209
+ };
210
+
211
+ const DEFAULT_CONTENT_CARD_CAROUSEL = {
212
+ layout: null,
213
+ container: null,
214
+ header: null,
215
+ "header-content": null,
216
+ "badge-container": null,
217
+ "badge-text": "Patient Reviews",
218
+ title: "What Our Patients Says",
219
+ testimonials: [
220
+ {
221
+ testimonial: null,
222
+ "cover-container": null,
223
+ "testimonial-content-wrapper": null,
224
+ "testimonial-content": null,
225
+ icon: null,
226
+ "testimonial-info": null,
227
+ "author-wrapper": null,
228
+ cover: {
229
+ id: "WT06orE15cUHR",
230
+ filename: "image.png",
231
+ kind: "image",
232
+ location: "https://space.levo.in.net/W6OEVMW8/image-iPD4qfZ7pcXC3.png",
233
+ srcset: {
234
+ "1080w":
235
+ "https://space.levo.in.net/W6OEVMW8/image-iPD4qfZ7pcXC3-1080w.webp",
236
+ "1200w":
237
+ "https://space.levo.in.net/W6OEVMW8/image-iPD4qfZ7pcXC3-1200w.webp",
238
+ "1920w":
239
+ "https://space.levo.in.net/W6OEVMW8/image-iPD4qfZ7pcXC3-1920w.webp",
240
+ "320w":
241
+ "https://space.levo.in.net/W6OEVMW8/image-iPD4qfZ7pcXC3-320w.webp",
242
+ "640w":
243
+ "https://space.levo.in.net/W6OEVMW8/image-iPD4qfZ7pcXC3-640w.webp",
244
+ "750w":
245
+ "https://space.levo.in.net/W6OEVMW8/image-iPD4qfZ7pcXC3-750w.webp",
246
+ "828w":
247
+ "https://space.levo.in.net/W6OEVMW8/image-iPD4qfZ7pcXC3-828w.webp",
248
+ path: "https://space.levo.in.net/W6OEVMW8/image-iPD4qfZ7pcXC3-1080w.webp 1080w, https://space.levo.in.net/W6OEVMW8/image-iPD4qfZ7pcXC3-828w.webp 828w, https://space.levo.in.net/W6OEVMW8/image-iPD4qfZ7pcXC3-1200w.webp 1200w, https://space.levo.in.net/W6OEVMW8/image-iPD4qfZ7pcXC3-1920w.webp 1920w, https://space.levo.in.net/W6OEVMW8/image-iPD4qfZ7pcXC3-320w.webp 320w, https://space.levo.in.net/W6OEVMW8/image-iPD4qfZ7pcXC3-640w.webp 640w, https://space.levo.in.net/W6OEVMW8/image-iPD4qfZ7pcXC3-750w.webp 750w",
249
+ },
250
+ mimetype: "image/png",
251
+ },
252
+ cover_embed: null,
253
+ "testimonial-text": "<p>Education and Career Development</p>",
254
+ "author-name": "Michael Chen",
255
+ "author-position": "Business Executive, Patient since 2020",
256
+ },
257
+ {
258
+ testimonial: null,
259
+ "cover-container": null,
260
+ "testimonial-content-wrapper": null,
261
+ "testimonial-content": null,
262
+ icon: null,
263
+ "testimonial-info": null,
264
+ "author-wrapper": null,
265
+ cover: {
266
+ id: "hjB4vGY2wTjw",
267
+ filename: "image.png",
268
+ kind: "image",
269
+ location: "https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW.png",
270
+ srcset: {
271
+ "1080w":
272
+ "https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-1080w.webp",
273
+ "1200w":
274
+ "https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-1200w.webp",
275
+ "1920w":
276
+ "https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-1920w.webp",
277
+ "320w":
278
+ "https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-320w.webp",
279
+ "640w":
280
+ "https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-640w.webp",
281
+ "750w":
282
+ "https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-750w.webp",
283
+ "828w":
284
+ "https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-828w.webp",
285
+ path: "https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-640w.webp 640w, https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-750w.webp 750w, https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-828w.webp 828w, https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-1080w.webp 1080w, https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-1200w.webp 1200w, https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-1920w.webp 1920w, https://space.levo.in.net/W6OEVMW8/image-9GFGqRTHaylW-320w.webp 320w",
286
+ },
287
+ mimetype: "image/png",
288
+ },
289
+ cover_embed: null,
290
+ "testimonial-text": "<p>Education and Career Development</p>",
291
+ "author-name": "Michael Chen",
292
+ "author-position": "Business Executive, Patient since 2020",
293
+ },
294
+ {
295
+ testimonial: null,
296
+ "cover-container": null,
297
+ "testimonial-content-wrapper": null,
298
+ "testimonial-content": null,
299
+ icon: null,
300
+ "testimonial-info": null,
301
+ "author-wrapper": null,
302
+ cover: {
303
+ id: "OaJb1LqdFaV5P",
304
+ filename: "image.png",
305
+ kind: "image",
306
+ location: "https://space.levo.in.net/W6OEVMW8/image-74dx6DI2ea1Cm.png",
307
+ srcset: {
308
+ "1080w":
309
+ "https://space.levo.in.net/W6OEVMW8/image-74dx6DI2ea1Cm-1080w.webp",
310
+ "1200w":
311
+ "https://space.levo.in.net/W6OEVMW8/image-74dx6DI2ea1Cm-1200w.webp",
312
+ "1920w":
313
+ "https://space.levo.in.net/W6OEVMW8/image-74dx6DI2ea1Cm-1920w.webp",
314
+ "320w":
315
+ "https://space.levo.in.net/W6OEVMW8/image-74dx6DI2ea1Cm-320w.webp",
316
+ "640w":
317
+ "https://space.levo.in.net/W6OEVMW8/image-74dx6DI2ea1Cm-640w.webp",
318
+ "750w":
319
+ "https://space.levo.in.net/W6OEVMW8/image-74dx6DI2ea1Cm-750w.webp",
320
+ "828w":
321
+ "https://space.levo.in.net/W6OEVMW8/image-74dx6DI2ea1Cm-828w.webp",
322
+ path: "https://space.levo.in.net/W6OEVMW8/image-74dx6DI2ea1Cm-640w.webp 640w, https://space.levo.in.net/W6OEVMW8/image-74dx6DI2ea1Cm-750w.webp 750w, https://space.levo.in.net/W6OEVMW8/image-74dx6DI2ea1Cm-1080w.webp 1080w, https://space.levo.in.net/W6OEVMW8/image-74dx6DI2ea1Cm-1920w.webp 1920w, https://space.levo.in.net/W6OEVMW8/image-74dx6DI2ea1Cm-828w.webp 828w, https://space.levo.in.net/W6OEVMW8/image-74dx6DI2ea1Cm-1200w.webp 1200w, https://space.levo.in.net/W6OEVMW8/image-74dx6DI2ea1Cm-320w.webp 320w",
323
+ },
324
+ mimetype: "image/png",
325
+ },
326
+ cover_embed: null,
327
+ "testimonial-text": "<p>Mental Health and Well-being</p>",
328
+ "author-name": "Jennifer Martinez",
329
+ "author-position": "Healthcare Professional, Patient since 2019",
330
+ },
331
+ ],
332
+ "carousel-navigation": null,
333
+ "carousel-navigation-arrow-left": " ",
334
+ "carousel-navigation-arrow-right": " ",
335
+ title_two: " ",
336
+ "button-prev-icon": {
337
+ id: "EBh9wxyEEVmlt",
338
+ filename: "image.png",
339
+ kind: "image",
340
+ location: "https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed.png",
341
+ srcset: {
342
+ "1080w":
343
+ "https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-1080w.webp",
344
+ "1200w":
345
+ "https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-1200w.webp",
346
+ "1920w":
347
+ "https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-1920w.webp",
348
+ "320w":
349
+ "https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-320w.webp",
350
+ "640w":
351
+ "https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-640w.webp",
352
+ "750w":
353
+ "https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-750w.webp",
354
+ "828w":
355
+ "https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-828w.webp",
356
+ path: "https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-1200w.webp 1200w, https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-320w.webp 320w, https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-1920w.webp 1920w, https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-828w.webp 828w, https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-750w.webp 750w, https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-640w.webp 640w, https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-1080w.webp 1080w",
357
+ },
358
+ mimetype: "image/png",
359
+ },
360
+ "button-next-icon": {
361
+ id: "T71EQn3ZZunDX",
362
+ filename: "image.png",
363
+ kind: "image",
364
+ location: "https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD.png",
365
+ srcset: {
366
+ "1080w":
367
+ "https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-1080w.webp",
368
+ "1200w":
369
+ "https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-1200w.webp",
370
+ "1920w":
371
+ "https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-1920w.webp",
372
+ "320w":
373
+ "https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-320w.webp",
374
+ "640w":
375
+ "https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-640w.webp",
376
+ "750w":
377
+ "https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-750w.webp",
378
+ "828w":
379
+ "https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-828w.webp",
380
+ path: "https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-1920w.webp 1920w, https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-1200w.webp 1200w, https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-828w.webp 828w, https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-640w.webp 640w, https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-750w.webp 750w, https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-1080w.webp 1080w, https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-320w.webp 320w",
381
+ },
382
+ mimetype: "image/png",
383
+ },
384
+ "carousel-navigation-arrow-left_leftIcon": {
385
+ kind: "icon",
386
+ data: {
387
+ id: "arrow-left",
388
+ label: "Arrow Left",
389
+ tags: ["arrow", "custom", "directional", "left"],
390
+ svgCode:
391
+ '<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>',
392
+ },
393
+ },
394
+ "carousel-navigation-arrow-right_rightIcon": {
395
+ kind: "icon",
396
+ data: {
397
+ id: "arrow-right-1",
398
+ label: "Arrow Right 1",
399
+ tags: ["arrow", "custom", "directional", "right"],
400
+ svgCode:
401
+ '<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>',
402
+ },
403
+ },
404
+ };
405
+
406
+ const DEFAULT_CONTENT_VARIANT_3 = {
407
+ layout: null,
408
+ container: null,
409
+ header: null,
410
+ "header-content": null,
411
+ "badge-container": null,
412
+ "badge-text": "Patient Reviews",
413
+ title: "Testimonials From Our Partners",
414
+ testimonials: [
415
+ {
416
+ testimonial: null,
417
+ "cover-container": null,
418
+ "testimonial-content-wrapper": null,
419
+ "testimonial-content": null,
420
+ icon: {
421
+ object: "media",
422
+ id: "9GFUqRMqQKAX",
423
+ workspace_id: "WLZ1TXTD",
424
+ filename: "quote.svg",
425
+ kind: "image",
426
+ path: "WLZ1TXTD/-9GFhqRMqQKVE.svg",
427
+ location: "https://static.levocdn.com/WLZ1TXTD/-9GFhqRMqQKVE.svg",
428
+ metadata: {
429
+ etag: '"834462315a88cc87897a300e4b2f5d45"',
430
+ mimetype: "image/svg+xml",
431
+ size: 1115,
432
+ },
433
+ srcset: {},
434
+ created_at: "2025-04-27T11:33:42.633Z",
435
+ updated_at: "2025-04-27T11:33:42.633Z",
436
+ created_by: null,
437
+ updated_by: null,
438
+ },
439
+ "testimonial-info": null,
440
+ "author-wrapper": null,
441
+ cover: {
442
+ id: "SvIMlsjI0WDWt",
443
+ kind: "image",
444
+ location:
445
+ "https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh.png",
446
+ srcset: {
447
+ "1080w":
448
+ "https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-1080w.webp",
449
+ "1200w":
450
+ "https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-1200w.webp",
451
+ "1920w":
452
+ "https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-1920w.webp",
453
+ "320w":
454
+ "https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-320w.webp",
455
+ "640w":
456
+ "https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-640w.webp",
457
+ "750w":
458
+ "https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-750w.webp",
459
+ "828w":
460
+ "https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-828w.webp",
461
+ path: "https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-1920w.webp 1920w, https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-320w.webp 320w, https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-640w.webp 640w, https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-750w.webp 750w, https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-828w.webp 828w, https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-1080w.webp 1080w, https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-1200w.webp 1200w",
462
+ },
463
+ },
464
+ cover_embed: null,
465
+ "testimonial-text":
466
+ "<p>Partnering with Venturo was the turning point for our startup. Their guidance on strategy and execution helped us scale faster than we imagined.</p>",
467
+ "author-name": "Michael Chen",
468
+ "author-position": "Business Executive, Patient since 2020",
469
+ },
470
+ {
471
+ testimonial: null,
472
+ "cover-container": null,
473
+ "testimonial-content-wrapper": null,
474
+ "testimonial-content": null,
475
+ icon: {
476
+ object: "media",
477
+ id: "9GFUqRMqQKAX",
478
+ workspace_id: "WLZ1TXTD",
479
+ filename: "quote.svg",
480
+ kind: "image",
481
+ path: "WLZ1TXTD/-9GFhqRMqQKVE.svg",
482
+ location: "https://static.levocdn.com/WLZ1TXTD/-9GFhqRMqQKVE.svg",
483
+ metadata: {
484
+ etag: '"834462315a88cc87897a300e4b2f5d45"',
485
+ mimetype: "image/svg+xml",
486
+ size: 1115,
487
+ },
488
+ srcset: {},
489
+ created_at: "2025-04-27T11:33:42.633Z",
490
+ updated_at: "2025-04-27T11:33:42.633Z",
491
+ created_by: null,
492
+ updated_by: null,
493
+ },
494
+ "testimonial-info": null,
495
+ "author-wrapper": null,
496
+ cover: {
497
+ id: "SvIMlsjI0WDWt",
498
+ kind: "image",
499
+ location:
500
+ "https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh.png",
501
+ srcset: {
502
+ "1080w":
503
+ "https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-1080w.webp",
504
+ "1200w":
505
+ "https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-1200w.webp",
506
+ "1920w":
507
+ "https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-1920w.webp",
508
+ "320w":
509
+ "https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-320w.webp",
510
+ "640w":
511
+ "https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-640w.webp",
512
+ "750w":
513
+ "https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-750w.webp",
514
+ "828w":
515
+ "https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-828w.webp",
516
+ path: "https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-1920w.webp 1920w, https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-320w.webp 320w, https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-640w.webp 640w, https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-750w.webp 750w, https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-828w.webp 828w, https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-1080w.webp 1080w, https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-1200w.webp 1200w",
517
+ },
518
+ },
519
+ cover_embed: null,
520
+ "testimonial-text":
521
+ "<p>Partnering with Venturo was the turning point for our startup. Their guidance on strategy and execution helped us scale faster than we imagined.</p>",
522
+ "author-name": "Michael Chen",
523
+ "author-position": "Business Executive, Patient since 2020",
524
+ },
525
+ {
526
+ testimonial: null,
527
+ "cover-container": null,
528
+ "testimonial-content-wrapper": null,
529
+ "testimonial-content": null,
530
+ icon: {
531
+ object: "media",
532
+ id: "9GFUqRMqQKAX",
533
+ workspace_id: "WLZ1TXTD",
534
+ filename: "quote.svg",
535
+ kind: "image",
536
+ path: "WLZ1TXTD/-9GFhqRMqQKVE.svg",
537
+ location: "https://static.levocdn.com/WLZ1TXTD/-9GFhqRMqQKVE.svg",
538
+ metadata: {
539
+ etag: '"834462315a88cc87897a300e4b2f5d45"',
540
+ mimetype: "image/svg+xml",
541
+ size: 1115,
542
+ },
543
+ srcset: {},
544
+ created_at: "2025-04-27T11:33:42.633Z",
545
+ updated_at: "2025-04-27T11:33:42.633Z",
546
+ created_by: null,
547
+ updated_by: null,
548
+ },
549
+ "testimonial-info": null,
550
+ "author-wrapper": null,
551
+ cover: {
552
+ id: "SvIMlsjI0WDWt",
553
+ kind: "image",
554
+ location:
555
+ "https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh.png",
556
+ srcset: {
557
+ "1080w":
558
+ "https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-1080w.webp",
559
+ "1200w":
560
+ "https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-1200w.webp",
561
+ "1920w":
562
+ "https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-1920w.webp",
563
+ "320w":
564
+ "https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-320w.webp",
565
+ "640w":
566
+ "https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-640w.webp",
567
+ "750w":
568
+ "https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-750w.webp",
569
+ "828w":
570
+ "https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-828w.webp",
571
+ path: "https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-1920w.webp 1920w, https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-320w.webp 320w, https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-640w.webp 640w, https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-750w.webp 750w, https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-828w.webp 828w, https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-1080w.webp 1080w, https://space.levo.in.net/W6OEVMW8/Frame1171279607-6HgeLxx13t3Dh-1200w.webp 1200w",
572
+ },
573
+ },
574
+ cover_embed: null,
575
+ "testimonial-text":
576
+ "<p>Partnering with Venturo was the turning point for our startup. Their guidance on strategy and execution helped us scale faster than we imagined.</p>",
577
+ "author-name": "Michael Chen",
578
+ "author-position": "Business Executive, Patient since 2020",
579
+ },
580
+ ],
581
+ "carousel-navigation": null,
582
+ "carousel-navigation-arrow-left": " ",
583
+ "carousel-navigation-arrow-right": " ",
584
+ "button-prev-icon": {
585
+ id: "EBh9wxyEEVmlt",
586
+ filename: "image.png",
587
+ kind: "image",
588
+ location: "https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed.png",
589
+ srcset: {
590
+ "1080w":
591
+ "https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-1080w.webp",
592
+ "1200w":
593
+ "https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-1200w.webp",
594
+ "1920w":
595
+ "https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-1920w.webp",
596
+ "320w":
597
+ "https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-320w.webp",
598
+ "640w":
599
+ "https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-640w.webp",
600
+ "750w":
601
+ "https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-750w.webp",
602
+ "828w":
603
+ "https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-828w.webp",
604
+ path: "https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-1200w.webp 1200w, https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-320w.webp 320w, https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-1920w.webp 1920w, https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-828w.webp 828w, https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-750w.webp 750w, https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-640w.webp 640w, https://space.levo.in.net/W6OEVMW8/image-9GFuNqRTTvoed-1080w.webp 1080w",
605
+ },
606
+ mimetype: "image/png",
607
+ },
608
+ "button-next-icon": {
609
+ id: "T71EQn3ZZunDX",
610
+ filename: "image.png",
611
+ kind: "image",
612
+ location: "https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD.png",
613
+ srcset: {
614
+ "1080w":
615
+ "https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-1080w.webp",
616
+ "1200w":
617
+ "https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-1200w.webp",
618
+ "1920w":
619
+ "https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-1920w.webp",
620
+ "320w":
621
+ "https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-320w.webp",
622
+ "640w":
623
+ "https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-640w.webp",
624
+ "750w":
625
+ "https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-750w.webp",
626
+ "828w":
627
+ "https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-828w.webp",
628
+ path: "https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-1920w.webp 1920w, https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-1200w.webp 1200w, https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-828w.webp 828w, https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-640w.webp 640w, https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-750w.webp 750w, https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-1080w.webp 1080w, https://space.levo.in.net/W6OEVMW8/image-74dXKDEbbdinD-320w.webp 320w",
629
+ },
630
+ mimetype: "image/png",
631
+ },
632
+ title_two: " ",
633
+ "carousel-navigation-arrow-left_leftIcon": {
634
+ kind: "icon",
635
+ data: {
636
+ id: "arrow-left",
637
+ label: "Arrow Left",
638
+ tags: ["arrow", "custom", "directional", "left"],
639
+ svgCode:
640
+ '<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>',
641
+ },
642
+ },
643
+ "carousel-navigation-arrow-right_rightIcon": {
644
+ kind: "icon",
645
+ data: {
646
+ id: "arrow-right-1",
647
+ label: "Arrow Right 1",
648
+ tags: ["arrow", "custom", "directional", "right"],
649
+ svgCode:
650
+ '<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>',
651
+ },
652
+ },
653
+ };
654
+
655
+ export type ITestimonial4Content = typeof DEFAULT_CONTENT;
656
+
657
+ export const Testimonial4: IBlock = {
658
+ category_id: "testimonial",
659
+ title: "Testimonial 4",
660
+ key: "testimonial-4",
661
+ version: "v1",
662
+ prompt_description:
663
+ "Two-column testimonial carousel with professional patient photos on the left and testimonial content on the right, featuring arrow navigation for easy browsing through patient reviews.",
664
+ content_schema: [
665
+ {
666
+ key: "layout",
667
+ label: "Layout",
668
+ field_interface: "LayoutWidget",
669
+ hint: {
670
+ prompt_description:
671
+ "Defines the overall two-column layout structure for the testimonial carousel block, ensuring balanced visual distribution between the testimonial image and the quote content.",
672
+ },
673
+ },
674
+ {
675
+ key: "container",
676
+ label: "Container",
677
+ field_interface: "ContainerWidget",
678
+ hint: {
679
+ prompt_description:
680
+ "Acts as the main container, providing padding and alignment to centralize the testimonial block within the page for visual clarity.",
681
+ },
682
+ },
683
+ {
684
+ key: "header",
685
+ label: "Header",
686
+ field_interface: "BoxWidget",
687
+ hint: {
688
+ prompt_description:
689
+ "Container for the block header elements, such as the badge and main title, providing spacing and alignment.",
690
+ },
691
+ },
692
+ {
693
+ key: "header-content",
694
+ label: "Header Content",
695
+ field_interface: "BoxWidget",
696
+ hint: {
697
+ prompt_description:
698
+ "Positions the badge and main headline, ensuring they are grouped above the carousel content for emphasis.",
699
+ },
700
+ },
701
+ {
702
+ key: "badge-container",
703
+ label: "Badge Container",
704
+ field_interface: "BoxWidget",
705
+ hint: {
706
+ prompt_description:
707
+ "Visual container framing the badge text (e.g., 'Patient Reviews') with rounded/capsule styling. Used for emphasis above the main heading.",
708
+ },
709
+ },
710
+ {
711
+ key: "badge-text",
712
+ label: "Badge Text",
713
+ field_interface: "TypographyWidget",
714
+ hint: {
715
+ prompt_description:
716
+ "Short badge phrase indicating content type. Use a concise, healthcare-focused tone. Should fit visually into a pill-shaped badge above the headline.",
717
+ min_characters: 8,
718
+ max_characters: 18,
719
+ },
720
+ },
721
+ {
722
+ key: "title",
723
+ label: "Title",
724
+ field_interface: "HeadingWidget",
725
+ hint: {
726
+ prompt_description:
727
+ "Primary headline for the testimonial carousel. Use a confident, trustworthy tone to convey care and professionalism. Should be impactful and concise.",
728
+ min_characters: 18,
729
+ max_characters: 45,
730
+ },
731
+ },
732
+ {
733
+ key: "carousel-navigation-top-container",
734
+ label: "Carousel Navigation Top Container",
735
+ field_interface: "BoxWidget",
736
+ hint: {
737
+ prompt_description: "Container for the top navigation arrows.",
738
+ },
739
+ },
740
+ {
741
+ key: "carousel-navigation-bottom-container",
742
+ label: "Carousel Navigation Bottom Container",
743
+ field_interface: "BoxWidget",
744
+ hint: {
745
+ prompt_description: "Container for the bottom navigation arrows.",
746
+ },
747
+ },
748
+ {
749
+ key: "carousel-navigation",
750
+ label: "Carousel Navigation",
751
+ field_interface: "BoxWidget",
752
+ hint: {
753
+ prompt_description:
754
+ "Container for the navigation arrows indicating carousel controls, typically placed top-right for visual balance.",
755
+ },
756
+ },
757
+ {
758
+ key: "carousel-navigation-arrow-left",
759
+ label: "Carousel Navigation Arrow Left",
760
+ field_interface: "ButtonWidget",
761
+ hint: {
762
+ prompt_description:
763
+ "Left navigation arrow to go to the previous testimonial in the carousel. Interactive element for users to navigate backwards through testimonials.",
764
+ },
765
+ },
766
+ {
767
+ key: "carousel-navigation-arrow-right",
768
+ label: "Carousel Navigation Arrow Right",
769
+ field_interface: "ButtonWidget",
770
+ hint: {
771
+ prompt_description:
772
+ "Right navigation arrow to go to the next testimonial in the carousel. Interactive element for users to navigate forward through testimonials.",
773
+ },
774
+ },
775
+ {
776
+ key: "carousel-left-arrow-container",
777
+ label: "Carousel Left Arrow Container",
778
+ field_interface: "BoxWidget",
779
+ hint: {
780
+ prompt_description:
781
+ "Container for the left positioned navigation arrow.",
782
+ },
783
+ },
784
+ {
785
+ key: "carousel-right-arrow-container",
786
+ label: "Carousel Right Arrow Container",
787
+ field_interface: "BoxWidget",
788
+ hint: {
789
+ prompt_description:
790
+ "Container for the right positioned navigation arrow.",
791
+ },
792
+ },
793
+ {
794
+ key: "carousel-container-wrapper",
795
+ label: "Carousel Container Wrapper",
796
+ field_interface: "BoxWidget",
797
+ hint: {
798
+ prompt_description:
799
+ "Wrapper container for the carousel with relative positioning for absolute arrow placement.",
800
+ },
801
+ },
802
+
803
+ {
804
+ key: "title_two",
805
+ label: "Title 2",
806
+ field_interface: "HeadingWidget",
807
+ },
808
+ {
809
+ key: "testimonials",
810
+ label: "Testimonials",
811
+ field_interface: "CarouselWidget",
812
+ kind: "group",
813
+ fields: [
814
+ {
815
+ key: "testimonial",
816
+ label: "Testimonial",
817
+ field_interface: "BoxWidget",
818
+ hint: {
819
+ prompt_description:
820
+ "Wrapper for a single testimonial's content, organizing the image, quote, and author details together in a visually cohesive unit.",
821
+ },
822
+ },
823
+ {
824
+ key: "cover-container",
825
+ label: "Cover Container",
826
+ field_interface: "BoxWidget",
827
+ hint: {
828
+ prompt_description:
829
+ "Container for the testimonial cover image, providing shape (rounded corners/square) and consistent sizing across testimonials.",
830
+ },
831
+ },
832
+ {
833
+ key: "cover",
834
+ label: "Cover Image",
835
+ field_interface: "MediaWidget",
836
+ hint: {
837
+ prompt_description:
838
+ "Professional photo of the patient or healthcare-related image representing the testimonial. Should be high quality and appropriate for healthcare context.",
839
+ orientation: "square",
840
+ size: "large",
841
+ usecase: "hero",
842
+ },
843
+ },
844
+ {
845
+ key: "cover_embed",
846
+ label: "Cover Embed",
847
+ field_interface: "IframeWidget",
848
+ hint: {
849
+ prompt_description:
850
+ "Optional embed content for the testimonial. Can be used to display embedded videos, interactive content, or other iframe-based media alongside the testimonial.",
851
+ },
852
+ },
853
+ {
854
+ key: "testimonial-content-wrapper",
855
+ label: "Testimonial Content Wrapper",
856
+ field_interface: "BoxWidget",
857
+ hint: {
858
+ prompt_description:
859
+ "Container holding both the testimonial quote text and author details, ensuring clear vertical spacing and alignment next to the image.",
860
+ },
861
+ },
862
+ {
863
+ key: "testimonial-content",
864
+ label: "Testimonial Content",
865
+ field_interface: "BoxWidget",
866
+ hint: {
867
+ prompt_description:
868
+ "Holds the actual testimonial quote, possibly with a quote icon and spacing above author details.",
869
+ },
870
+ },
871
+ {
872
+ key: "icon",
873
+ label: "Icon",
874
+ field_interface: "IconWidget",
875
+ hint: {
876
+ prompt_description:
877
+ "Decorative quote symbol or icon to visually indicate the start of the testimonial text. Should be visually subtle and brand-aligned.",
878
+ orientation: "square",
879
+ size: "icon",
880
+ usecase: "icon",
881
+ },
882
+ },
883
+ {
884
+ key: "testimonial-info",
885
+ label: "Testimonial Info",
886
+ field_interface: "BoxWidget",
887
+ hint: {
888
+ prompt_description:
889
+ "Container for author attribution details (name and position), often styled with subtle spacing under the quote.",
890
+ },
891
+ },
892
+ {
893
+ key: "testimonial-text",
894
+ label: "Testimonial Text",
895
+ field_interface: "TypographyWidget",
896
+ hint: {
897
+ prompt_description:
898
+ "Main testimonial quote text from the patient. Should be genuine, first-person, and describe their healthcare experience. Tone is personal and authentic.",
899
+ min_characters: 100,
900
+ max_characters: 260,
901
+ },
902
+ },
903
+ {
904
+ key: "author-wrapper",
905
+ label: "Author Wrapper",
906
+ field_interface: "BoxWidget",
907
+ hint: {
908
+ prompt_description:
909
+ "Container for grouping the author's name and position, styling them with appropriate hierarchy below the quote.",
910
+ },
911
+ },
912
+ {
913
+ key: "author-name",
914
+ label: "Author Name",
915
+ field_interface: "HeadingWidget",
916
+ hint: {
917
+ prompt_description:
918
+ "The full name of the patient giving the testimonial. Use a real-sounding name in title case. Should be clearly legible and bolded.",
919
+ min_characters: 8,
920
+ max_characters: 24,
921
+ },
922
+ },
923
+ {
924
+ key: "author-position",
925
+ label: "Author Position",
926
+ field_interface: "TypographyWidget",
927
+ hint: {
928
+ prompt_description:
929
+ "Patient's profession and relationship to the healthcare service (e.g., 'Entrepreneur, Patient since 2021'). Should provide context and build trust.",
930
+ min_characters: 12,
931
+ max_characters: 40,
932
+ },
933
+ },
934
+ ],
935
+ hint: {
936
+ prompt_description:
937
+ "A carousel of individual patient testimonials highlighting healthcare experiences. Each item includes a professional photo, a genuine quote, and the patient's name and background. Focus on authentic healthcare experiences and positive outcomes.",
938
+ min_items: 3,
939
+ max_items: 5,
940
+ },
941
+ },
942
+ ],
943
+ layouts: [
944
+ {
945
+ key: "default",
946
+ title: "Default",
947
+ styles: {
948
+ header: {
949
+ position: "relative",
950
+ display: "flex",
951
+ width: "100%",
952
+ "align-items": "center",
953
+ "row-gap": "2xs",
954
+ "column-gap": "2xs",
955
+ mobile: {
956
+ "flex-direction": "column",
957
+ "row-gap": "md",
958
+ filter: "none",
959
+ "justify-content": "center",
960
+ "align-items": "center",
961
+ "padding-bottom": "none",
962
+ },
963
+ tablet: {
964
+ "margin-bottom": "base",
965
+ },
966
+ filter: "none",
967
+ "padding-bottom": "lg",
968
+ },
969
+ "header-content": {
970
+ display: "flex",
971
+ flex: "1",
972
+ "flex-direction": "column",
973
+ "align-items": "flex-start",
974
+ "justify-content": "center",
975
+ "row-gap": "2xs",
976
+ "column-gap": "2xs",
977
+ filter: "none",
978
+ },
979
+ "badge-container": {
980
+ "border-radius": "20px",
981
+ "background-color": "brandSecondary",
982
+ "padding-left": "lg",
983
+ "padding-right": "lg",
984
+ "padding-top": "4xs",
985
+ "padding-bottom": "4xs",
986
+ filter: "none",
987
+ },
988
+ "badge-text": {
989
+ "font-size": "base",
990
+ "line-height": 1.625,
991
+ "font-weight": 500,
992
+ color: "var(--color-text-1)",
993
+ mobile: {
994
+ "font-size": "sm",
995
+ },
996
+ },
997
+ title: {
998
+ "font-size": "4xl",
999
+ "line-height": 1.625,
1000
+ "font-weight": 700,
1001
+ mobile: {
1002
+ "font-size": "2xl",
1003
+ },
1004
+ filter: "none",
1005
+ },
1006
+ "carousel-navigation-top-container": {
1007
+ display: "flex",
1008
+ "justify-content": "flex-end",
1009
+ mobile: {
1010
+ display: "none",
1011
+ filter: "none",
1012
+ },
1013
+ },
1014
+ "carousel-navigation-bottom-container": {
1015
+ display: "none",
1016
+ mobile: {
1017
+ display: "flex",
1018
+ "justify-content": "center",
1019
+ "padding-bottom": "md",
1020
+ filter: "none",
1021
+ },
1022
+ filter: "none",
1023
+ },
1024
+ "carousel-left-arrow-container": {
1025
+ display: "none",
1026
+ },
1027
+ "carousel-right-arrow-container": {
1028
+ display: "none",
1029
+ },
1030
+ "carousel-container-wrapper": {
1031
+ position: "static",
1032
+ },
1033
+ "carousel-navigation": {
1034
+ display: "flex",
1035
+ "column-gap": "sm",
1036
+ "align-items": "center",
1037
+ mobile: {
1038
+ filter: "none",
1039
+ },
1040
+ },
1041
+ "carousel-navigation-arrow-left": {
1042
+ display: "flex",
1043
+ "align-items": "center",
1044
+ "justify-content": "center",
1045
+ "border-radius": "50%",
1046
+ "background-color": "white",
1047
+ color: "text-2",
1048
+ cursor: "pointer",
1049
+ "font-size": "lg",
1050
+ "font-weight": "500",
1051
+ "padding-top": "none",
1052
+ "padding-bottom": "none",
1053
+ "padding-left": "none",
1054
+ "padding-right": "none",
1055
+ "border-color": "transparent",
1056
+ "border-width": "0px",
1057
+ "border-style": "solid",
1058
+ _hover: {
1059
+ opacity: "0.9",
1060
+ },
1061
+ width: "48px",
1062
+ height: "48px",
1063
+ border: "1px solid var(--color-border)",
1064
+ transition: "opacity 0.3s ease, cursor 0.3s ease",
1065
+ mobile: {
1066
+ width: "40px",
1067
+ height: "40px",
1068
+ filter: "none",
1069
+ "padding-top": "none",
1070
+ "padding-bottom": "none",
1071
+ "padding-left": "none",
1072
+ "padding-right": "none",
1073
+ },
1074
+ filter: "none",
1075
+ "box-shadow": "0 2px 8px rgba(0, 0, 0, 0.1)",
1076
+ "column-gap": "none",
1077
+ },
1078
+ "carousel-navigation-arrow-right": {
1079
+ width: "48px",
1080
+ height: "48px",
1081
+ "border-radius": "50%",
1082
+ "background-color": "white",
1083
+ border: "1px solid var(--color-border)",
1084
+ cursor: "pointer",
1085
+ display: "flex",
1086
+ "align-items": "center",
1087
+ "justify-content": "center",
1088
+ transition: "opacity 0.3s ease, cursor 0.3s ease",
1089
+ mobile: {
1090
+ width: "40px",
1091
+ height: "40px",
1092
+ filter: "none",
1093
+ "font-size": "xs",
1094
+ },
1095
+ filter: "none",
1096
+ "box-shadow": "0 2px 8px rgba(0, 0, 0, 0.1)",
1097
+ "padding-top": "none",
1098
+ "padding-bottom": "none",
1099
+ "padding-left": "none",
1100
+ "padding-right": "none",
1101
+ "column-gap": "none",
1102
+ color: "text-3",
1103
+ tablet: {
1104
+ filter: "none",
1105
+ },
1106
+ },
1107
+ "button-prev-icon": {
1108
+ width: "100%",
1109
+ height: "100%",
1110
+ filter: "none",
1111
+ mobile: {
1112
+ width: "100%",
1113
+ height: "100%",
1114
+ filter: "none",
1115
+ },
1116
+ },
1117
+ "button-next-icon": {
1118
+ width: "100%",
1119
+ height: "100%",
1120
+ filter: "none",
1121
+ mobile: {
1122
+ width: "100%",
1123
+ height: "100%",
1124
+ filter: "none",
1125
+ },
1126
+ },
1127
+ testimonials_levoGroup: {
1128
+ number_of_slides: 1,
1129
+ filter: "none",
1130
+ mobile: {
1131
+ filter: "none",
1132
+ },
1133
+ },
1134
+ testimonials: [
1135
+ {
1136
+ testimonial: {
1137
+ display: "flex",
1138
+ "box-shadow": "xl",
1139
+ "border-radius": "3xl",
1140
+ "align-items": "stretch",
1141
+ overflow: "hidden",
1142
+ tablet: {
1143
+ "flex-direction": "column",
1144
+ },
1145
+ filter: "none",
1146
+ "justify-content": "space-between",
1147
+ width: "100%",
1148
+ },
1149
+ "cover-container": {
1150
+ "max-width": "45%",
1151
+ tablet: {
1152
+ "max-width": "100%",
1153
+ },
1154
+ },
1155
+ cover: {
1156
+ height: "100%",
1157
+ width: "100%",
1158
+ "object-fit": "contain",
1159
+ tablet: {
1160
+ "max-width": "100%",
1161
+ },
1162
+ filter: "none",
1163
+ },
1164
+ cover_embed: {},
1165
+ "testimonial-content-wrapper": {
1166
+ display: "flex",
1167
+ flex: "1",
1168
+ "align-items": "center",
1169
+ "row-gap": "7xl",
1170
+ "column-gap": "7xl",
1171
+ "border-top-right-radius": "3xl",
1172
+ "border-bottom-right-radius": "3xl",
1173
+ padding: "7xl",
1174
+ tablet: {
1175
+ flex: "unset",
1176
+ padding: "4xl",
1177
+ "border-top-right-radius": "0",
1178
+ "border-bottom-left-radius": "3xl",
1179
+ "border-bottom-right-radius": "3xl",
1180
+ },
1181
+ mobile: {
1182
+ padding: "lg",
1183
+ },
1184
+ filter: "none",
1185
+ },
1186
+ "testimonial-content": {
1187
+ display: "flex",
1188
+ flex: "1",
1189
+ "align-items": "flex-start",
1190
+ "row-gap": "xl",
1191
+ "column-gap": "xl",
1192
+ mobile: {
1193
+ "column-gap": "sm",
1194
+ },
1195
+ },
1196
+ icon: {
1197
+ height: "auto",
1198
+ width: "40px",
1199
+ tablet: {
1200
+ height: "auto",
1201
+ width: "28px",
1202
+ },
1203
+ mobile: {
1204
+ height: "auto",
1205
+ width: "20px",
1206
+ },
1207
+ },
1208
+ "testimonial-info": {
1209
+ display: "flex",
1210
+ flex: "1",
1211
+ "flex-direction": "column",
1212
+ "row-gap": "7xl",
1213
+ tablet: {
1214
+ "row-gap": "xl",
1215
+ },
1216
+ },
1217
+ "testimonial-text": {
1218
+ color: "var(--color-text-1)",
1219
+ "font-size": "lg",
1220
+ "font-weight": 400,
1221
+ tablet: {
1222
+ "font-size": "2xl",
1223
+ },
1224
+ mobile: {
1225
+ "font-size": "lg",
1226
+ },
1227
+ filter: "none",
1228
+ },
1229
+ "author-wrapper": {
1230
+ display: "flex",
1231
+ "flex-direction": "column",
1232
+ "row-gap": "4xs",
1233
+ },
1234
+ "author-name": {
1235
+ color: "var(--color-text-1)",
1236
+ "font-size": "xl",
1237
+ "font-weight": "bold",
1238
+ mobile: {
1239
+ "font-size": "lg",
1240
+ },
1241
+ filter: "none",
1242
+ },
1243
+ "author-position": {
1244
+ color: "var(--color-text-2)",
1245
+ "font-size": "base",
1246
+ mobile: {
1247
+ "font-size": "sm",
1248
+ },
1249
+ filter: "none",
1250
+ "font-weight": 400,
1251
+ },
1252
+ },
1253
+ {
1254
+ testimonial: {
1255
+ display: "flex",
1256
+ "box-shadow": "xl",
1257
+ "border-radius": "3xl",
1258
+ "align-items": "stretch",
1259
+ overflow: "hidden",
1260
+ tablet: {
1261
+ "flex-direction": "column",
1262
+ },
1263
+ filter: "none",
1264
+ "justify-content": "space-between",
1265
+ width: "100%",
1266
+ },
1267
+ "cover-container": {
1268
+ "max-width": "45%",
1269
+ tablet: {
1270
+ "max-width": "100%",
1271
+ },
1272
+ },
1273
+ cover: {
1274
+ height: "100%",
1275
+ width: "100%",
1276
+ "object-fit": "contain",
1277
+ tablet: {
1278
+ "max-width": "100%",
1279
+ },
1280
+ filter: "none",
1281
+ },
1282
+ cover_embed: {},
1283
+ "testimonial-content-wrapper": {
1284
+ display: "flex",
1285
+ flex: "1",
1286
+ "align-items": "center",
1287
+ "row-gap": "7xl",
1288
+ "column-gap": "7xl",
1289
+ "border-top-right-radius": "3xl",
1290
+ "border-bottom-right-radius": "3xl",
1291
+ padding: "7xl",
1292
+ tablet: {
1293
+ flex: "unset",
1294
+ padding: "4xl",
1295
+ "border-top-right-radius": "0",
1296
+ "border-bottom-left-radius": "3xl",
1297
+ "border-bottom-right-radius": "3xl",
1298
+ },
1299
+ mobile: {
1300
+ padding: "lg",
1301
+ },
1302
+ filter: "none",
1303
+ },
1304
+ "testimonial-content": {
1305
+ display: "flex",
1306
+ flex: "1",
1307
+ "align-items": "flex-start",
1308
+ "row-gap": "xl",
1309
+ "column-gap": "xl",
1310
+ mobile: {
1311
+ "column-gap": "sm",
1312
+ },
1313
+ },
1314
+ icon: {
1315
+ height: "auto",
1316
+ width: "40px",
1317
+ tablet: {
1318
+ height: "auto",
1319
+ width: "28px",
1320
+ },
1321
+ mobile: {
1322
+ height: "auto",
1323
+ width: "20px",
1324
+ },
1325
+ },
1326
+ "testimonial-info": {
1327
+ display: "flex",
1328
+ flex: "1",
1329
+ "flex-direction": "column",
1330
+ "row-gap": "7xl",
1331
+ tablet: {
1332
+ "row-gap": "xl",
1333
+ },
1334
+ },
1335
+ "testimonial-text": {
1336
+ color: "var(--color-text-1)",
1337
+ "font-size": "lg",
1338
+ "font-weight": 400,
1339
+ tablet: {
1340
+ "font-size": "2xl",
1341
+ },
1342
+ mobile: {
1343
+ "font-size": "lg",
1344
+ },
1345
+ filter: "none",
1346
+ },
1347
+ "author-wrapper": {
1348
+ display: "flex",
1349
+ "flex-direction": "column",
1350
+ "row-gap": "4xs",
1351
+ },
1352
+ "author-name": {
1353
+ color: "var(--color-text-1)",
1354
+ "font-size": "xl",
1355
+ "font-weight": "bold",
1356
+ mobile: {
1357
+ "font-size": "lg",
1358
+ },
1359
+ filter: "none",
1360
+ },
1361
+ "author-position": {
1362
+ color: "var(--color-text-2)",
1363
+ "font-size": "base",
1364
+ mobile: {
1365
+ "font-size": "sm",
1366
+ },
1367
+ filter: "none",
1368
+ "font-weight": 400,
1369
+ },
1370
+ },
1371
+ {
1372
+ testimonial: {
1373
+ display: "flex",
1374
+ "box-shadow": "xl",
1375
+ "border-radius": "3xl",
1376
+ "align-items": "stretch",
1377
+ overflow: "hidden",
1378
+ tablet: {
1379
+ "flex-direction": "column",
1380
+ },
1381
+ filter: "none",
1382
+ "justify-content": "space-between",
1383
+ width: "100%",
1384
+ },
1385
+ "cover-container": {
1386
+ "max-width": "45%",
1387
+ tablet: {
1388
+ "max-width": "100%",
1389
+ },
1390
+ },
1391
+ cover: {
1392
+ height: "100%",
1393
+ width: "100%",
1394
+ "object-fit": "contain",
1395
+ tablet: {
1396
+ "max-width": "100%",
1397
+ },
1398
+ filter: "none",
1399
+ },
1400
+ cover_embed: {},
1401
+ "testimonial-content-wrapper": {
1402
+ display: "flex",
1403
+ flex: "1",
1404
+ "align-items": "center",
1405
+ "row-gap": "7xl",
1406
+ "column-gap": "7xl",
1407
+ "border-top-right-radius": "3xl",
1408
+ "border-bottom-right-radius": "3xl",
1409
+ padding: "7xl",
1410
+ tablet: {
1411
+ flex: "unset",
1412
+ padding: "4xl",
1413
+ "border-top-right-radius": "0",
1414
+ "border-bottom-left-radius": "3xl",
1415
+ "border-bottom-right-radius": "3xl",
1416
+ },
1417
+ mobile: {
1418
+ padding: "lg",
1419
+ },
1420
+ filter: "none",
1421
+ },
1422
+ "testimonial-content": {
1423
+ display: "flex",
1424
+ flex: "1",
1425
+ "align-items": "flex-start",
1426
+ "row-gap": "xl",
1427
+ "column-gap": "xl",
1428
+ mobile: {
1429
+ "column-gap": "sm",
1430
+ },
1431
+ },
1432
+ icon: {
1433
+ height: "auto",
1434
+ width: "40px",
1435
+ tablet: {
1436
+ height: "auto",
1437
+ width: "28px",
1438
+ },
1439
+ mobile: {
1440
+ height: "auto",
1441
+ width: "20px",
1442
+ },
1443
+ },
1444
+ "testimonial-info": {
1445
+ display: "flex",
1446
+ flex: "1",
1447
+ "flex-direction": "column",
1448
+ "row-gap": "7xl",
1449
+ tablet: {
1450
+ "row-gap": "xl",
1451
+ },
1452
+ },
1453
+ "testimonial-text": {
1454
+ color: "var(--color-text-1)",
1455
+ "font-size": "lg",
1456
+ "font-weight": 400,
1457
+ tablet: {
1458
+ "font-size": "2xl",
1459
+ },
1460
+ mobile: {
1461
+ "font-size": "lg",
1462
+ },
1463
+ filter: "none",
1464
+ },
1465
+ "author-wrapper": {
1466
+ display: "flex",
1467
+ "flex-direction": "column",
1468
+ "row-gap": "4xs",
1469
+ },
1470
+ "author-name": {
1471
+ color: "var(--color-text-1)",
1472
+ "font-size": "xl",
1473
+ "font-weight": "bold",
1474
+ mobile: {
1475
+ "font-size": "lg",
1476
+ },
1477
+ filter: "none",
1478
+ },
1479
+ "author-position": {
1480
+ color: "var(--color-text-2)",
1481
+ "font-size": "base",
1482
+ mobile: {
1483
+ "font-size": "sm",
1484
+ },
1485
+ filter: "none",
1486
+ "font-weight": 400,
1487
+ },
1488
+ },
1489
+ ],
1490
+ container: {
1491
+ filter: "none",
1492
+ mobile: {
1493
+ filter: "none",
1494
+ },
1495
+ tablet: {
1496
+ filter: "none",
1497
+ },
1498
+ },
1499
+ layout: {
1500
+ filter: "none",
1501
+ },
1502
+ "carousel-navigation-arrow-left_leftIcon": {
1503
+ filter: "none",
1504
+ height: "24px",
1505
+ width: "24px",
1506
+ "font-size": "24px",
1507
+ },
1508
+ "carousel-navigation-arrow-right_rightIcon": {
1509
+ height: "24px",
1510
+ width: "24px",
1511
+ "font-size": "24px",
1512
+ },
1513
+ },
1514
+ config: {
1515
+ testimonials_levoGroup: {
1516
+ carousel: {
1517
+ loop: true,
1518
+ },
1519
+ },
1520
+ "carousel-navigation-arrow-left": {
1521
+ button_icons: {
1522
+ left: {
1523
+ enabled: true,
1524
+ },
1525
+ },
1526
+ selectedVariants: {
1527
+ Button_Sizes: "XS",
1528
+ },
1529
+ },
1530
+ "carousel-navigation-arrow-right": {
1531
+ button_icons: {
1532
+ right: {
1533
+ enabled: true,
1534
+ },
1535
+ },
1536
+ },
1537
+ },
1538
+ content: DEFAULT_CONTENT,
1539
+ },
1540
+ {
1541
+ key: "card-carousel",
1542
+ title: "Card Carousel",
1543
+ styles: {
1544
+ header: {
1545
+ position: "relative",
1546
+ display: "flex",
1547
+ width: "100%",
1548
+ "align-items": "end",
1549
+ "row-gap": "2xs",
1550
+ "column-gap": "2xs",
1551
+ mobile: {
1552
+ "flex-direction": "column",
1553
+ "row-gap": "md",
1554
+ filter: "none",
1555
+ "justify-content": "center",
1556
+ "align-items": "center",
1557
+ "padding-bottom": "none",
1558
+ },
1559
+ tablet: {
1560
+ "margin-bottom": "base",
1561
+ },
1562
+ filter: "none",
1563
+ "padding-bottom": "lg",
1564
+ "justify-content": "end",
1565
+ },
1566
+ "header-content": {
1567
+ display: "none",
1568
+ flex: "1",
1569
+ "flex-direction": "column",
1570
+ "align-items": "flex-start",
1571
+ "justify-content": "center",
1572
+ "row-gap": "2xs",
1573
+ "column-gap": "2xs",
1574
+ filter: "none",
1575
+ },
1576
+ "badge-container": {
1577
+ "border-radius": "20px",
1578
+ "background-color": "brandSecondary",
1579
+ "padding-left": "lg",
1580
+ "padding-right": "lg",
1581
+ "padding-top": "4xs",
1582
+ "padding-bottom": "4xs",
1583
+ filter: "none",
1584
+ },
1585
+ "badge-text": {
1586
+ "font-size": "base",
1587
+ "line-height": 1.625,
1588
+ "font-weight": 500,
1589
+ color: "var(--color-text-1)",
1590
+ mobile: {
1591
+ "font-size": "sm",
1592
+ },
1593
+ },
1594
+ title: {
1595
+ "font-size": "4xl",
1596
+ "line-height": 1.625,
1597
+ "font-weight": 700,
1598
+ mobile: {
1599
+ "font-size": "2xl",
1600
+ },
1601
+ filter: "none",
1602
+ },
1603
+ "carousel-navigation-top-container": {
1604
+ display: "flex",
1605
+ "justify-content": "flex-end",
1606
+ mobile: {
1607
+ display: "none",
1608
+ filter: "none",
1609
+ },
1610
+ filter: "none",
1611
+ },
1612
+ "carousel-navigation-bottom-container": {
1613
+ display: "none",
1614
+ mobile: {
1615
+ display: "flex",
1616
+ "justify-content": "center",
1617
+ "padding-bottom": "md",
1618
+ filter: "none",
1619
+ "margin-top": "lg",
1620
+ },
1621
+ filter: "none",
1622
+ },
1623
+ "carousel-left-arrow-container": {
1624
+ display: "none",
1625
+ },
1626
+ "carousel-right-arrow-container": {
1627
+ display: "none",
1628
+ },
1629
+ "carousel-container-wrapper": {
1630
+ position: "static",
1631
+ },
1632
+ "carousel-navigation": {
1633
+ display: "flex",
1634
+ "column-gap": "sm",
1635
+ "align-items": "center",
1636
+ mobile: {
1637
+ filter: "none",
1638
+ },
1639
+ },
1640
+ "carousel-navigation-arrow-left": {
1641
+ display: "flex",
1642
+ "align-items": "center",
1643
+ "justify-content": "center",
1644
+ "border-radius": "50%",
1645
+ "background-color": "white",
1646
+ color: "text-2",
1647
+ cursor: "pointer",
1648
+ "font-size": "lg",
1649
+ "font-weight": "500",
1650
+ "padding-top": "none",
1651
+ "padding-bottom": "none",
1652
+ "padding-left": "none",
1653
+ "padding-right": "none",
1654
+ "border-color": "transparent",
1655
+ "border-width": "0px",
1656
+ "border-style": "solid",
1657
+ _hover: {
1658
+ opacity: "0.9",
1659
+ },
1660
+ width: "48px",
1661
+ height: "48px",
1662
+ border: "1px solid var(--color-border)",
1663
+ transition: "opacity 0.3s ease, cursor 0.3s ease",
1664
+ mobile: {
1665
+ width: "40px",
1666
+ height: "40px",
1667
+ filter: "none",
1668
+ "padding-top": "none",
1669
+ "padding-bottom": "none",
1670
+ "padding-left": "none",
1671
+ "padding-right": "none",
1672
+ },
1673
+ filter: "none",
1674
+ "box-shadow": "0 2px 8px rgba(0, 0, 0, 0.1)",
1675
+ },
1676
+ "carousel-navigation-arrow-right": {
1677
+ width: "48px",
1678
+ height: "48px",
1679
+ "border-radius": "50%",
1680
+ "background-color": "white",
1681
+ border: "1px solid var(--color-border)",
1682
+ cursor: "pointer",
1683
+ display: "flex",
1684
+ "align-items": "center",
1685
+ "justify-content": "center",
1686
+ transition: "opacity 0.3s ease, cursor 0.3s ease",
1687
+ mobile: {
1688
+ width: "40px",
1689
+ height: "40px",
1690
+ filter: "none",
1691
+ "font-size": "xs",
1692
+ },
1693
+ filter: "none",
1694
+ "box-shadow": "0 2px 8px rgba(0, 0, 0, 0.1)",
1695
+ "padding-top": "none",
1696
+ "padding-bottom": "none",
1697
+ "padding-left": "none",
1698
+ "padding-right": "none",
1699
+ color: "text-3",
1700
+ },
1701
+ "button-prev-icon": {
1702
+ width: "100%",
1703
+ height: "100%",
1704
+ filter: "none",
1705
+ mobile: {
1706
+ width: "100%",
1707
+ height: "100%",
1708
+ filter: "none",
1709
+ },
1710
+ },
1711
+ "button-next-icon": {
1712
+ width: "100%",
1713
+ height: "100%",
1714
+ filter: "none",
1715
+ mobile: {
1716
+ width: "100%",
1717
+ height: "100%",
1718
+ filter: "none",
1719
+ },
1720
+ },
1721
+ testimonials_levoGroup: {
1722
+ number_of_slides: 3,
1723
+ filter: "none",
1724
+ mobile: {
1725
+ filter: "none",
1726
+ number_of_slides: 1,
1727
+ },
1728
+ tablet: {
1729
+ filter: "none",
1730
+ number_of_slides: 2,
1731
+ },
1732
+ },
1733
+ testimonials: [
1734
+ {
1735
+ testimonial: {
1736
+ display: "flex",
1737
+ "box-shadow": "xl",
1738
+ "border-radius": "xl",
1739
+ "align-items": "center",
1740
+ overflow: "hidden",
1741
+ tablet: {
1742
+ "flex-direction": "column",
1743
+ filter: "none",
1744
+ },
1745
+ filter: "none",
1746
+ "justify-content": "center",
1747
+ width: "100%",
1748
+ "flex-direction": "column",
1749
+ "border-style": "solid",
1750
+ "border-width": "1px",
1751
+ "padding-bottom": "xs",
1752
+ "padding-left": "xs",
1753
+ "padding-right": "xs",
1754
+ "padding-top": "xs",
1755
+ "row-gap": "lg",
1756
+ mobile: {
1757
+ filter: "none",
1758
+ "margin-left": "none",
1759
+ "margin-right": "none",
1760
+ },
1761
+ },
1762
+ "cover-container": {
1763
+ tablet: {
1764
+ width: "100%",
1765
+ },
1766
+ filter: "none",
1767
+ mobile: {
1768
+ filter: "none",
1769
+ width: "100%",
1770
+ },
1771
+ },
1772
+ cover: {
1773
+ height: "100%",
1774
+ width: "100%",
1775
+ "object-fit": "contain",
1776
+ tablet: {
1777
+ "max-width": "100%",
1778
+ },
1779
+ filter: "none",
1780
+ mobile: {
1781
+ filter: "none",
1782
+ },
1783
+ },
1784
+ cover_embed: {},
1785
+ "testimonial-content-wrapper": {
1786
+ display: "block",
1787
+ "align-items": "center",
1788
+ "row-gap": "none",
1789
+ "column-gap": "none",
1790
+ "border-top-right-radius": "3xl",
1791
+ "border-bottom-right-radius": "3xl",
1792
+ tablet: {
1793
+ flex: "unset",
1794
+ filter: "none",
1795
+ },
1796
+ mobile: {
1797
+ filter: "none",
1798
+ },
1799
+ filter: "none",
1800
+ height: "auto",
1801
+ width: "100%",
1802
+ },
1803
+ "testimonial-content": {
1804
+ display: "flex",
1805
+ flex: "1",
1806
+ "align-items": "flex-start",
1807
+ "row-gap": "xl",
1808
+ "column-gap": "xl",
1809
+ mobile: {
1810
+ "column-gap": "sm",
1811
+ },
1812
+ },
1813
+ icon: {
1814
+ height: "auto",
1815
+ width: "40px",
1816
+ tablet: {
1817
+ height: "auto",
1818
+ width: "28px",
1819
+ },
1820
+ mobile: {
1821
+ height: "auto",
1822
+ width: "20px",
1823
+ },
1824
+ filter: "none",
1825
+ },
1826
+ "testimonial-info": {
1827
+ display: "flex",
1828
+ flex: "1",
1829
+ "flex-direction": "column",
1830
+ "row-gap": "7xl",
1831
+ tablet: {
1832
+ "row-gap": "xl",
1833
+ },
1834
+ },
1835
+ "testimonial-text": {
1836
+ color: "var(--color-text-1)",
1837
+ "font-size": "xl",
1838
+ "font-weight": 700,
1839
+ tablet: {
1840
+ "font-size": "lg",
1841
+ filter: "none",
1842
+ },
1843
+ mobile: {
1844
+ "font-size": "lg",
1845
+ filter: "none",
1846
+ },
1847
+ filter: "none",
1848
+ width: "100%",
1849
+ "text-align": "center",
1850
+ },
1851
+ "author-wrapper": {
1852
+ display: "none",
1853
+ "flex-direction": "column",
1854
+ "row-gap": "4xs",
1855
+ filter: "none",
1856
+ },
1857
+ "author-name": {
1858
+ color: "var(--color-text-1)",
1859
+ "font-size": "xl",
1860
+ "font-weight": "bold",
1861
+ mobile: {
1862
+ "font-size": "lg",
1863
+ },
1864
+ filter: "none",
1865
+ },
1866
+ "author-position": {
1867
+ color: "var(--color-text-2)",
1868
+ "font-size": "base",
1869
+ mobile: {
1870
+ "font-size": "sm",
1871
+ },
1872
+ filter: "none",
1873
+ "font-weight": 400,
1874
+ },
1875
+ },
1876
+ {
1877
+ testimonial: {
1878
+ display: "flex",
1879
+ "box-shadow": "xl",
1880
+ "border-radius": "xl",
1881
+ "align-items": "center",
1882
+ overflow: "hidden",
1883
+ tablet: {
1884
+ "flex-direction": "column",
1885
+ },
1886
+ filter: "none",
1887
+ "justify-content": "center",
1888
+ width: "100%",
1889
+ "flex-direction": "column",
1890
+ "border-style": "solid",
1891
+ "border-width": "1px",
1892
+ "padding-bottom": "xs",
1893
+ "padding-left": "xs",
1894
+ "padding-right": "xs",
1895
+ "padding-top": "xs",
1896
+ "row-gap": "lg",
1897
+ mobile: {
1898
+ filter: "none",
1899
+ "margin-left": "none",
1900
+ "margin-right": "none",
1901
+ },
1902
+ },
1903
+ "cover-container": {
1904
+ tablet: {
1905
+ width: "100%",
1906
+ },
1907
+ filter: "none",
1908
+ mobile: {
1909
+ filter: "none",
1910
+ width: "100%",
1911
+ },
1912
+ },
1913
+ cover: {
1914
+ height: "100%",
1915
+ width: "100%",
1916
+ "object-fit": "contain",
1917
+ tablet: {
1918
+ "max-width": "100%",
1919
+ },
1920
+ filter: "none",
1921
+ },
1922
+ cover_embed: {},
1923
+ "testimonial-content-wrapper": {
1924
+ display: "block",
1925
+ "align-items": "center",
1926
+ "row-gap": "none",
1927
+ "column-gap": "none",
1928
+ "border-top-right-radius": "3xl",
1929
+ "border-bottom-right-radius": "3xl",
1930
+ tablet: {
1931
+ flex: "unset",
1932
+ filter: "none",
1933
+ },
1934
+ mobile: {
1935
+ filter: "none",
1936
+ },
1937
+ filter: "none",
1938
+ height: "auto",
1939
+ width: "100%",
1940
+ },
1941
+ "testimonial-content": {
1942
+ display: "flex",
1943
+ flex: "1",
1944
+ "align-items": "flex-start",
1945
+ "row-gap": "xl",
1946
+ "column-gap": "xl",
1947
+ mobile: {
1948
+ "column-gap": "sm",
1949
+ },
1950
+ },
1951
+ icon: {
1952
+ height: "auto",
1953
+ width: "40px",
1954
+ tablet: {
1955
+ height: "auto",
1956
+ width: "28px",
1957
+ },
1958
+ mobile: {
1959
+ height: "auto",
1960
+ width: "20px",
1961
+ },
1962
+ filter: "none",
1963
+ },
1964
+ "testimonial-info": {
1965
+ display: "flex",
1966
+ flex: "1",
1967
+ "flex-direction": "column",
1968
+ "row-gap": "7xl",
1969
+ tablet: {
1970
+ "row-gap": "xl",
1971
+ },
1972
+ filter: "none",
1973
+ },
1974
+ "testimonial-text": {
1975
+ "font-family": "var(--font-body)",
1976
+ color: "var(--color-text-1)",
1977
+ "font-size": "xl",
1978
+ "line-height": "normal",
1979
+ "font-weight": 700,
1980
+ tablet: {
1981
+ "font-size": "lg",
1982
+ filter: "none",
1983
+ },
1984
+ mobile: {
1985
+ "font-size": "lg",
1986
+ },
1987
+ filter: "none",
1988
+ width: "100%",
1989
+ "text-align": "center",
1990
+ },
1991
+ "author-wrapper": {
1992
+ display: "none",
1993
+ "flex-direction": "column",
1994
+ "row-gap": "4xs",
1995
+ filter: "none",
1996
+ },
1997
+ "author-name": {
1998
+ color: "var(--color-text-1)",
1999
+ "font-size": "xl",
2000
+ "font-weight": "bold",
2001
+ mobile: {
2002
+ "font-size": "lg",
2003
+ },
2004
+ filter: "none",
2005
+ },
2006
+ "author-position": {
2007
+ color: "var(--color-text-2)",
2008
+ "font-size": "base",
2009
+ mobile: {
2010
+ "font-size": "sm",
2011
+ },
2012
+ filter: "none",
2013
+ "font-weight": 400,
2014
+ },
2015
+ },
2016
+ {
2017
+ testimonial: {
2018
+ display: "flex",
2019
+ "box-shadow": "xl",
2020
+ "border-radius": "xl",
2021
+ "align-items": "center",
2022
+ overflow: "hidden",
2023
+ tablet: {
2024
+ "flex-direction": "column",
2025
+ },
2026
+ filter: "none",
2027
+ "justify-content": "center",
2028
+ width: "100%",
2029
+ "flex-direction": "column",
2030
+ "border-style": "solid",
2031
+ "border-width": "1px",
2032
+ "padding-bottom": "xs",
2033
+ "padding-left": "xs",
2034
+ "padding-right": "xs",
2035
+ "padding-top": "xs",
2036
+ "row-gap": "lg",
2037
+ mobile: {
2038
+ filter: "none",
2039
+ "margin-right": "none",
2040
+ "padding-left": "sm",
2041
+ "margin-left": "none",
2042
+ },
2043
+ },
2044
+ "cover-container": {
2045
+ tablet: {
2046
+ width: "100%",
2047
+ },
2048
+ filter: "none",
2049
+ mobile: {
2050
+ filter: "none",
2051
+ width: "100%",
2052
+ },
2053
+ },
2054
+ cover: {
2055
+ height: "100%",
2056
+ width: "100%",
2057
+ "object-fit": "contain",
2058
+ tablet: {
2059
+ "max-width": "100%",
2060
+ },
2061
+ filter: "none",
2062
+ },
2063
+ cover_embed: {},
2064
+ "testimonial-content-wrapper": {
2065
+ display: "block",
2066
+ "align-items": "center",
2067
+ "row-gap": "none",
2068
+ "column-gap": "none",
2069
+ "border-top-right-radius": "3xl",
2070
+ "border-bottom-right-radius": "3xl",
2071
+ tablet: {
2072
+ flex: "unset",
2073
+ filter: "none",
2074
+ },
2075
+ mobile: {
2076
+ filter: "none",
2077
+ },
2078
+ filter: "none",
2079
+ height: "auto",
2080
+ width: "100%",
2081
+ },
2082
+ "testimonial-content": {
2083
+ display: "flex",
2084
+ flex: "1",
2085
+ "align-items": "flex-start",
2086
+ "row-gap": "xl",
2087
+ "column-gap": "xl",
2088
+ mobile: {
2089
+ "column-gap": "sm",
2090
+ },
2091
+ },
2092
+ icon: {
2093
+ height: "auto",
2094
+ width: "40px",
2095
+ tablet: {
2096
+ height: "auto",
2097
+ width: "28px",
2098
+ },
2099
+ mobile: {
2100
+ height: "auto",
2101
+ width: "20px",
2102
+ },
2103
+ filter: "none",
2104
+ },
2105
+ "testimonial-info": {
2106
+ display: "block",
2107
+ "align-items": "center",
2108
+ "row-gap": "none",
2109
+ "column-gap": "none",
2110
+ "border-top-right-radius": "3xl",
2111
+ "border-bottom-right-radius": "3xl",
2112
+ tablet: {
2113
+ flex: "unset",
2114
+ filter: "none",
2115
+ },
2116
+ mobile: {
2117
+ filter: "none",
2118
+ },
2119
+ filter: "none",
2120
+ height: "auto",
2121
+ width: "100%",
2122
+ },
2123
+ "testimonial-text": {
2124
+ "font-family": "var(--font-body)",
2125
+ color: "var(--color-text-1)",
2126
+ "font-size": "xl",
2127
+ "line-height": "normal",
2128
+ "font-weight": 700,
2129
+ tablet: {
2130
+ "font-size": "lg",
2131
+ filter: "none",
2132
+ },
2133
+ mobile: {
2134
+ "font-size": "lg",
2135
+ filter: "none",
2136
+ },
2137
+ filter: "none",
2138
+ width: "100%",
2139
+ "text-align": "center",
2140
+ },
2141
+ "author-wrapper": {
2142
+ display: "none",
2143
+ "flex-direction": "column",
2144
+ "row-gap": "4xs",
2145
+ filter: "none",
2146
+ },
2147
+ "author-name": {
2148
+ color: "var(--color-text-1)",
2149
+ "font-size": "xl",
2150
+ "font-weight": "bold",
2151
+ mobile: {
2152
+ "font-size": "lg",
2153
+ },
2154
+ filter: "none",
2155
+ },
2156
+ "author-position": {
2157
+ color: "var(--color-text-2)",
2158
+ "font-size": "base",
2159
+ mobile: {
2160
+ "font-size": "sm",
2161
+ },
2162
+ filter: "none",
2163
+ "font-weight": 400,
2164
+ },
2165
+ },
2166
+ ],
2167
+ container: {
2168
+ filter: "none",
2169
+ mobile: {
2170
+ filter: "none",
2171
+ "padding-left": "sm",
2172
+ "padding-right": "sm",
2173
+ },
2174
+ tablet: {
2175
+ filter: "none",
2176
+ },
2177
+ "padding-left": "none",
2178
+ "padding-right": "none",
2179
+ },
2180
+ layout: {
2181
+ filter: "none",
2182
+ },
2183
+ "carousel-navigation-arrow-left_leftIcon": {
2184
+ filter: "none",
2185
+ height: "24px",
2186
+ width: "24px",
2187
+ "font-size": "24px",
2188
+ },
2189
+ "carousel-navigation-arrow-right_rightIcon": {
2190
+ filter: "none",
2191
+ height: "24px",
2192
+ width: "24px",
2193
+ "font-size": "24px",
2194
+ },
2195
+ },
2196
+ config: {
2197
+ testimonials_levoGroup: {
2198
+ carousel: {
2199
+ loop: true,
2200
+ },
2201
+ },
2202
+ "carousel-navigation-arrow-left": {
2203
+ button_icons: {
2204
+ left: {
2205
+ enabled: true,
2206
+ },
2207
+ },
2208
+ selectedVariants: {
2209
+ Button_Sizes: "XS",
2210
+ },
2211
+ },
2212
+ "carousel-navigation-arrow-right": {
2213
+ button_icons: {
2214
+ right: {
2215
+ enabled: true,
2216
+ },
2217
+ },
2218
+ },
2219
+ },
2220
+ content: DEFAULT_CONTENT_CARD_CAROUSEL,
2221
+ },
2222
+
2223
+ {
2224
+ key: "card-carousel_variant_3",
2225
+ title: "Card Carousel Variant 3",
2226
+ styles: {
2227
+ header: {
2228
+ position: "relative",
2229
+ display: "flex",
2230
+ width: "100%",
2231
+ "align-items": "center",
2232
+ "row-gap": "2xs",
2233
+ "column-gap": "2xs",
2234
+ mobile: {
2235
+ "flex-direction": "column",
2236
+ "row-gap": "md",
2237
+ filter: "none",
2238
+ "justify-content": "center",
2239
+ "align-items": "center",
2240
+ "padding-bottom": "none",
2241
+ },
2242
+ tablet: {
2243
+ "margin-bottom": "base",
2244
+ "padding-bottom": "5xl",
2245
+ },
2246
+ filter: "none",
2247
+ "padding-bottom": "10xl",
2248
+ },
2249
+ "header-content": {
2250
+ display: "flex",
2251
+ flex: "1",
2252
+ "flex-direction": "column",
2253
+ "align-items": "center",
2254
+ "justify-content": "center",
2255
+ "row-gap": "2xs",
2256
+ "column-gap": "2xs",
2257
+ filter: "none",
2258
+ },
2259
+ "badge-container": {
2260
+ "border-radius": "20px",
2261
+ "background-color": "brandSecondary",
2262
+ "padding-left": "lg",
2263
+ "padding-right": "lg",
2264
+ "padding-top": "4xs",
2265
+ "padding-bottom": "4xs",
2266
+ filter: "none",
2267
+ display: "none",
2268
+ },
2269
+ "badge-text": {
2270
+ "font-size": "base",
2271
+ "line-height": 1.625,
2272
+ "font-weight": 500,
2273
+ color: "var(--color-text-1)",
2274
+ mobile: {
2275
+ "font-size": "sm",
2276
+ },
2277
+ },
2278
+ title: {
2279
+ mobile: {
2280
+ "font-size": "2xl",
2281
+ },
2282
+ filter: "none",
2283
+ },
2284
+ "carousel-navigation-top-container": {
2285
+ display: "none",
2286
+ },
2287
+ "carousel-navigation-bottom-container": {
2288
+ display: "none",
2289
+ },
2290
+ "carousel-left-arrow-container": {
2291
+ position: "absolute",
2292
+ left: "-60px",
2293
+ top: "50%",
2294
+ transform: "translateY(-50%)",
2295
+ "z-index": "10",
2296
+ tablet: {
2297
+ left: "-50px",
2298
+ },
2299
+ mobile: {
2300
+ left: "10px",
2301
+ },
2302
+ },
2303
+ "carousel-right-arrow-container": {
2304
+ position: "absolute",
2305
+ right: "-60px",
2306
+ top: "50%",
2307
+ transform: "translateY(-50%)",
2308
+ "z-index": "10",
2309
+ tablet: {
2310
+ right: "-50px",
2311
+ },
2312
+ mobile: {
2313
+ right: "10px",
2314
+ },
2315
+ },
2316
+ "carousel-container-wrapper": {
2317
+ position: "relative",
2318
+ },
2319
+ "carousel-navigation": {
2320
+ display: "flex",
2321
+ "column-gap": "sm",
2322
+ "align-items": "center",
2323
+ mobile: {
2324
+ filter: "none",
2325
+ display: "flex",
2326
+ },
2327
+ tablet: {
2328
+ display: "flex",
2329
+ "flex-direction": "row",
2330
+ "justify-content": "center",
2331
+ "align-items": "center",
2332
+ "padding-top": "5xl",
2333
+ },
2334
+ },
2335
+ "carousel-navigation-arrow-left": {
2336
+ display: "flex",
2337
+ "align-items": "center",
2338
+ "justify-content": "center",
2339
+ "border-radius": "50%",
2340
+ "background-color": "white",
2341
+ color: "text-2",
2342
+ cursor: "pointer",
2343
+ "font-size": "lg",
2344
+ "font-weight": "500",
2345
+ "padding-top": "none",
2346
+ "padding-bottom": "none",
2347
+ "padding-left": "none",
2348
+ "padding-right": "none",
2349
+ "border-color": "transparent",
2350
+ "border-width": "0px",
2351
+ "border-style": "solid",
2352
+ _hover: {
2353
+ opacity: "0.9",
2354
+ },
2355
+ width: "48px",
2356
+ height: "48px",
2357
+ border: "1px solid var(--color-border)",
2358
+ transition: "opacity 0.3s ease, cursor 0.3s ease",
2359
+ mobile: {
2360
+ width: "40px",
2361
+ height: "40px",
2362
+ filter: "none",
2363
+ "padding-top": "none",
2364
+ "padding-bottom": "none",
2365
+ "padding-left": "none",
2366
+ "padding-right": "none",
2367
+ },
2368
+ filter: "none",
2369
+ "box-shadow": "0 2px 8px rgba(0, 0, 0, 0.1)",
2370
+ "column-gap": "none",
2371
+ },
2372
+ "carousel-navigation-arrow-right": {
2373
+ width: "48px",
2374
+ height: "48px",
2375
+ "border-radius": "50%",
2376
+ "background-color": "white",
2377
+ border: "1px solid var(--color-border)",
2378
+ cursor: "pointer",
2379
+ display: "flex",
2380
+ "align-items": "center",
2381
+ "justify-content": "center",
2382
+ transition: "opacity 0.3s ease, cursor 0.3s ease",
2383
+ mobile: {
2384
+ width: "40px",
2385
+ height: "40px",
2386
+ filter: "none",
2387
+ "font-size": "xs",
2388
+ },
2389
+ filter: "none",
2390
+ "box-shadow": "0 2px 8px rgba(0, 0, 0, 0.1)",
2391
+ "padding-top": "none",
2392
+ "padding-bottom": "none",
2393
+ "padding-left": "none",
2394
+ "padding-right": "none",
2395
+ "column-gap": "none",
2396
+ color: "text-3",
2397
+ tablet: {
2398
+ filter: "none",
2399
+ },
2400
+ },
2401
+ "button-prev-icon": {
2402
+ width: "100%",
2403
+ height: "100%",
2404
+ filter: "none",
2405
+ mobile: {
2406
+ width: "100%",
2407
+ height: "100%",
2408
+ filter: "none",
2409
+ },
2410
+ },
2411
+ "button-next-icon": {
2412
+ width: "100%",
2413
+ height: "100%",
2414
+ filter: "none",
2415
+ mobile: {
2416
+ width: "100%",
2417
+ height: "100%",
2418
+ filter: "none",
2419
+ },
2420
+ },
2421
+ testimonials_levoGroup: {
2422
+ number_of_slides: 1,
2423
+ filter: "none",
2424
+ mobile: {
2425
+ filter: "none",
2426
+ },
2427
+ },
2428
+ testimonials: [
2429
+ {
2430
+ testimonial: {
2431
+ display: "flex",
2432
+ "box-shadow": "xl",
2433
+ "border-radius": "3xl",
2434
+ "align-items": "center",
2435
+ overflow: "hidden",
2436
+ tablet: {
2437
+ "flex-direction": "column",
2438
+ width: "auto",
2439
+ },
2440
+ filter: "none",
2441
+ "justify-content": "center",
2442
+ width: "100%",
2443
+ "column-gap": "none",
2444
+ },
2445
+ "cover-container": {
2446
+ "max-width": "45%",
2447
+ tablet: {
2448
+ "max-width": "100%",
2449
+ },
2450
+ },
2451
+ cover: {
2452
+ height: "100%",
2453
+ width: "100%",
2454
+ "object-fit": "contain",
2455
+ tablet: {
2456
+ "max-width": "100%",
2457
+ "object-fit": "none",
2458
+ },
2459
+ filter: "none",
2460
+ },
2461
+ cover_embed: {},
2462
+ "testimonial-content-wrapper": {
2463
+ display: "flex",
2464
+ flex: "1",
2465
+ "align-items": "center",
2466
+ "row-gap": "none",
2467
+ "column-gap": "none",
2468
+ padding: "7xl",
2469
+ tablet: {
2470
+ flex: "unset",
2471
+ padding: "4xl",
2472
+ "border-top-right-radius": "0",
2473
+ "border-bottom-left-radius": "3xl",
2474
+ "border-bottom-right-radius": "3xl",
2475
+ },
2476
+ mobile: {
2477
+ padding: "lg",
2478
+ },
2479
+ filter: "none",
2480
+ "background-color": "white",
2481
+ "padding-top": "9xl",
2482
+ "padding-bottom": "9xl",
2483
+ "padding-left": "xl",
2484
+ "padding-right": "xl",
2485
+ height: "max-content",
2486
+ },
2487
+ "testimonial-content": {
2488
+ display: "flex",
2489
+ flex: "1",
2490
+ "align-items": "flex-start",
2491
+ "row-gap": "xl",
2492
+ "column-gap": "sm",
2493
+ mobile: {
2494
+ "column-gap": "sm",
2495
+ },
2496
+ },
2497
+ icon: {
2498
+ height: "auto",
2499
+ width: "40px",
2500
+ tablet: {
2501
+ height: "auto",
2502
+ width: "28px",
2503
+ },
2504
+ mobile: {
2505
+ height: "auto",
2506
+ width: "20px",
2507
+ },
2508
+ "margin-top": "7xl",
2509
+ },
2510
+ "testimonial-info": {
2511
+ display: "flex",
2512
+ flex: "1",
2513
+ "flex-direction": "column-reverse",
2514
+ "row-gap": "base",
2515
+ tablet: {
2516
+ "row-gap": "xl",
2517
+ },
2518
+ },
2519
+ "testimonial-text": {
2520
+ color: "var(--color-text-1)",
2521
+ "font-size": "lg",
2522
+ "font-weight": 400,
2523
+ tablet: {
2524
+ "font-size": "2xl",
2525
+ },
2526
+ mobile: {
2527
+ "font-size": "lg",
2528
+ },
2529
+ filter: "none",
2530
+ },
2531
+ "author-wrapper": {
2532
+ display: "flex",
2533
+ "flex-direction": "row",
2534
+ "row-gap": "4xs",
2535
+ "align-items": "center",
2536
+ "column-gap": "2xs",
2537
+ mobile: {
2538
+ "flex-direction": "column",
2539
+ "justify-content": "start",
2540
+ "align-items": "start",
2541
+ },
2542
+ },
2543
+ "author-name": {
2544
+ color: "var(--color-text-1)",
2545
+ "font-size": "lg",
2546
+ "font-weight": "bold",
2547
+ mobile: {
2548
+ "font-size": "lg",
2549
+ },
2550
+ filter: "none",
2551
+ },
2552
+ "author-position": {
2553
+ color: "var(--color-text-2)",
2554
+ "font-size": "base",
2555
+ mobile: {
2556
+ "font-size": "sm",
2557
+ },
2558
+ filter: "none",
2559
+ "font-weight": 400,
2560
+ },
2561
+ },
2562
+ {
2563
+ testimonial: {
2564
+ display: "flex",
2565
+ "box-shadow": "xl",
2566
+ "border-radius": "3xl",
2567
+ "align-items": "center",
2568
+ overflow: "hidden",
2569
+ tablet: {
2570
+ "flex-direction": "column",
2571
+ },
2572
+ filter: "none",
2573
+ "justify-content": "center",
2574
+ width: "100%",
2575
+ "column-gap": "none",
2576
+ },
2577
+ "cover-container": {
2578
+ "max-width": "45%",
2579
+ tablet: {
2580
+ "max-width": "100%",
2581
+ },
2582
+ },
2583
+ cover: {
2584
+ height: "100%",
2585
+ width: "100%",
2586
+ "object-fit": "contain",
2587
+ tablet: {
2588
+ "max-width": "100%",
2589
+ "object-fit": "none",
2590
+ },
2591
+ filter: "none",
2592
+ },
2593
+ cover_embed: {},
2594
+ "testimonial-content-wrapper": {
2595
+ display: "flex",
2596
+ flex: "1",
2597
+ "align-items": "center",
2598
+ "row-gap": "none",
2599
+ "column-gap": "none",
2600
+ padding: "7xl",
2601
+ tablet: {
2602
+ flex: "unset",
2603
+ padding: "4xl",
2604
+ "border-top-right-radius": "0",
2605
+ "border-bottom-left-radius": "3xl",
2606
+ "border-bottom-right-radius": "3xl",
2607
+ },
2608
+ mobile: {
2609
+ padding: "lg",
2610
+ },
2611
+ filter: "none",
2612
+ "background-color": "white",
2613
+ "padding-top": "9xl",
2614
+ "padding-bottom": "9xl",
2615
+ "padding-left": "xl",
2616
+ "padding-right": "xl",
2617
+ height: "max-content",
2618
+ },
2619
+ "testimonial-content": {
2620
+ display: "flex",
2621
+ flex: "1",
2622
+ "align-items": "flex-start",
2623
+ "row-gap": "xl",
2624
+ "column-gap": "sm",
2625
+ mobile: {
2626
+ "column-gap": "sm",
2627
+ },
2628
+ },
2629
+ icon: {
2630
+ height: "auto",
2631
+ width: "40px",
2632
+ tablet: {
2633
+ height: "auto",
2634
+ width: "28px",
2635
+ },
2636
+ mobile: {
2637
+ height: "auto",
2638
+ width: "20px",
2639
+ },
2640
+ "margin-top": "7xl",
2641
+ },
2642
+ "testimonial-info": {
2643
+ display: "flex",
2644
+ flex: "1",
2645
+ "flex-direction": "column-reverse",
2646
+ "row-gap": "base",
2647
+ tablet: {
2648
+ "row-gap": "xl",
2649
+ },
2650
+ },
2651
+ "testimonial-text": {
2652
+ color: "var(--color-text-1)",
2653
+ "font-size": "lg",
2654
+ "font-weight": 400,
2655
+ tablet: {
2656
+ "font-size": "2xl",
2657
+ },
2658
+ mobile: {
2659
+ "font-size": "lg",
2660
+ },
2661
+ filter: "none",
2662
+ },
2663
+ "author-wrapper": {
2664
+ display: "flex",
2665
+ "flex-direction": "row",
2666
+ "row-gap": "4xs",
2667
+ "align-items": "center",
2668
+ "column-gap": "2xs",
2669
+ mobile: {
2670
+ "flex-direction": "column",
2671
+ "justify-content": "start",
2672
+ "align-items": "start",
2673
+ },
2674
+ },
2675
+ "author-name": {
2676
+ color: "var(--color-text-1)",
2677
+ "font-size": "lg",
2678
+ "font-weight": "bold",
2679
+ mobile: {
2680
+ "font-size": "lg",
2681
+ },
2682
+ filter: "none",
2683
+ },
2684
+ "author-position": {
2685
+ color: "var(--color-text-2)",
2686
+ "font-size": "base",
2687
+ mobile: {
2688
+ "font-size": "sm",
2689
+ },
2690
+ filter: "none",
2691
+ "font-weight": 400,
2692
+ },
2693
+ },
2694
+ {
2695
+ testimonial: {
2696
+ display: "flex",
2697
+ "box-shadow": "xl",
2698
+ "border-radius": "3xl",
2699
+ "align-items": "center",
2700
+ overflow: "hidden",
2701
+ tablet: {
2702
+ "flex-direction": "column",
2703
+ },
2704
+ filter: "none",
2705
+ "justify-content": "center",
2706
+ width: "100%",
2707
+ "column-gap": "none",
2708
+ },
2709
+ "cover-container": {
2710
+ "max-width": "45%",
2711
+ tablet: {
2712
+ "max-width": "100%",
2713
+ },
2714
+ },
2715
+ cover: {
2716
+ height: "100%",
2717
+ width: "100%",
2718
+ "object-fit": "contain",
2719
+ tablet: {
2720
+ "max-width": "100%",
2721
+ "object-fit": "none",
2722
+ },
2723
+ filter: "none",
2724
+ },
2725
+ cover_embed: {},
2726
+ "testimonial-content-wrapper": {
2727
+ display: "flex",
2728
+ flex: "1",
2729
+ "align-items": "center",
2730
+ "row-gap": "none",
2731
+ "column-gap": "none",
2732
+ padding: "7xl",
2733
+ tablet: {
2734
+ flex: "unset",
2735
+ padding: "4xl",
2736
+ "border-top-right-radius": "0",
2737
+ "border-bottom-left-radius": "3xl",
2738
+ "border-bottom-right-radius": "3xl",
2739
+ width: "fit-content",
2740
+ height: "auto",
2741
+ "padding-top": "xl",
2742
+ "padding-bottom": "xl",
2743
+ },
2744
+ mobile: {
2745
+ padding: "lg",
2746
+ },
2747
+ filter: "none",
2748
+ "background-color": "white",
2749
+ "padding-top": "9xl",
2750
+ "padding-bottom": "9xl",
2751
+ "padding-left": "xl",
2752
+ "padding-right": "xl",
2753
+ height: "max-content",
2754
+ },
2755
+ "testimonial-content": {
2756
+ display: "flex",
2757
+ flex: "1",
2758
+ "align-items": "flex-start",
2759
+ "row-gap": "xl",
2760
+ "column-gap": "sm",
2761
+ mobile: {
2762
+ "column-gap": "sm",
2763
+ },
2764
+ },
2765
+ icon: {
2766
+ height: "auto",
2767
+ width: "40px",
2768
+ tablet: {
2769
+ height: "auto",
2770
+ width: "28px",
2771
+ },
2772
+ mobile: {
2773
+ height: "auto",
2774
+ width: "20px",
2775
+ },
2776
+ "margin-top": "7xl",
2777
+ },
2778
+ "testimonial-info": {
2779
+ display: "flex",
2780
+ flex: "1",
2781
+ "flex-direction": "column-reverse",
2782
+ "row-gap": "base",
2783
+ tablet: {
2784
+ "row-gap": "xl",
2785
+ },
2786
+ },
2787
+ "testimonial-text": {
2788
+ color: "var(--color-text-1)",
2789
+ "font-size": "lg",
2790
+ "font-weight": 400,
2791
+ tablet: {
2792
+ "font-size": "2xl",
2793
+ },
2794
+ mobile: {
2795
+ "font-size": "lg",
2796
+ },
2797
+ filter: "none",
2798
+ },
2799
+ "author-wrapper": {
2800
+ display: "flex",
2801
+ "flex-direction": "row",
2802
+ "row-gap": "4xs",
2803
+ "align-items": "center",
2804
+ "column-gap": "2xs",
2805
+ mobile: {
2806
+ "flex-direction": "column",
2807
+ "justify-content": "start",
2808
+ "align-items": "start",
2809
+ },
2810
+ },
2811
+ "author-name": {
2812
+ color: "var(--color-text-1)",
2813
+ "font-size": "lg",
2814
+ "font-weight": "bold",
2815
+ mobile: {
2816
+ "font-size": "lg",
2817
+ },
2818
+ filter: "none",
2819
+ },
2820
+ "author-position": {
2821
+ color: "var(--color-text-2)",
2822
+ "font-size": "base",
2823
+ mobile: {
2824
+ "font-size": "sm",
2825
+ },
2826
+ filter: "none",
2827
+ "font-weight": 400,
2828
+ },
2829
+ },
2830
+ {
2831
+ testimonial: {
2832
+ display: "flex",
2833
+ "box-shadow": "xl",
2834
+ "border-radius": "3xl",
2835
+ "align-items": "center",
2836
+ overflow: "hidden",
2837
+ tablet: {
2838
+ "flex-direction": "column",
2839
+ },
2840
+ filter: "none",
2841
+ "justify-content": "center",
2842
+ width: "100%",
2843
+ "column-gap": "none",
2844
+ },
2845
+ "cover-container": {
2846
+ "max-width": "45%",
2847
+ tablet: {
2848
+ "max-width": "100%",
2849
+ },
2850
+ },
2851
+ cover: {
2852
+ height: "100%",
2853
+ width: "100%",
2854
+ "object-fit": "contain",
2855
+ tablet: {
2856
+ "max-width": "100%",
2857
+ },
2858
+ filter: "none",
2859
+ },
2860
+ cover_embed: {},
2861
+ "testimonial-content-wrapper": {
2862
+ display: "flex",
2863
+ flex: "1",
2864
+ "align-items": "center",
2865
+ "row-gap": "none",
2866
+ "column-gap": "none",
2867
+ padding: "7xl",
2868
+ tablet: {
2869
+ flex: "unset",
2870
+ padding: "4xl",
2871
+ "border-top-right-radius": "0",
2872
+ "border-bottom-left-radius": "3xl",
2873
+ "border-bottom-right-radius": "3xl",
2874
+ },
2875
+ mobile: {
2876
+ padding: "lg",
2877
+ },
2878
+ filter: "none",
2879
+ "background-color": "white",
2880
+ "padding-top": "9xl",
2881
+ "padding-bottom": "9xl",
2882
+ "padding-left": "xl",
2883
+ "padding-right": "xl",
2884
+ height: "max-content",
2885
+ },
2886
+ "testimonial-content": {
2887
+ display: "flex",
2888
+ flex: "1",
2889
+ "align-items": "flex-start",
2890
+ "row-gap": "xl",
2891
+ "column-gap": "sm",
2892
+ mobile: {
2893
+ "column-gap": "sm",
2894
+ },
2895
+ },
2896
+ icon: {
2897
+ height: "auto",
2898
+ width: "40px",
2899
+ tablet: {
2900
+ height: "auto",
2901
+ width: "28px",
2902
+ },
2903
+ mobile: {
2904
+ height: "auto",
2905
+ width: "20px",
2906
+ },
2907
+ "margin-top": "7xl",
2908
+ },
2909
+ "testimonial-info": {
2910
+ display: "flex",
2911
+ flex: "1",
2912
+ "flex-direction": "column-reverse",
2913
+ "row-gap": "base",
2914
+ tablet: {
2915
+ "row-gap": "xl",
2916
+ },
2917
+ },
2918
+ "testimonial-text": {
2919
+ color: "var(--color-text-1)",
2920
+ "font-size": "lg",
2921
+ "font-weight": 400,
2922
+ tablet: {
2923
+ "font-size": "2xl",
2924
+ },
2925
+ mobile: {
2926
+ "font-size": "lg",
2927
+ },
2928
+ filter: "none",
2929
+ },
2930
+ "author-wrapper": {
2931
+ display: "flex",
2932
+ "flex-direction": "column",
2933
+ "row-gap": "4xs",
2934
+ },
2935
+ "author-name": {
2936
+ color: "var(--color-text-1)",
2937
+ "font-size": "xl",
2938
+ "font-weight": "bold",
2939
+ mobile: {
2940
+ "font-size": "lg",
2941
+ },
2942
+ filter: "none",
2943
+ },
2944
+ "author-position": {
2945
+ color: "var(--color-text-2)",
2946
+ "font-size": "base",
2947
+ mobile: {
2948
+ "font-size": "sm",
2949
+ },
2950
+ filter: "none",
2951
+ "font-weight": 400,
2952
+ },
2953
+ },
2954
+ {
2955
+ testimonial: {
2956
+ display: "flex",
2957
+ "box-shadow": "xl",
2958
+ "border-radius": "3xl",
2959
+ "align-items": "center",
2960
+ overflow: "hidden",
2961
+ tablet: {
2962
+ "flex-direction": "column",
2963
+ },
2964
+ filter: "none",
2965
+ "justify-content": "center",
2966
+ width: "100%",
2967
+ "column-gap": "none",
2968
+ },
2969
+ "cover-container": {
2970
+ "max-width": "45%",
2971
+ tablet: {
2972
+ "max-width": "100%",
2973
+ },
2974
+ },
2975
+ cover: {
2976
+ height: "100%",
2977
+ width: "100%",
2978
+ "object-fit": "contain",
2979
+ tablet: {
2980
+ "max-width": "100%",
2981
+ },
2982
+ filter: "none",
2983
+ },
2984
+ cover_embed: {},
2985
+ "testimonial-content-wrapper": {
2986
+ display: "flex",
2987
+ flex: "1",
2988
+ "align-items": "center",
2989
+ "row-gap": "none",
2990
+ "column-gap": "none",
2991
+ padding: "7xl",
2992
+ tablet: {
2993
+ flex: "unset",
2994
+ padding: "4xl",
2995
+ "border-top-right-radius": "0",
2996
+ "border-bottom-left-radius": "3xl",
2997
+ "border-bottom-right-radius": "3xl",
2998
+ },
2999
+ mobile: {
3000
+ padding: "lg",
3001
+ },
3002
+ filter: "none",
3003
+ "background-color": "white",
3004
+ "padding-top": "9xl",
3005
+ "padding-bottom": "9xl",
3006
+ "padding-left": "xl",
3007
+ "padding-right": "xl",
3008
+ height: "max-content",
3009
+ },
3010
+ "testimonial-content": {
3011
+ display: "flex",
3012
+ flex: "1",
3013
+ "align-items": "flex-start",
3014
+ "row-gap": "xl",
3015
+ "column-gap": "sm",
3016
+ mobile: {
3017
+ "column-gap": "sm",
3018
+ },
3019
+ },
3020
+ icon: {
3021
+ height: "auto",
3022
+ width: "40px",
3023
+ tablet: {
3024
+ height: "auto",
3025
+ width: "28px",
3026
+ },
3027
+ mobile: {
3028
+ height: "auto",
3029
+ width: "20px",
3030
+ },
3031
+ "margin-top": "7xl",
3032
+ },
3033
+ "testimonial-info": {
3034
+ display: "flex",
3035
+ flex: "1",
3036
+ "flex-direction": "column-reverse",
3037
+ "row-gap": "base",
3038
+ tablet: {
3039
+ "row-gap": "xl",
3040
+ },
3041
+ },
3042
+ "testimonial-text": {
3043
+ color: "var(--color-text-1)",
3044
+ "font-size": "lg",
3045
+ "font-weight": 400,
3046
+ tablet: {
3047
+ "font-size": "2xl",
3048
+ },
3049
+ mobile: {
3050
+ "font-size": "lg",
3051
+ },
3052
+ filter: "none",
3053
+ },
3054
+ "author-wrapper": {
3055
+ display: "flex",
3056
+ "flex-direction": "column",
3057
+ "row-gap": "4xs",
3058
+ },
3059
+ "author-name": {
3060
+ color: "var(--color-text-1)",
3061
+ "font-size": "xl",
3062
+ "font-weight": "bold",
3063
+ mobile: {
3064
+ "font-size": "lg",
3065
+ },
3066
+ filter: "none",
3067
+ },
3068
+ "author-position": {
3069
+ color: "var(--color-text-2)",
3070
+ "font-size": "base",
3071
+ mobile: {
3072
+ "font-size": "sm",
3073
+ },
3074
+ filter: "none",
3075
+ "font-weight": 400,
3076
+ },
3077
+ },
3078
+ {
3079
+ testimonial: {
3080
+ display: "flex",
3081
+ "box-shadow": "xl",
3082
+ "border-radius": "3xl",
3083
+ "align-items": "stretch",
3084
+ overflow: "hidden",
3085
+ tablet: {
3086
+ "flex-direction": "column",
3087
+ },
3088
+ filter: "none",
3089
+ "justify-content": "space-between",
3090
+ width: "100%",
3091
+ },
3092
+ "cover-container": {
3093
+ "max-width": "45%",
3094
+ tablet: {
3095
+ "max-width": "100%",
3096
+ },
3097
+ },
3098
+ cover: {
3099
+ height: "100%",
3100
+ width: "100%",
3101
+ "object-fit": "contain",
3102
+ tablet: {
3103
+ "max-width": "100%",
3104
+ },
3105
+ filter: "none",
3106
+ },
3107
+ cover_embed: {},
3108
+ "testimonial-content-wrapper": {
3109
+ display: "flex",
3110
+ flex: "1",
3111
+ "align-items": "center",
3112
+ "row-gap": "7xl",
3113
+ "column-gap": "7xl",
3114
+ "border-top-right-radius": "3xl",
3115
+ "border-bottom-right-radius": "3xl",
3116
+ padding: "7xl",
3117
+ tablet: {
3118
+ flex: "unset",
3119
+ padding: "4xl",
3120
+ "border-top-right-radius": "0",
3121
+ "border-bottom-left-radius": "3xl",
3122
+ "border-bottom-right-radius": "3xl",
3123
+ },
3124
+ mobile: {
3125
+ padding: "lg",
3126
+ },
3127
+ filter: "none",
3128
+ },
3129
+ "testimonial-content": {
3130
+ display: "flex",
3131
+ flex: "1",
3132
+ "align-items": "flex-start",
3133
+ "row-gap": "xl",
3134
+ "column-gap": "xl",
3135
+ mobile: {
3136
+ "column-gap": "sm",
3137
+ },
3138
+ },
3139
+ icon: {
3140
+ height: "auto",
3141
+ width: "40px",
3142
+ tablet: {
3143
+ height: "auto",
3144
+ width: "28px",
3145
+ },
3146
+ mobile: {
3147
+ height: "auto",
3148
+ width: "20px",
3149
+ },
3150
+ },
3151
+ "testimonial-info": {
3152
+ display: "flex",
3153
+ flex: "1",
3154
+ "flex-direction": "column",
3155
+ "row-gap": "7xl",
3156
+ tablet: {
3157
+ "row-gap": "xl",
3158
+ },
3159
+ },
3160
+ "testimonial-text": {
3161
+ color: "var(--color-text-1)",
3162
+ "font-size": "lg",
3163
+ "font-weight": 400,
3164
+ tablet: {
3165
+ "font-size": "2xl",
3166
+ },
3167
+ mobile: {
3168
+ "font-size": "lg",
3169
+ },
3170
+ filter: "none",
3171
+ },
3172
+ "author-wrapper": {
3173
+ display: "flex",
3174
+ "flex-direction": "column",
3175
+ "row-gap": "4xs",
3176
+ },
3177
+ "author-name": {
3178
+ color: "var(--color-text-1)",
3179
+ "font-size": "xl",
3180
+ "font-weight": "bold",
3181
+ mobile: {
3182
+ "font-size": "lg",
3183
+ },
3184
+ filter: "none",
3185
+ },
3186
+ "author-position": {
3187
+ color: "var(--color-text-2)",
3188
+ "font-size": "base",
3189
+ mobile: {
3190
+ "font-size": "sm",
3191
+ },
3192
+ filter: "none",
3193
+ "font-weight": 400,
3194
+ },
3195
+ },
3196
+ {
3197
+ testimonial: {
3198
+ display: "flex",
3199
+ "box-shadow": "xl",
3200
+ "border-radius": "3xl",
3201
+ "align-items": "stretch",
3202
+ overflow: "hidden",
3203
+ tablet: {
3204
+ "flex-direction": "column",
3205
+ },
3206
+ filter: "none",
3207
+ "justify-content": "space-between",
3208
+ width: "100%",
3209
+ },
3210
+ "cover-container": {
3211
+ "max-width": "45%",
3212
+ tablet: {
3213
+ "max-width": "100%",
3214
+ },
3215
+ },
3216
+ cover: {
3217
+ height: "100%",
3218
+ width: "100%",
3219
+ "object-fit": "contain",
3220
+ tablet: {
3221
+ "max-width": "100%",
3222
+ },
3223
+ filter: "none",
3224
+ },
3225
+ cover_embed: {},
3226
+ "testimonial-content-wrapper": {
3227
+ display: "flex",
3228
+ flex: "1",
3229
+ "align-items": "center",
3230
+ "row-gap": "7xl",
3231
+ "column-gap": "7xl",
3232
+ "border-top-right-radius": "3xl",
3233
+ "border-bottom-right-radius": "3xl",
3234
+ padding: "7xl",
3235
+ tablet: {
3236
+ flex: "unset",
3237
+ padding: "4xl",
3238
+ "border-top-right-radius": "0",
3239
+ "border-bottom-left-radius": "3xl",
3240
+ "border-bottom-right-radius": "3xl",
3241
+ },
3242
+ mobile: {
3243
+ padding: "lg",
3244
+ },
3245
+ filter: "none",
3246
+ },
3247
+ "testimonial-content": {
3248
+ display: "flex",
3249
+ flex: "1",
3250
+ "align-items": "flex-start",
3251
+ "row-gap": "xl",
3252
+ "column-gap": "xl",
3253
+ mobile: {
3254
+ "column-gap": "sm",
3255
+ },
3256
+ },
3257
+ icon: {
3258
+ height: "auto",
3259
+ width: "40px",
3260
+ tablet: {
3261
+ height: "auto",
3262
+ width: "28px",
3263
+ },
3264
+ mobile: {
3265
+ height: "auto",
3266
+ width: "20px",
3267
+ },
3268
+ },
3269
+ "testimonial-info": {
3270
+ display: "flex",
3271
+ flex: "1",
3272
+ "flex-direction": "column",
3273
+ "row-gap": "7xl",
3274
+ tablet: {
3275
+ "row-gap": "xl",
3276
+ },
3277
+ },
3278
+ "testimonial-text": {
3279
+ color: "var(--color-text-1)",
3280
+ "font-size": "lg",
3281
+ "font-weight": 400,
3282
+ tablet: {
3283
+ "font-size": "2xl",
3284
+ },
3285
+ mobile: {
3286
+ "font-size": "lg",
3287
+ },
3288
+ filter: "none",
3289
+ },
3290
+ "author-wrapper": {
3291
+ display: "flex",
3292
+ "flex-direction": "column",
3293
+ "row-gap": "4xs",
3294
+ },
3295
+ "author-name": {
3296
+ color: "var(--color-text-1)",
3297
+ "font-size": "xl",
3298
+ "font-weight": "bold",
3299
+ mobile: {
3300
+ "font-size": "lg",
3301
+ },
3302
+ filter: "none",
3303
+ },
3304
+ "author-position": {
3305
+ color: "var(--color-text-2)",
3306
+ "font-size": "base",
3307
+ mobile: {
3308
+ "font-size": "sm",
3309
+ },
3310
+ filter: "none",
3311
+ "font-weight": 400,
3312
+ },
3313
+ },
3314
+ ],
3315
+ container: {
3316
+ filter: "none",
3317
+ mobile: {
3318
+ filter: "none",
3319
+ },
3320
+ tablet: {
3321
+ filter: "none",
3322
+ },
3323
+ },
3324
+ layout: {
3325
+ filter: "none",
3326
+ "background-color": "oklch(0.9266 0.0398 176.7693)",
3327
+ },
3328
+ "carousel-navigation-arrow-left_leftIcon": {
3329
+ filter: "none",
3330
+ height: "24px",
3331
+ width: "24px",
3332
+ "font-size": "24px",
3333
+ },
3334
+ "carousel-navigation-arrow-right_rightIcon": {
3335
+ height: "24px",
3336
+ width: "24px",
3337
+ "font-size": "24px",
3338
+ },
3339
+ },
3340
+ config: {
3341
+ testimonials_levoGroup: {
3342
+ carousel: {
3343
+ loop: true,
3344
+ },
3345
+ },
3346
+ "carousel-navigation-arrow-left": {
3347
+ button_icons: {
3348
+ left: {
3349
+ enabled: true,
3350
+ },
3351
+ },
3352
+ selectedVariants: {
3353
+ Button_Sizes: "XS",
3354
+ },
3355
+ },
3356
+ "carousel-navigation-arrow-right": {
3357
+ button_icons: {
3358
+ right: {
3359
+ enabled: true,
3360
+ },
3361
+ },
3362
+ },
3363
+
3364
+ title: {
3365
+ selectedVariants: {
3366
+ Heading_Level: "H2",
3367
+ },
3368
+ },
3369
+ },
3370
+ content: DEFAULT_CONTENT_VARIANT_3,
3371
+ },
3372
+ ],
3373
+ };