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