@levo-so/blocks 0.1.1 → 0.1.52

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