@levo-so/blocks 0.1.1 → 0.1.52

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (501) hide show
  1. package/package.json +6 -10
  2. package/src/blocks/about-us/about-us-1.schema.ts +577 -0
  3. package/src/blocks/about-us/about-us-1.tsx +53 -0
  4. package/src/blocks/about-us/about-us-2.schema.ts +269 -0
  5. package/src/blocks/about-us/about-us-2.tsx +47 -0
  6. package/src/blocks/blogs/blog-listing-1.schema.ts +473 -0
  7. package/src/blocks/blogs/blog-listing-1.tsx +102 -0
  8. package/src/blocks/blogs/blog-listing-2.schema.ts +3718 -0
  9. package/src/blocks/blogs/blog-listing-2.tsx +88 -0
  10. package/src/blocks/blogs/blog-listing-3.schema.ts +2476 -0
  11. package/src/blocks/blogs/blog-listing-3.tsx +84 -0
  12. package/src/blocks/blogs/blog-post-1.schema.ts +400 -0
  13. package/src/blocks/blogs/blog-post-1.tsx +52 -0
  14. package/src/blocks/blogs/blog-post-2.schema.ts +791 -0
  15. package/src/blocks/blogs/blog-post-2.tsx +131 -0
  16. package/src/blocks/blogs/blog-post-3.schema.ts +284 -0
  17. package/src/blocks/blogs/blog-post-3.tsx +58 -0
  18. package/src/blocks/cards/cards-10.schema.ts +1012 -0
  19. package/src/blocks/cards/cards-10.tsx +48 -0
  20. package/src/blocks/cards/cards-11.schema.ts +918 -0
  21. package/src/blocks/cards/cards-11.tsx +50 -0
  22. package/src/blocks/cards/cards-12.schema.ts +578 -0
  23. package/src/blocks/cards/cards-12.tsx +54 -0
  24. package/src/blocks/cards/cards-13.schema.ts +615 -0
  25. package/src/blocks/cards/cards-13.tsx +67 -0
  26. package/src/blocks/cards/cards-2.schema.ts +290 -0
  27. package/src/blocks/cards/cards-2.tsx +42 -0
  28. package/src/blocks/cards/cards-3.schema.ts +355 -0
  29. package/src/blocks/cards/cards-3.tsx +49 -0
  30. package/src/blocks/cards/cards-4.schema.ts +655 -0
  31. package/src/blocks/cards/cards-4.tsx +50 -0
  32. package/src/blocks/cards/cards-5.schema.ts +245 -0
  33. package/src/blocks/cards/cards-5.tsx +34 -0
  34. package/src/blocks/cards/cards-6.schema.ts +2139 -0
  35. package/src/blocks/cards/cards-6.tsx +140 -0
  36. package/src/blocks/cards/cards-7.schema.ts +3538 -0
  37. package/src/blocks/cards/cards-7.tsx +197 -0
  38. package/src/blocks/cards/cards-8.schema.ts +691 -0
  39. package/src/blocks/cards/cards-8.tsx +43 -0
  40. package/src/blocks/cards/cards-9.schema.ts +827 -0
  41. package/src/blocks/cards/cards-9.tsx +54 -0
  42. package/src/blocks/carousel/carousel-1.schema.ts +250 -0
  43. package/src/blocks/carousel/carousel-1.tsx +79 -0
  44. package/src/blocks/contact-us/contact-us-1.schema.ts +233 -0
  45. package/src/blocks/contact-us/contact-us-1.tsx +39 -0
  46. package/src/blocks/contact-us/contact-us-2.schema.ts +524 -0
  47. package/src/blocks/contact-us/contact-us-2.tsx +71 -0
  48. package/src/blocks/content/content-1.schema.ts +862 -0
  49. package/src/blocks/content/content-1.tsx +69 -0
  50. package/src/blocks/content/content-2.schema.ts +212 -0
  51. package/src/blocks/content/content-2.tsx +32 -0
  52. package/src/blocks/content/content-3.schema.ts +766 -0
  53. package/src/blocks/content/content-3.tsx +55 -0
  54. package/src/blocks/content/content-4.schema.ts +287 -0
  55. package/src/blocks/content/content-4.tsx +47 -0
  56. package/src/blocks/content/content-5.schema.ts +944 -0
  57. package/src/blocks/content/content-5.tsx +59 -0
  58. package/src/blocks/content/content-6.schema.ts +991 -0
  59. package/src/blocks/content/content-6.tsx +62 -0
  60. package/src/blocks/content/content-7.schema.ts +723 -0
  61. package/src/blocks/content/content-7.tsx +53 -0
  62. package/src/blocks/cta/cta-1.schema.ts +353 -0
  63. package/src/blocks/cta/cta-1.tsx +33 -0
  64. package/src/blocks/cta/cta-2.schema.ts +209 -0
  65. package/src/blocks/cta/cta-2.tsx +28 -0
  66. package/src/blocks/cta/cta-3.schema.ts +216 -0
  67. package/src/blocks/cta/cta-3.tsx +48 -0
  68. package/src/blocks/embed/embed-1.schema.ts +153 -0
  69. package/src/blocks/embed/embed-1.tsx +38 -0
  70. package/src/blocks/event/event-details.schema.ts +732 -0
  71. package/src/blocks/event/event-details.tsx +102 -0
  72. package/src/blocks/event/event-listing-2.schema.ts +555 -0
  73. package/src/blocks/event/event-listing-2.tsx +94 -0
  74. package/src/blocks/event/event-listing-3.schema.ts +621 -0
  75. package/src/blocks/event/event-listing-3.tsx +90 -0
  76. package/src/blocks/event/event-listing-4.schema.ts +3528 -0
  77. package/src/blocks/event/event-listing-4.tsx +97 -0
  78. package/src/blocks/event/event-listing.schema.ts +1353 -0
  79. package/src/blocks/event/event-listing.tsx +88 -0
  80. package/src/blocks/faq/faq-1.schema.ts +360 -0
  81. package/src/blocks/faq/faq-1.tsx +65 -0
  82. package/src/blocks/faq/faq-2.schema.ts +358 -0
  83. package/src/blocks/faq/faq-2.tsx +84 -0
  84. package/src/blocks/faq/faq-3.schema.ts +475 -0
  85. package/src/blocks/faq/faq-3.tsx +70 -0
  86. package/src/blocks/features/features-1/features-1.schema.ts +165 -0
  87. package/src/blocks/features/features-1/features-1.tsx +48 -0
  88. package/src/blocks/features/features-1/variants/default.ts +206 -0
  89. package/{dist/blocks/features/features-1/variants/index.js → src/blocks/features/features-1/variants/index.ts} +7 -1
  90. package/src/blocks/features/features-1/variants/stylized-cards-v1.ts +138 -0
  91. package/src/blocks/features/features-1/variants/stylized-cards-v2.ts +487 -0
  92. package/src/blocks/features/features-2.schema.ts +471 -0
  93. package/src/blocks/features/features-2.tsx +66 -0
  94. package/src/blocks/features/features-3.schema.ts +424 -0
  95. package/src/blocks/features/features-3.tsx +56 -0
  96. package/src/blocks/features/features-4.schema.ts +616 -0
  97. package/src/blocks/features/features-4.tsx +75 -0
  98. package/src/blocks/features/features-5.schema.ts +728 -0
  99. package/src/blocks/features/features-5.tsx +49 -0
  100. package/src/blocks/features/features-6.schema.ts +849 -0
  101. package/src/blocks/features/features-6.tsx +125 -0
  102. package/src/blocks/footer/footer-1.schema.ts +612 -0
  103. package/src/blocks/footer/footer-1.tsx +90 -0
  104. package/src/blocks/footer/footer-2.schema.ts +913 -0
  105. package/src/blocks/footer/footer-2.tsx +77 -0
  106. package/src/blocks/footer/footer-3.schema.ts +412 -0
  107. package/src/blocks/footer/footer-3.tsx +99 -0
  108. package/src/blocks/footer/footer-4.schema.ts +649 -0
  109. package/src/blocks/footer/footer-4.tsx +97 -0
  110. package/src/blocks/footer/footer-5.schema.ts +435 -0
  111. package/src/blocks/footer/footer-5.tsx +99 -0
  112. package/src/blocks/footer/footer-6.schema.ts +730 -0
  113. package/src/blocks/footer/footer-6.tsx +100 -0
  114. package/src/blocks/hero/hero-1.schema.ts +746 -0
  115. package/src/blocks/hero/hero-1.tsx +52 -0
  116. package/src/blocks/hero/hero-10.schema.ts +175 -0
  117. package/src/blocks/hero/hero-10.tsx +35 -0
  118. package/src/blocks/hero/hero-2.schema.ts +272 -0
  119. package/src/blocks/hero/hero-2.tsx +57 -0
  120. package/src/blocks/hero/hero-3.schema.ts +419 -0
  121. package/src/blocks/hero/hero-3.tsx +50 -0
  122. package/src/blocks/hero/hero-4.schema.ts +425 -0
  123. package/src/blocks/hero/hero-4.tsx +89 -0
  124. package/src/blocks/hero/hero-5.schema.ts +198 -0
  125. package/src/blocks/hero/hero-5.tsx +86 -0
  126. package/src/blocks/hero/hero-6.schema.ts +665 -0
  127. package/src/blocks/hero/hero-6.tsx +62 -0
  128. package/src/blocks/hero/hero-7.schema.ts +505 -0
  129. package/src/blocks/hero/hero-7.tsx +115 -0
  130. package/src/blocks/hero/hero-8.schema.ts +376 -0
  131. package/src/blocks/hero/hero-8.tsx +113 -0
  132. package/src/blocks/hero/hero-9.schema.ts +379 -0
  133. package/src/blocks/hero/hero-9.tsx +49 -0
  134. package/src/blocks/index.ts +89 -0
  135. package/src/blocks/logos/logos-1.schema.ts +270 -0
  136. package/src/blocks/logos/logos-1.tsx +60 -0
  137. package/src/blocks/navbar/navbar-1.schema.ts +959 -0
  138. package/src/blocks/navbar/navbar-1.tsx +384 -0
  139. package/src/blocks/navbar/navbar-2.schema.ts +1224 -0
  140. package/src/blocks/navbar/navbar-2.tsx +403 -0
  141. package/src/blocks/navbar/navbar-3.schema.ts +6834 -0
  142. package/src/blocks/navbar/navbar-3.tsx +551 -0
  143. package/src/blocks/pricing/pricing-1.schema.ts +988 -0
  144. package/src/blocks/pricing/pricing-1.tsx +88 -0
  145. package/src/blocks/products/products-listing-1.schema.ts +271 -0
  146. package/src/blocks/products/products-listing-1.tsx +48 -0
  147. package/src/blocks/profile/profile-1.schema.ts +399 -0
  148. package/src/blocks/profile/profile-1.tsx +64 -0
  149. package/src/blocks/stats/stats-1.schema.ts +262 -0
  150. package/src/blocks/stats/stats-1.tsx +38 -0
  151. package/src/blocks/stats/stats-2.schema.ts +111 -0
  152. package/src/blocks/stats/stats-2.tsx +52 -0
  153. package/src/blocks/stats/variants/default.ts +189 -0
  154. package/src/blocks/stats/variants/hero.ts +142 -0
  155. package/{dist/blocks/stats/variants/index.js → src/blocks/stats/variants/index.ts} +1 -0
  156. package/src/blocks/team/team-1.schema.ts +544 -0
  157. package/src/blocks/team/team-1.tsx +86 -0
  158. package/src/blocks/team/team-2.schema.ts +2742 -0
  159. package/src/blocks/team/team-2.tsx +74 -0
  160. package/src/blocks/team/team-3.schema.ts +690 -0
  161. package/src/blocks/team/team-3.tsx +103 -0
  162. package/src/blocks/team/team-4.schema.ts +551 -0
  163. package/src/blocks/team/team-4.tsx +59 -0
  164. package/src/blocks/termsAndPrivacy/terms-and-conditions-1.schema.ts +158 -0
  165. package/src/blocks/termsAndPrivacy/terms-and-conditions-1.tsx +29 -0
  166. package/src/blocks/testimonial/testimonial-1.schema.ts +351 -0
  167. package/src/blocks/testimonial/testimonial-1.tsx +79 -0
  168. package/src/blocks/testimonial/testimonial-2.schema.ts +816 -0
  169. package/src/blocks/testimonial/testimonial-2.tsx +161 -0
  170. package/src/blocks/testimonial/testimonial-3.schema.ts +273 -0
  171. package/src/blocks/testimonial/testimonial-3.tsx +128 -0
  172. package/src/blocks/testimonial/testimonial-4.schema.ts +3378 -0
  173. package/src/blocks/testimonial/testimonial-4.tsx +202 -0
  174. package/src/blocks/testimonial/testimonial-5/variants/default.ts +510 -0
  175. package/src/blocks/testimonial/testimonial-5/variants/index.ts +4 -0
  176. package/src/blocks/testimonial/testimonial-5/variants/testimonialWithLogo.ts +887 -0
  177. package/src/blocks/testimonial/testimonial-5/variants/testimonialWithRatings.ts +923 -0
  178. package/src/blocks/testimonial/testimonial-5.schema.ts +250 -0
  179. package/src/blocks/testimonial/testimonial-5.tsx +130 -0
  180. package/src/blocks/testimonial/testimonial-6.schema.ts +1672 -0
  181. package/src/blocks/testimonial/testimonial-6.tsx +178 -0
  182. package/{dist/index.js → src/index.ts} +5 -2
  183. package/{dist/schemas/blocks.js → src/schemas/blocks.ts} +97 -72
  184. package/src/schemas/categories.ts +140 -0
  185. package/src/styles.d.ts +4 -0
  186. package/dist/blocks/about-us/about-us-1.d.ts +0 -5
  187. package/dist/blocks/about-us/about-us-1.js +0 -5
  188. package/dist/blocks/about-us/about-us-1.schema.d.ts +0 -38
  189. package/dist/blocks/about-us/about-us-1.schema.js +0 -537
  190. package/dist/blocks/blogs/blog-listing-1.d.ts +0 -5
  191. package/dist/blocks/blogs/blog-listing-1.js +0 -12
  192. package/dist/blocks/blogs/blog-listing-1.schema.d.ts +0 -59
  193. package/dist/blocks/blogs/blog-listing-1.schema.js +0 -387
  194. package/dist/blocks/blogs/blog-listing-2.d.ts +0 -5
  195. package/dist/blocks/blogs/blog-listing-2.js +0 -9
  196. package/dist/blocks/blogs/blog-listing-2.schema.d.ts +0 -104
  197. package/dist/blocks/blogs/blog-listing-2.schema.js +0 -572
  198. package/dist/blocks/blogs/blog-post-1.d.ts +0 -6
  199. package/dist/blocks/blogs/blog-post-1.js +0 -8
  200. package/dist/blocks/blogs/blog-post-1.schema.d.ts +0 -48
  201. package/dist/blocks/blogs/blog-post-1.schema.js +0 -358
  202. package/dist/blocks/blogs/blog-post-2.d.ts +0 -6
  203. package/dist/blocks/blogs/blog-post-2.js +0 -8
  204. package/dist/blocks/blogs/blog-post-2.schema.d.ts +0 -74
  205. package/dist/blocks/blogs/blog-post-2.schema.js +0 -779
  206. package/dist/blocks/cards/cards-10.d.ts +0 -6
  207. package/dist/blocks/cards/cards-10.js +0 -4
  208. package/dist/blocks/cards/cards-10.schema.d.ts +0 -44
  209. package/dist/blocks/cards/cards-10.schema.js +0 -405
  210. package/dist/blocks/cards/cards-11.d.ts +0 -6
  211. package/dist/blocks/cards/cards-11.js +0 -4
  212. package/dist/blocks/cards/cards-11.schema.d.ts +0 -58
  213. package/dist/blocks/cards/cards-11.schema.js +0 -406
  214. package/dist/blocks/cards/cards-12.d.ts +0 -6
  215. package/dist/blocks/cards/cards-12.js +0 -4
  216. package/dist/blocks/cards/cards-12.schema.d.ts +0 -38
  217. package/dist/blocks/cards/cards-12.schema.js +0 -545
  218. package/dist/blocks/cards/cards-2.d.ts +0 -5
  219. package/dist/blocks/cards/cards-2.js +0 -4
  220. package/dist/blocks/cards/cards-2.schema.d.ts +0 -46
  221. package/dist/blocks/cards/cards-2.schema.js +0 -260
  222. package/dist/blocks/cards/cards-3.d.ts +0 -6
  223. package/dist/blocks/cards/cards-3.js +0 -5
  224. package/dist/blocks/cards/cards-3.schema.d.ts +0 -36
  225. package/dist/blocks/cards/cards-3.schema.js +0 -351
  226. package/dist/blocks/cards/cards-4.d.ts +0 -6
  227. package/dist/blocks/cards/cards-4.js +0 -4
  228. package/dist/blocks/cards/cards-4.schema.d.ts +0 -40
  229. package/dist/blocks/cards/cards-4.schema.js +0 -648
  230. package/dist/blocks/cards/cards-5.d.ts +0 -5
  231. package/dist/blocks/cards/cards-5.js +0 -4
  232. package/dist/blocks/cards/cards-5.schema.d.ts +0 -48
  233. package/dist/blocks/cards/cards-5.schema.js +0 -238
  234. package/dist/blocks/cards/cards-6.d.ts +0 -5
  235. package/dist/blocks/cards/cards-6.js +0 -45
  236. package/dist/blocks/cards/cards-6.schema.d.ts +0 -50
  237. package/dist/blocks/cards/cards-6.schema.js +0 -608
  238. package/dist/blocks/cards/cards-7.d.ts +0 -5
  239. package/dist/blocks/cards/cards-7.js +0 -45
  240. package/dist/blocks/cards/cards-7.schema.d.ts +0 -87
  241. package/dist/blocks/cards/cards-7.schema.js +0 -1732
  242. package/dist/blocks/cards/cards-8.d.ts +0 -6
  243. package/dist/blocks/cards/cards-8.js +0 -4
  244. package/dist/blocks/cards/cards-8.schema.d.ts +0 -40
  245. package/dist/blocks/cards/cards-8.schema.js +0 -660
  246. package/dist/blocks/cards/cards-9.d.ts +0 -5
  247. package/dist/blocks/cards/cards-9.js +0 -4
  248. package/dist/blocks/cards/cards-9.schema.d.ts +0 -55
  249. package/dist/blocks/cards/cards-9.schema.js +0 -798
  250. package/dist/blocks/carousel/carousel-1.d.ts +0 -5
  251. package/dist/blocks/carousel/carousel-1.js +0 -12
  252. package/dist/blocks/carousel/carousel-1.schema.d.ts +0 -51
  253. package/dist/blocks/carousel/carousel-1.schema.js +0 -236
  254. package/dist/blocks/contact-us/contact-us-1.d.ts +0 -5
  255. package/dist/blocks/contact-us/contact-us-1.js +0 -4
  256. package/dist/blocks/contact-us/contact-us-1.schema.d.ts +0 -31
  257. package/dist/blocks/contact-us/contact-us-1.schema.js +0 -202
  258. package/dist/blocks/contact-us/contact-us-2.d.ts +0 -5
  259. package/dist/blocks/contact-us/contact-us-2.js +0 -4
  260. package/dist/blocks/contact-us/contact-us-2.schema.d.ts +0 -59
  261. package/dist/blocks/contact-us/contact-us-2.schema.js +0 -512
  262. package/dist/blocks/content/content-1.d.ts +0 -6
  263. package/dist/blocks/content/content-1.js +0 -4
  264. package/dist/blocks/content/content-1.schema.d.ts +0 -56
  265. package/dist/blocks/content/content-1.schema.js +0 -807
  266. package/dist/blocks/content/content-2.d.ts +0 -5
  267. package/dist/blocks/content/content-2.js +0 -4
  268. package/dist/blocks/content/content-2.schema.d.ts +0 -78
  269. package/dist/blocks/content/content-2.schema.js +0 -200
  270. package/dist/blocks/content/content-3.d.ts +0 -6
  271. package/dist/blocks/content/content-3.js +0 -5
  272. package/dist/blocks/content/content-3.schema.d.ts +0 -23
  273. package/dist/blocks/content/content-3.schema.js +0 -850
  274. package/dist/blocks/content/content-4.d.ts +0 -6
  275. package/dist/blocks/content/content-4.js +0 -6
  276. package/dist/blocks/content/content-4.schema.d.ts +0 -33
  277. package/dist/blocks/content/content-4.schema.js +0 -252
  278. package/dist/blocks/content/content-5.d.ts +0 -6
  279. package/dist/blocks/content/content-5.js +0 -5
  280. package/dist/blocks/content/content-5.schema.d.ts +0 -37
  281. package/dist/blocks/content/content-5.schema.js +0 -932
  282. package/dist/blocks/content/content-6.d.ts +0 -6
  283. package/dist/blocks/content/content-6.js +0 -5
  284. package/dist/blocks/content/content-6.schema.d.ts +0 -41
  285. package/dist/blocks/content/content-6.schema.js +0 -976
  286. package/dist/blocks/cta/cta-1.d.ts +0 -5
  287. package/dist/blocks/cta/cta-1.js +0 -4
  288. package/dist/blocks/cta/cta-1.schema.d.ts +0 -40
  289. package/dist/blocks/cta/cta-1.schema.js +0 -339
  290. package/dist/blocks/cta/cta-2.d.ts +0 -5
  291. package/dist/blocks/cta/cta-2.js +0 -4
  292. package/dist/blocks/cta/cta-2.schema.d.ts +0 -45
  293. package/dist/blocks/cta/cta-2.schema.js +0 -183
  294. package/dist/blocks/cta/cta-3.d.ts +0 -5
  295. package/dist/blocks/cta/cta-3.js +0 -4
  296. package/dist/blocks/cta/cta-3.schema.d.ts +0 -34
  297. package/dist/blocks/cta/cta-3.schema.js +0 -137
  298. package/dist/blocks/embed/embed-1.d.ts +0 -5
  299. package/dist/blocks/embed/embed-1.js +0 -5
  300. package/dist/blocks/embed/embed-1.schema.d.ts +0 -13
  301. package/dist/blocks/embed/embed-1.schema.js +0 -146
  302. package/dist/blocks/event/event-details.d.ts +0 -5
  303. package/dist/blocks/event/event-details.js +0 -9
  304. package/dist/blocks/event/event-details.schema.d.ts +0 -112
  305. package/dist/blocks/event/event-details.schema.js +0 -685
  306. package/dist/blocks/event/event-listing-2.d.ts +0 -5
  307. package/dist/blocks/event/event-listing-2.js +0 -4
  308. package/dist/blocks/event/event-listing-2.schema.d.ts +0 -84
  309. package/dist/blocks/event/event-listing-2.schema.js +0 -455
  310. package/dist/blocks/event/event-listing-3.d.ts +0 -5
  311. package/dist/blocks/event/event-listing-3.js +0 -10
  312. package/dist/blocks/event/event-listing-3.schema.d.ts +0 -77
  313. package/dist/blocks/event/event-listing-3.schema.js +0 -570
  314. package/dist/blocks/event/event-listing.d.ts +0 -5
  315. package/dist/blocks/event/event-listing.js +0 -10
  316. package/dist/blocks/event/event-listing.schema.d.ts +0 -51
  317. package/dist/blocks/event/event-listing.schema.js +0 -1297
  318. package/dist/blocks/faq/faq-1.d.ts +0 -5
  319. package/dist/blocks/faq/faq-1.js +0 -4
  320. package/dist/blocks/faq/faq-1.schema.d.ts +0 -47
  321. package/dist/blocks/faq/faq-1.schema.js +0 -325
  322. package/dist/blocks/faq/faq-2.d.ts +0 -6
  323. package/dist/blocks/faq/faq-2.js +0 -19
  324. package/dist/blocks/faq/faq-2.schema.d.ts +0 -47
  325. package/dist/blocks/faq/faq-2.schema.js +0 -329
  326. package/dist/blocks/faq/faq-3.d.ts +0 -5
  327. package/dist/blocks/faq/faq-3.js +0 -4
  328. package/dist/blocks/faq/faq-3.schema.d.ts +0 -40
  329. package/dist/blocks/faq/faq-3.schema.js +0 -444
  330. package/dist/blocks/features/features-1/features-1.d.ts +0 -5
  331. package/dist/blocks/features/features-1/features-1.js +0 -4
  332. package/dist/blocks/features/features-1/features-1.schema.d.ts +0 -5
  333. package/dist/blocks/features/features-1/features-1.schema.js +0 -142
  334. package/dist/blocks/features/features-1/variants/default.d.ts +0 -37
  335. package/dist/blocks/features/features-1/variants/default.js +0 -185
  336. package/dist/blocks/features/features-1/variants/index.d.ts +0 -5
  337. package/dist/blocks/features/features-1/variants/stylized-cards-v1.d.ts +0 -3
  338. package/dist/blocks/features/features-1/variants/stylized-cards-v1.js +0 -132
  339. package/dist/blocks/features/features-1/variants/stylized-cards-v2.d.ts +0 -3
  340. package/dist/blocks/features/features-1/variants/stylized-cards-v2.js +0 -484
  341. package/dist/blocks/features/features-2.d.ts +0 -5
  342. package/dist/blocks/features/features-2.js +0 -8
  343. package/dist/blocks/features/features-2.schema.d.ts +0 -41
  344. package/dist/blocks/features/features-2.schema.js +0 -321
  345. package/dist/blocks/features/features-3.d.ts +0 -5
  346. package/dist/blocks/features/features-3.js +0 -4
  347. package/dist/blocks/features/features-3.schema.d.ts +0 -40
  348. package/dist/blocks/features/features-3.schema.js +0 -424
  349. package/dist/blocks/features/features-4.d.ts +0 -5
  350. package/dist/blocks/features/features-4.js +0 -4
  351. package/dist/blocks/features/features-4.schema.d.ts +0 -60
  352. package/dist/blocks/features/features-4.schema.js +0 -594
  353. package/dist/blocks/features/features-5.d.ts +0 -6
  354. package/dist/blocks/features/features-5.js +0 -5
  355. package/dist/blocks/features/features-5.schema.d.ts +0 -28
  356. package/dist/blocks/features/features-5.schema.js +0 -727
  357. package/dist/blocks/features/features-6.d.ts +0 -5
  358. package/dist/blocks/features/features-6.js +0 -31
  359. package/dist/blocks/features/features-6.schema.d.ts +0 -74
  360. package/dist/blocks/features/features-6.schema.js +0 -814
  361. package/dist/blocks/footer/footer-1.d.ts +0 -6
  362. package/dist/blocks/footer/footer-1.js +0 -5
  363. package/dist/blocks/footer/footer-1.schema.d.ts +0 -62
  364. package/dist/blocks/footer/footer-1.schema.js +0 -565
  365. package/dist/blocks/footer/footer-2.d.ts +0 -5
  366. package/dist/blocks/footer/footer-2.js +0 -4
  367. package/dist/blocks/footer/footer-2.schema.d.ts +0 -76
  368. package/dist/blocks/footer/footer-2.schema.js +0 -876
  369. package/dist/blocks/footer/footer-3.d.ts +0 -6
  370. package/dist/blocks/footer/footer-3.js +0 -15
  371. package/dist/blocks/footer/footer-3.schema.d.ts +0 -48
  372. package/dist/blocks/footer/footer-3.schema.js +0 -475
  373. package/dist/blocks/footer/footer-4.d.ts +0 -6
  374. package/dist/blocks/footer/footer-4.js +0 -5
  375. package/dist/blocks/footer/footer-4.schema.d.ts +0 -71
  376. package/dist/blocks/footer/footer-4.schema.js +0 -620
  377. package/dist/blocks/footer/footer-5.d.ts +0 -6
  378. package/dist/blocks/footer/footer-5.js +0 -5
  379. package/dist/blocks/footer/footer-5.schema.d.ts +0 -52
  380. package/dist/blocks/footer/footer-5.schema.js +0 -400
  381. package/dist/blocks/hero/hero-1.d.ts +0 -5
  382. package/dist/blocks/hero/hero-1.js +0 -4
  383. package/dist/blocks/hero/hero-1.schema.d.ts +0 -35
  384. package/dist/blocks/hero/hero-1.schema.js +0 -742
  385. package/dist/blocks/hero/hero-2.d.ts +0 -5
  386. package/dist/blocks/hero/hero-2.js +0 -4
  387. package/dist/blocks/hero/hero-2.schema.d.ts +0 -46
  388. package/dist/blocks/hero/hero-2.schema.js +0 -282
  389. package/dist/blocks/hero/hero-3.d.ts +0 -5
  390. package/dist/blocks/hero/hero-3.js +0 -4
  391. package/dist/blocks/hero/hero-3.schema.d.ts +0 -54
  392. package/dist/blocks/hero/hero-3.schema.js +0 -378
  393. package/dist/blocks/hero/hero-4.d.ts +0 -5
  394. package/dist/blocks/hero/hero-4.js +0 -30
  395. package/dist/blocks/hero/hero-4.schema.d.ts +0 -33
  396. package/dist/blocks/hero/hero-4.schema.js +0 -316
  397. package/dist/blocks/hero/hero-5.d.ts +0 -5
  398. package/dist/blocks/hero/hero-5.js +0 -30
  399. package/dist/blocks/hero/hero-5.schema.d.ts +0 -32
  400. package/dist/blocks/hero/hero-5.schema.js +0 -183
  401. package/dist/blocks/hero/hero-6.d.ts +0 -5
  402. package/dist/blocks/hero/hero-6.js +0 -8
  403. package/dist/blocks/hero/hero-6.schema.d.ts +0 -36
  404. package/dist/blocks/hero/hero-6.schema.js +0 -617
  405. package/dist/blocks/hero/hero-7.d.ts +0 -5
  406. package/dist/blocks/hero/hero-7.js +0 -40
  407. package/dist/blocks/hero/hero-7.schema.d.ts +0 -12
  408. package/dist/blocks/hero/hero-7.schema.js +0 -471
  409. package/dist/blocks/hero/hero-8.d.ts +0 -5
  410. package/dist/blocks/hero/hero-8.js +0 -39
  411. package/dist/blocks/hero/hero-8.schema.d.ts +0 -17
  412. package/dist/blocks/hero/hero-8.schema.js +0 -343
  413. package/dist/blocks/hero/hero-9.d.ts +0 -6
  414. package/dist/blocks/hero/hero-9.js +0 -4
  415. package/dist/blocks/hero/hero-9.schema.d.ts +0 -39
  416. package/dist/blocks/hero/hero-9.schema.js +0 -355
  417. package/dist/blocks/index.d.ts +0 -3
  418. package/dist/blocks/index.js +0 -74
  419. package/dist/blocks/logos/logos-1.d.ts +0 -5
  420. package/dist/blocks/logos/logos-1.js +0 -10
  421. package/dist/blocks/logos/logos-1.schema.d.ts +0 -34
  422. package/dist/blocks/logos/logos-1.schema.js +0 -239
  423. package/dist/blocks/navbar/navbar-1.d.ts +0 -6
  424. package/dist/blocks/navbar/navbar-1.js +0 -100
  425. package/dist/blocks/navbar/navbar-1.schema.d.ts +0 -117
  426. package/dist/blocks/navbar/navbar-1.schema.js +0 -938
  427. package/dist/blocks/navbar/navbar-2.d.ts +0 -6
  428. package/dist/blocks/navbar/navbar-2.js +0 -99
  429. package/dist/blocks/navbar/navbar-2.schema.d.ts +0 -134
  430. package/dist/blocks/navbar/navbar-2.schema.js +0 -1200
  431. package/dist/blocks/pricing/pricing-1.d.ts +0 -5
  432. package/dist/blocks/pricing/pricing-1.js +0 -4
  433. package/dist/blocks/pricing/pricing-1.schema.d.ts +0 -87
  434. package/dist/blocks/pricing/pricing-1.schema.js +0 -976
  435. package/dist/blocks/products/products-listing-1.d.ts +0 -5
  436. package/dist/blocks/products/products-listing-1.js +0 -4
  437. package/dist/blocks/products/products-listing-1.schema.d.ts +0 -36
  438. package/dist/blocks/products/products-listing-1.schema.js +0 -264
  439. package/dist/blocks/stats/stats-1.d.ts +0 -6
  440. package/dist/blocks/stats/stats-1.js +0 -6
  441. package/dist/blocks/stats/stats-1.schema.d.ts +0 -25
  442. package/dist/blocks/stats/stats-1.schema.js +0 -213
  443. package/dist/blocks/stats/stats-2.d.ts +0 -6
  444. package/dist/blocks/stats/stats-2.js +0 -6
  445. package/dist/blocks/stats/stats-2.schema.d.ts +0 -5
  446. package/dist/blocks/stats/stats-2.schema.js +0 -104
  447. package/dist/blocks/stats/variants/default.d.ts +0 -22
  448. package/dist/blocks/stats/variants/default.js +0 -185
  449. package/dist/blocks/stats/variants/hero.d.ts +0 -3
  450. package/dist/blocks/stats/variants/hero.js +0 -151
  451. package/dist/blocks/stats/variants/index.d.ts +0 -4
  452. package/dist/blocks/team/team-1.d.ts +0 -6
  453. package/dist/blocks/team/team-1.js +0 -6
  454. package/dist/blocks/team/team-1.schema.d.ts +0 -65
  455. package/dist/blocks/team/team-1.schema.js +0 -476
  456. package/dist/blocks/team/team-2.d.ts +0 -6
  457. package/dist/blocks/team/team-2.js +0 -6
  458. package/dist/blocks/team/team-2.schema.d.ts +0 -52
  459. package/dist/blocks/team/team-2.schema.js +0 -2732
  460. package/dist/blocks/team/team-3.d.ts +0 -5
  461. package/dist/blocks/team/team-3.js +0 -30
  462. package/dist/blocks/team/team-3.schema.d.ts +0 -32
  463. package/dist/blocks/team/team-3.schema.js +0 -679
  464. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.d.ts +0 -6
  465. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.js +0 -4
  466. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.schema.d.ts +0 -14
  467. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.schema.js +0 -154
  468. package/dist/blocks/testimonial/testimonial-1.d.ts +0 -5
  469. package/dist/blocks/testimonial/testimonial-1.js +0 -10
  470. package/dist/blocks/testimonial/testimonial-1.schema.d.ts +0 -16
  471. package/dist/blocks/testimonial/testimonial-1.schema.js +0 -314
  472. package/dist/blocks/testimonial/testimonial-2.d.ts +0 -5
  473. package/dist/blocks/testimonial/testimonial-2.js +0 -42
  474. package/dist/blocks/testimonial/testimonial-2.schema.d.ts +0 -54
  475. package/dist/blocks/testimonial/testimonial-2.schema.js +0 -771
  476. package/dist/blocks/testimonial/testimonial-3.d.ts +0 -5
  477. package/dist/blocks/testimonial/testimonial-3.js +0 -38
  478. package/dist/blocks/testimonial/testimonial-3.schema.d.ts +0 -56
  479. package/dist/blocks/testimonial/testimonial-3.schema.js +0 -260
  480. package/dist/blocks/testimonial/testimonial-4.d.ts +0 -5
  481. package/dist/blocks/testimonial/testimonial-4.js +0 -51
  482. package/dist/blocks/testimonial/testimonial-4.schema.d.ts +0 -145
  483. package/dist/blocks/testimonial/testimonial-4.schema.js +0 -3214
  484. package/dist/blocks/testimonial/testimonial-5.d.ts +0 -5
  485. package/dist/blocks/testimonial/testimonial-5.js +0 -31
  486. package/dist/blocks/testimonial/testimonial-5.schema.d.ts +0 -33
  487. package/dist/blocks/testimonial/testimonial-5.schema.js +0 -401
  488. package/dist/blocks/testimonial/testimonial-6.d.ts +0 -5
  489. package/dist/blocks/testimonial/testimonial-6.js +0 -39
  490. package/dist/blocks/testimonial/testimonial-6.schema.d.ts +0 -60
  491. package/dist/blocks/testimonial/testimonial-6.schema.js +0 -695
  492. package/dist/blocks.d.ts +0 -3
  493. package/dist/blocks.js +0 -74
  494. package/dist/index.d.ts +0 -6
  495. package/dist/schemas/blocks.d.ts +0 -3
  496. package/dist/schemas/categories.d.ts +0 -3
  497. package/dist/schemas/categories.js +0 -129
  498. package/dist/schemas/index.d.ts +0 -3
  499. package/dist/schemas.d.ts +0 -3
  500. package/dist/schemas.js +0 -2
  501. /package/{dist/schemas/index.js → src/schemas/index.ts} +0 -0
@@ -0,0 +1,887 @@
1
+ import type { IBlockLayouts } from "@levo-so/studio";
2
+
3
+ const TESTIMONIAL_WITH_LOGO = {
4
+ layout: null,
5
+ container: null,
6
+ header: null,
7
+ textWrapper: null,
8
+ title: "What Our Clients Say",
9
+ description:
10
+ "Hear from industry leaders about their experience with our innovative supply chain solutions.",
11
+ testimonials: [
12
+ {
13
+ card: null,
14
+ profileSection: null,
15
+ avatar: {
16
+ kind: "icon",
17
+ data: {
18
+ id: "user",
19
+ label: "User",
20
+ tags: ["custom", "user", "users"],
21
+ svgCode:
22
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M12 12.75C8.83 12.75 6.25 10.17 6.25 7C6.25 3.83 8.83 1.25 12 1.25C15.17 1.25 17.75 3.83 17.75 7C17.75 10.17 15.17 12.75 12 12.75ZM12 2.75C9.66 2.75 7.75 4.66 7.75 7C7.75 9.34 9.66 11.25 12 11.25C14.34 11.25 16.25 9.34 16.25 7C16.25 4.66 14.34 2.75 12 2.75Z" fill="var(--color-icon-primary)"/>\n<path d="M20.5901 22.75C20.1801 22.75 19.8401 22.41 19.8401 22C19.8401 18.55 16.3202 15.75 12.0002 15.75C7.68015 15.75 4.16016 18.55 4.16016 22C4.16016 22.41 3.82016 22.75 3.41016 22.75C3.00016 22.75 2.66016 22.41 2.66016 22C2.66016 17.73 6.85015 14.25 12.0002 14.25C17.1502 14.25 21.3401 17.73 21.3401 22C21.3401 22.41 21.0001 22.75 20.5901 22.75Z" fill="var(--color-icon-primary)"/>\n</svg>',
23
+ },
24
+ },
25
+ clientInfo: null,
26
+ name: "John Smith",
27
+ position: "Director, Global Supply Chain",
28
+ quote:
29
+ "<p>“The use of the Oracle NetSuite ERP in the cloud is very successful. It allows us to have management reports which are available in real-time which is necessary for us to make good business decisions that are essential for our growth and profitability.”</p>",
30
+ stars: [],
31
+ org_logo: {
32
+ kind: "custom",
33
+ data: {
34
+ id: "JtadEUC8EngX",
35
+ filename: "image.png",
36
+ kind: "image",
37
+ location:
38
+ "https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT.png",
39
+ srcset: {
40
+ "1080w":
41
+ "https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-1080w.webp",
42
+ "1200w":
43
+ "https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-1200w.webp",
44
+ "1920w":
45
+ "https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-1920w.webp",
46
+ "320w":
47
+ "https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-320w.webp",
48
+ "640w":
49
+ "https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-640w.webp",
50
+ "750w":
51
+ "https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-750w.webp",
52
+ "828w":
53
+ "https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-828w.webp",
54
+ path: "https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-1920w.webp 1920w, https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-320w.webp 320w, https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-640w.webp 640w, https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-750w.webp 750w, https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-828w.webp 828w, https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-1080w.webp 1080w, https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-1200w.webp 1200w",
55
+ },
56
+ mimetype: "image/png",
57
+ },
58
+ },
59
+ },
60
+ {
61
+ card: null,
62
+ profileSection: null,
63
+ avatar: {
64
+ kind: "icon",
65
+ data: {
66
+ id: "user",
67
+ label: "User",
68
+ tags: ["custom", "user", "users"],
69
+ svgCode:
70
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M12 12.75C8.83 12.75 6.25 10.17 6.25 7C6.25 3.83 8.83 1.25 12 1.25C15.17 1.25 17.75 3.83 17.75 7C17.75 10.17 15.17 12.75 12 12.75ZM12 2.75C9.66 2.75 7.75 4.66 7.75 7C7.75 9.34 9.66 11.25 12 11.25C14.34 11.25 16.25 9.34 16.25 7C16.25 4.66 14.34 2.75 12 2.75Z" fill="var(--color-icon-primary)"/>\n<path d="M20.5901 22.75C20.1801 22.75 19.8401 22.41 19.8401 22C19.8401 18.55 16.3202 15.75 12.0002 15.75C7.68015 15.75 4.16016 18.55 4.16016 22C4.16016 22.41 3.82016 22.75 3.41016 22.75C3.00016 22.75 2.66016 22.41 2.66016 22C2.66016 17.73 6.85015 14.25 12.0002 14.25C17.1502 14.25 21.3401 17.73 21.3401 22C21.3401 22.41 21.0001 22.75 20.5901 22.75Z" fill="var(--color-icon-primary)"/>\n</svg>',
71
+ },
72
+ },
73
+ clientInfo: null,
74
+ name: "John Smith",
75
+ position: "Director, Global Supply Chain",
76
+ quote:
77
+ "<p>“The use of the Oracle NetSuite ERP in the cloud is very successful. It allows us to have management reports which are available in real-time which is necessary for us to make good business decisions that are essential for our growth and profitability.”</p>",
78
+ stars: [],
79
+ org_logo: {
80
+ kind: "custom",
81
+ data: {
82
+ id: "JtadEUC8EngX",
83
+ filename: "image.png",
84
+ kind: "image",
85
+ location:
86
+ "https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT.png",
87
+ srcset: {
88
+ "1080w":
89
+ "https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-1080w.webp",
90
+ "1200w":
91
+ "https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-1200w.webp",
92
+ "1920w":
93
+ "https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-1920w.webp",
94
+ "320w":
95
+ "https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-320w.webp",
96
+ "640w":
97
+ "https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-640w.webp",
98
+ "750w":
99
+ "https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-750w.webp",
100
+ "828w":
101
+ "https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-828w.webp",
102
+ path: "https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-1920w.webp 1920w, https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-320w.webp 320w, https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-640w.webp 640w, https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-750w.webp 750w, https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-828w.webp 828w, https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-1080w.webp 1080w, https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-1200w.webp 1200w",
103
+ },
104
+ mimetype: "image/png",
105
+ },
106
+ },
107
+ },
108
+ {
109
+ card: null,
110
+ profileSection: null,
111
+ avatar: {
112
+ kind: "icon",
113
+ data: {
114
+ id: "user",
115
+ label: "User",
116
+ tags: ["custom", "user", "users"],
117
+ svgCode:
118
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M12 12.75C8.83 12.75 6.25 10.17 6.25 7C6.25 3.83 8.83 1.25 12 1.25C15.17 1.25 17.75 3.83 17.75 7C17.75 10.17 15.17 12.75 12 12.75ZM12 2.75C9.66 2.75 7.75 4.66 7.75 7C7.75 9.34 9.66 11.25 12 11.25C14.34 11.25 16.25 9.34 16.25 7C16.25 4.66 14.34 2.75 12 2.75Z" fill="var(--color-icon-primary)"/>\n<path d="M20.5901 22.75C20.1801 22.75 19.8401 22.41 19.8401 22C19.8401 18.55 16.3202 15.75 12.0002 15.75C7.68015 15.75 4.16016 18.55 4.16016 22C4.16016 22.41 3.82016 22.75 3.41016 22.75C3.00016 22.75 2.66016 22.41 2.66016 22C2.66016 17.73 6.85015 14.25 12.0002 14.25C17.1502 14.25 21.3401 17.73 21.3401 22C21.3401 22.41 21.0001 22.75 20.5901 22.75Z" fill="var(--color-icon-primary)"/>\n</svg>',
119
+ },
120
+ },
121
+ clientInfo: null,
122
+ name: "John Smith",
123
+ position: "Director, Global Supply Chain",
124
+ quote:
125
+ "<p>“The use of the Oracle NetSuite ERP in the cloud is very successful. It allows us to have management reports which are available in real-time which is necessary for us to make good business decisions that are essential for our growth and profitability.”</p>",
126
+ stars: [],
127
+ org_logo: {
128
+ kind: "custom",
129
+ data: {
130
+ id: "JtadEUC8EngX",
131
+ filename: "image.png",
132
+ kind: "image",
133
+ location:
134
+ "https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT.png",
135
+ srcset: {
136
+ "1080w":
137
+ "https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-1080w.webp",
138
+ "1200w":
139
+ "https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-1200w.webp",
140
+ "1920w":
141
+ "https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-1920w.webp",
142
+ "320w":
143
+ "https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-320w.webp",
144
+ "640w":
145
+ "https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-640w.webp",
146
+ "750w":
147
+ "https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-750w.webp",
148
+ "828w":
149
+ "https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-828w.webp",
150
+ path: "https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-1920w.webp 1920w, https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-320w.webp 320w, https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-640w.webp 640w, https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-750w.webp 750w, https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-828w.webp 828w, https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-1080w.webp 1080w, https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-1200w.webp 1200w",
151
+ },
152
+ mimetype: "image/png",
153
+ },
154
+ },
155
+ },
156
+ {
157
+ card: null,
158
+ profileSection: null,
159
+ avatar: {
160
+ kind: "icon",
161
+ data: {
162
+ id: "user",
163
+ label: "User",
164
+ tags: ["custom", "user", "users"],
165
+ svgCode:
166
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M12 12.75C8.83 12.75 6.25 10.17 6.25 7C6.25 3.83 8.83 1.25 12 1.25C15.17 1.25 17.75 3.83 17.75 7C17.75 10.17 15.17 12.75 12 12.75ZM12 2.75C9.66 2.75 7.75 4.66 7.75 7C7.75 9.34 9.66 11.25 12 11.25C14.34 11.25 16.25 9.34 16.25 7C16.25 4.66 14.34 2.75 12 2.75Z" fill="var(--color-icon-primary)"/>\n<path d="M20.5901 22.75C20.1801 22.75 19.8401 22.41 19.8401 22C19.8401 18.55 16.3202 15.75 12.0002 15.75C7.68015 15.75 4.16016 18.55 4.16016 22C4.16016 22.41 3.82016 22.75 3.41016 22.75C3.00016 22.75 2.66016 22.41 2.66016 22C2.66016 17.73 6.85015 14.25 12.0002 14.25C17.1502 14.25 21.3401 17.73 21.3401 22C21.3401 22.41 21.0001 22.75 20.5901 22.75Z" fill="var(--color-icon-primary)"/>\n</svg>',
167
+ },
168
+ },
169
+ clientInfo: null,
170
+ name: "John Smith",
171
+ position: "Director, Global Supply Chain",
172
+ quote:
173
+ "<p>“The use of the Oracle NetSuite ERP in the cloud is very successful. It allows us to have management reports which are available in real-time which is necessary for us to make good business decisions that are essential for our growth and profitability.”</p>",
174
+ stars: [],
175
+ org_logo: {
176
+ kind: "custom",
177
+ data: {
178
+ id: "JtadEUC8EngX",
179
+ filename: "image.png",
180
+ kind: "image",
181
+ location:
182
+ "https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT.png",
183
+ srcset: {
184
+ "1080w":
185
+ "https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-1080w.webp",
186
+ "1200w":
187
+ "https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-1200w.webp",
188
+ "1920w":
189
+ "https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-1920w.webp",
190
+ "320w":
191
+ "https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-320w.webp",
192
+ "640w":
193
+ "https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-640w.webp",
194
+ "750w":
195
+ "https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-750w.webp",
196
+ "828w":
197
+ "https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-828w.webp",
198
+ path: "https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-1920w.webp 1920w, https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-320w.webp 320w, https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-640w.webp 640w, https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-750w.webp 750w, https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-828w.webp 828w, https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-1080w.webp 1080w, https://static.levostg.online/W6OEVMW8/image-k5KjTxZvzhCT-1200w.webp 1200w",
199
+ },
200
+ mimetype: "image/png",
201
+ },
202
+ },
203
+ },
204
+ ],
205
+ "carousel-navigation-container": null,
206
+ "carousel-navigation": null,
207
+ "carousel-navigation-pill": null,
208
+ };
209
+
210
+ export const testimonialWithLogo: IBlockLayouts = {
211
+ key: "reversed",
212
+ title: "Reversed Layout with Stars",
213
+ styles: {
214
+ layout: {
215
+ width: "100%",
216
+ "padding-top": "10xl",
217
+ "padding-bottom": "10xl",
218
+ "padding-right": "none",
219
+ "padding-left": "none",
220
+ "media:max:768px": {
221
+ "padding-top": "5xl",
222
+ "padding-bottom": "5xl",
223
+ "padding-right": "5xl",
224
+ "padding-left": "5xl",
225
+ },
226
+ "media:max:480px": {
227
+ "padding-top": "2xl",
228
+ "padding-bottom": "2xl",
229
+ "padding-right": "2xl",
230
+ "padding-left": "2xl",
231
+ },
232
+ },
233
+ container: {
234
+ display: "block",
235
+ "flex-direction": "column",
236
+ "row-gap": "7xl",
237
+ "media:max:768px": {
238
+ "row-gap": "3xl",
239
+ },
240
+ "media:max:480px": {
241
+ "row-gap": "4xl",
242
+ },
243
+ },
244
+ header: {
245
+ display: "flex",
246
+ "justify-content": "center",
247
+ "margin-bottom": "3xl",
248
+ tablet: {
249
+ "margin-bottom": "2xl",
250
+ },
251
+ },
252
+ textWrapper: {
253
+ display: "flex",
254
+ "flex-direction": "row",
255
+ "align-items": "center",
256
+ "text-align": "center",
257
+ "row-gap": "sm",
258
+ width: "100%",
259
+ "justify-content": "space-between",
260
+ },
261
+ title: {
262
+ "font-size": "3xl",
263
+ "font-weight": "bold",
264
+ color: "var(--color-text-1)",
265
+ tablet: {
266
+ "font-size": "2xl",
267
+ },
268
+ "text-align": "left",
269
+ },
270
+ description: {
271
+ "font-size": "lg",
272
+ color: "var(--color-text-2)",
273
+ tablet: {
274
+ "font-size": "base",
275
+ },
276
+ "text-align": "left",
277
+ "max-width": "400px",
278
+ },
279
+ testimonials_levoGroup: {
280
+ number_of_slides: 2,
281
+ tablet: {
282
+ number_of_slides: 1,
283
+ },
284
+ mobile: {
285
+ number_of_slides: 1,
286
+ },
287
+ },
288
+ testimonials: [
289
+ {
290
+ card: {
291
+ display: "flex",
292
+ "flex-direction": "column-reverse",
293
+ "background-color": "var(--color-background)",
294
+ "border-radius": "2xl",
295
+ "box-shadow": "lg",
296
+ padding: "2xl",
297
+ "row-gap": "xl",
298
+ border: "1px solid",
299
+ mobile: {
300
+ padding: "lg",
301
+ "row-gap": "lg",
302
+ },
303
+ },
304
+ profileSection: {
305
+ display: "flex",
306
+ "align-items": "center",
307
+ "column-gap": "lg",
308
+ mobile: {
309
+ "column-gap": "sm",
310
+ },
311
+ "justify-content": "space-between",
312
+ },
313
+ avatar: {
314
+ height: "64px",
315
+ width: "64px",
316
+ "border-radius": "50%",
317
+ "object-fit": "cover",
318
+ border: "2px solid",
319
+ "border-color": "var(--color-border)",
320
+ mobile: {
321
+ height: "48px",
322
+ width: "48px",
323
+ },
324
+ },
325
+ clientInfo: {
326
+ display: "flex",
327
+ "flex-direction": "column",
328
+ "row-gap": "4xs",
329
+ },
330
+ name: {
331
+ color: "var(--color-text-1)",
332
+ "font-size": "xl",
333
+ "font-weight": "bold",
334
+ mobile: {
335
+ "font-size": "lg",
336
+ },
337
+ },
338
+ position: {
339
+ color: "var(--color-text-2)",
340
+ "font-size": "sm",
341
+ "font-weight": "medium",
342
+ },
343
+ quote: {
344
+ color: "var(--color-text-1)",
345
+ "font-size": "base",
346
+ "line-height": 1.6,
347
+ "font-style": "italic",
348
+ mobile: {
349
+ "font-size": "sm",
350
+ },
351
+ },
352
+ org_logo: {
353
+ height: "80px",
354
+ width: "80px",
355
+ "font-size": "80px",
356
+ "object-fit": "contain",
357
+ },
358
+ profileSection_content: {
359
+ display: "flex",
360
+ "column-gap": "xs",
361
+ },
362
+ },
363
+ {
364
+ card: {
365
+ display: "flex",
366
+ "flex-direction": "column-reverse",
367
+ "background-color": "var(--color-background)",
368
+ "border-radius": "2xl",
369
+ "box-shadow": "lg",
370
+ padding: "2xl",
371
+ "row-gap": "xl",
372
+ border: "1px solid",
373
+ mobile: {
374
+ padding: "lg",
375
+ "row-gap": "lg",
376
+ },
377
+ },
378
+ profileSection: {
379
+ display: "flex",
380
+ "align-items": "center",
381
+ "column-gap": "lg",
382
+ mobile: {
383
+ "column-gap": "sm",
384
+ },
385
+ "justify-content": "space-between",
386
+ },
387
+ avatar: {
388
+ height: "64px",
389
+ width: "64px",
390
+ "border-radius": "50%",
391
+ "object-fit": "cover",
392
+ border: "2px solid",
393
+ "border-color": "var(--color-border)",
394
+ mobile: {
395
+ height: "48px",
396
+ width: "48px",
397
+ },
398
+ },
399
+ clientInfo: {
400
+ display: "flex",
401
+ "flex-direction": "column",
402
+ "row-gap": "4xs",
403
+ },
404
+ name: {
405
+ color: "var(--color-text-1)",
406
+ "font-size": "xl",
407
+ "font-weight": "bold",
408
+ mobile: {
409
+ "font-size": "lg",
410
+ },
411
+ },
412
+ position: {
413
+ color: "var(--color-text-2)",
414
+ "font-size": "sm",
415
+ "font-weight": "medium",
416
+ },
417
+ quote: {
418
+ color: "var(--color-text-1)",
419
+ "font-size": "base",
420
+ "line-height": 1.6,
421
+ "font-style": "italic",
422
+ mobile: {
423
+ "font-size": "sm",
424
+ },
425
+ },
426
+ org_logo: {
427
+ height: "80px",
428
+ width: "80px",
429
+ "font-size": "80px",
430
+ "object-fit": "contain",
431
+ },
432
+ profileSection_content: {
433
+ display: "flex",
434
+ "column-gap": "xs",
435
+ },
436
+ },
437
+ {
438
+ card: {
439
+ display: "flex",
440
+ "flex-direction": "column-reverse",
441
+ "background-color": "var(--color-background)",
442
+ "border-radius": "2xl",
443
+ "box-shadow": "lg",
444
+ padding: "2xl",
445
+ "row-gap": "xl",
446
+ border: "1px solid",
447
+ mobile: {
448
+ padding: "lg",
449
+ "row-gap": "lg",
450
+ },
451
+ },
452
+ profileSection: {
453
+ display: "flex",
454
+ "align-items": "center",
455
+ "column-gap": "lg",
456
+ mobile: {
457
+ "column-gap": "sm",
458
+ },
459
+ "justify-content": "space-between",
460
+ },
461
+ avatar: {
462
+ height: "64px",
463
+ width: "64px",
464
+ "border-radius": "50%",
465
+ "object-fit": "cover",
466
+ border: "2px solid",
467
+ "border-color": "var(--color-border)",
468
+ mobile: {
469
+ height: "48px",
470
+ width: "48px",
471
+ },
472
+ },
473
+ clientInfo: {
474
+ display: "flex",
475
+ "flex-direction": "column",
476
+ "row-gap": "4xs",
477
+ },
478
+ name: {
479
+ color: "var(--color-text-1)",
480
+ "font-size": "xl",
481
+ "font-weight": "bold",
482
+ mobile: {
483
+ "font-size": "lg",
484
+ },
485
+ },
486
+ position: {
487
+ color: "var(--color-text-2)",
488
+ "font-size": "sm",
489
+ "font-weight": "medium",
490
+ },
491
+ quote: {
492
+ color: "var(--color-text-1)",
493
+ "font-size": "base",
494
+ "line-height": 1.6,
495
+ "font-style": "italic",
496
+ mobile: {
497
+ "font-size": "sm",
498
+ },
499
+ },
500
+ org_logo: {
501
+ height: "80px",
502
+ width: "80px",
503
+ "font-size": "80px",
504
+ "object-fit": "contain",
505
+ },
506
+ profileSection_content: {
507
+ display: "flex",
508
+ "column-gap": "xs",
509
+ },
510
+ },
511
+ {
512
+ card: {
513
+ display: "flex",
514
+ "flex-direction": "column-reverse",
515
+ "background-color": "var(--color-background)",
516
+ "border-radius": "2xl",
517
+ "box-shadow": "lg",
518
+ padding: "2xl",
519
+ "row-gap": "xl",
520
+ border: "1px solid",
521
+ mobile: {
522
+ padding: "lg",
523
+ "row-gap": "lg",
524
+ },
525
+ },
526
+ profileSection: {
527
+ display: "flex",
528
+ "align-items": "center",
529
+ "column-gap": "lg",
530
+ mobile: {
531
+ "column-gap": "sm",
532
+ },
533
+ "justify-content": "space-between",
534
+ },
535
+ avatar: {
536
+ height: "64px",
537
+ width: "64px",
538
+ "border-radius": "50%",
539
+ "object-fit": "cover",
540
+ border: "2px solid",
541
+ "border-color": "var(--color-border)",
542
+ mobile: {
543
+ height: "48px",
544
+ width: "48px",
545
+ },
546
+ },
547
+ clientInfo: {
548
+ display: "flex",
549
+ "flex-direction": "column",
550
+ "row-gap": "4xs",
551
+ },
552
+ name: {
553
+ color: "var(--color-text-1)",
554
+ "font-size": "xl",
555
+ "font-weight": "bold",
556
+ mobile: {
557
+ "font-size": "lg",
558
+ },
559
+ },
560
+ position: {
561
+ color: "var(--color-text-2)",
562
+ "font-size": "sm",
563
+ "font-weight": "medium",
564
+ },
565
+ quote: {
566
+ color: "var(--color-text-1)",
567
+ "font-size": "base",
568
+ "line-height": 1.6,
569
+ "font-style": "italic",
570
+ mobile: {
571
+ "font-size": "sm",
572
+ },
573
+ },
574
+ org_logo: {
575
+ height: "80px",
576
+ width: "80px",
577
+ "font-size": "80px",
578
+ "object-fit": "contain",
579
+ },
580
+ profileSection_content: {
581
+ display: "flex",
582
+ "column-gap": "xs",
583
+ },
584
+ },
585
+ {
586
+ card: {
587
+ display: "flex",
588
+ "flex-direction": "column-reverse",
589
+ "background-color": "var(--color-background)",
590
+ "border-radius": "2xl",
591
+ "box-shadow": "lg",
592
+ padding: "2xl",
593
+ "row-gap": "xl",
594
+ border: "1px solid",
595
+ mobile: {
596
+ padding: "lg",
597
+ "row-gap": "lg",
598
+ },
599
+ },
600
+ profileSection: {
601
+ display: "flex",
602
+ "align-items": "center",
603
+ "column-gap": "lg",
604
+ mobile: {
605
+ "column-gap": "sm",
606
+ },
607
+ "justify-content": "space-between",
608
+ },
609
+ avatar: {
610
+ height: "64px",
611
+ width: "64px",
612
+ "border-radius": "50%",
613
+ "object-fit": "cover",
614
+ border: "2px solid",
615
+ "border-color": "var(--color-border)",
616
+ mobile: {
617
+ height: "48px",
618
+ width: "48px",
619
+ },
620
+ },
621
+ clientInfo: {
622
+ display: "flex",
623
+ "flex-direction": "column",
624
+ "row-gap": "4xs",
625
+ },
626
+ name: {
627
+ color: "var(--color-text-1)",
628
+ "font-size": "xl",
629
+ "font-weight": "bold",
630
+ mobile: {
631
+ "font-size": "lg",
632
+ },
633
+ },
634
+ position: {
635
+ color: "var(--color-text-2)",
636
+ "font-size": "sm",
637
+ "font-weight": "medium",
638
+ },
639
+ quote: {
640
+ color: "var(--color-text-1)",
641
+ "font-size": "base",
642
+ "line-height": 1.6,
643
+ "font-style": "italic",
644
+ mobile: {
645
+ "font-size": "sm",
646
+ },
647
+ },
648
+ org_logo: {
649
+ height: "80px",
650
+ width: "80px",
651
+ "font-size": "80px",
652
+ "object-fit": "contain",
653
+ },
654
+ profileSection_content: {
655
+ display: "flex",
656
+ "column-gap": "xs",
657
+ },
658
+ },
659
+ {
660
+ card: {
661
+ display: "flex",
662
+ "flex-direction": "column-reverse",
663
+ "background-color": "var(--color-background)",
664
+ "border-radius": "2xl",
665
+ "box-shadow": "lg",
666
+ padding: "2xl",
667
+ "row-gap": "xl",
668
+ border: "1px solid",
669
+ "border-color": "var(--color-border)",
670
+ height: "100%",
671
+ mobile: {
672
+ padding: "lg",
673
+ "row-gap": "lg",
674
+ },
675
+ },
676
+ profileSection: {
677
+ display: "flex",
678
+ "align-items": "center",
679
+ "column-gap": "lg",
680
+ mobile: {
681
+ "column-gap": "sm",
682
+ },
683
+ },
684
+ avatar: {
685
+ height: "64px",
686
+ width: "64px",
687
+ "border-radius": "50%",
688
+ "object-fit": "cover",
689
+ border: "2px solid",
690
+ "border-color": "var(--color-border)",
691
+ mobile: {
692
+ height: "48px",
693
+ width: "48px",
694
+ },
695
+ },
696
+ clientInfo: {
697
+ display: "flex",
698
+ "flex-direction": "column",
699
+ "row-gap": "4xs",
700
+ },
701
+ name: {
702
+ color: "var(--color-text-1)",
703
+ "font-size": "xl",
704
+ "font-weight": "bold",
705
+ mobile: {
706
+ "font-size": "lg",
707
+ },
708
+ },
709
+ position: {
710
+ color: "var(--color-text-2)",
711
+ "font-size": "sm",
712
+ "font-weight": "medium",
713
+ },
714
+ quote: {
715
+ color: "var(--color-text-1)",
716
+ "font-size": "base",
717
+ "line-height": 1.6,
718
+ "font-style": "italic",
719
+ mobile: {
720
+ "font-size": "sm",
721
+ },
722
+ },
723
+ },
724
+ {
725
+ card: {
726
+ display: "flex",
727
+ "flex-direction": "column-reverse",
728
+ "background-color": "var(--color-background)",
729
+ "border-radius": "2xl",
730
+ "box-shadow": "lg",
731
+ padding: "2xl",
732
+ "row-gap": "xl",
733
+ border: "1px solid",
734
+ "border-color": "var(--color-border)",
735
+ height: "100%",
736
+ mobile: {
737
+ padding: "lg",
738
+ "row-gap": "lg",
739
+ },
740
+ },
741
+ profileSection: {
742
+ display: "flex",
743
+ "align-items": "center",
744
+ "column-gap": "lg",
745
+ mobile: {
746
+ "column-gap": "sm",
747
+ },
748
+ },
749
+ avatar: {
750
+ height: "64px",
751
+ width: "64px",
752
+ "border-radius": "50%",
753
+ "object-fit": "cover",
754
+ border: "2px solid",
755
+ "border-color": "var(--color-border)",
756
+ mobile: {
757
+ height: "48px",
758
+ width: "48px",
759
+ },
760
+ },
761
+ clientInfo: {
762
+ display: "flex",
763
+ "flex-direction": "column",
764
+ "row-gap": "4xs",
765
+ },
766
+ name: {
767
+ color: "var(--color-text-1)",
768
+ "font-size": "xl",
769
+ "font-weight": "bold",
770
+ mobile: {
771
+ "font-size": "lg",
772
+ },
773
+ },
774
+ position: {
775
+ color: "var(--color-text-2)",
776
+ "font-size": "sm",
777
+ "font-weight": "medium",
778
+ },
779
+ quote: {
780
+ color: "var(--color-text-1)",
781
+ "font-size": "base",
782
+ "line-height": 1.6,
783
+ "font-style": "italic",
784
+ mobile: {
785
+ "font-size": "sm",
786
+ },
787
+ },
788
+ },
789
+ {
790
+ card: {
791
+ display: "flex",
792
+ "flex-direction": "column",
793
+ "background-color": "var(--color-background)",
794
+ "border-radius": "2xl",
795
+ "box-shadow": "lg",
796
+ padding: "2xl",
797
+ "row-gap": "xl",
798
+ border: "1px solid",
799
+ "border-color": "var(--color-border)",
800
+ height: "100%",
801
+ mobile: {
802
+ padding: "lg",
803
+ "row-gap": "lg",
804
+ },
805
+ },
806
+ profileSection: {
807
+ display: "flex",
808
+ "align-items": "center",
809
+ "column-gap": "lg",
810
+ mobile: {
811
+ "column-gap": "sm",
812
+ },
813
+ },
814
+ avatar: {
815
+ height: "64px",
816
+ width: "64px",
817
+ "border-radius": "50%",
818
+ "object-fit": "cover",
819
+ border: "2px solid",
820
+ "border-color": "var(--color-border)",
821
+ mobile: {
822
+ height: "48px",
823
+ width: "48px",
824
+ },
825
+ },
826
+ clientInfo: {
827
+ display: "flex",
828
+ "flex-direction": "column",
829
+ "row-gap": "4xs",
830
+ },
831
+ name: {
832
+ color: "var(--color-text-1)",
833
+ "font-size": "xl",
834
+ "font-weight": "bold",
835
+ mobile: {
836
+ "font-size": "lg",
837
+ },
838
+ },
839
+ position: {
840
+ color: "var(--color-text-2)",
841
+ "font-size": "sm",
842
+ "font-weight": "medium",
843
+ },
844
+ quote: {
845
+ color: "var(--color-text-1)",
846
+ "font-size": "base",
847
+ "line-height": 1.6,
848
+ "font-style": "italic",
849
+ mobile: {
850
+ "font-size": "sm",
851
+ },
852
+ },
853
+ },
854
+ ],
855
+ "carousel-navigation-container": {
856
+ display: "flex",
857
+ "justify-content": "center",
858
+ "margin-top": "2xl",
859
+ },
860
+ "carousel-navigation": {
861
+ display: "flex",
862
+ "column-gap": "sm",
863
+ "align-items": "center",
864
+ },
865
+ "carousel-navigation-pill": {
866
+ width: "8px",
867
+ height: "8px",
868
+ "border-radius": "8px",
869
+ "background-color": "var(--color-border)",
870
+ cursor: "pointer",
871
+ transition: "all 0.3s ease",
872
+ "&:hover": {
873
+ "background-color": "var(--color-brand-secondary)",
874
+ },
875
+ filter: "none",
876
+ },
877
+ },
878
+ content: TESTIMONIAL_WITH_LOGO,
879
+ config: {
880
+ testimonials_levoGroup: {
881
+ carousel: {
882
+ loop: true,
883
+ autoPlay: false,
884
+ },
885
+ },
886
+ },
887
+ };