@levo-so/blocks 0.1.0 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (471) hide show
  1. package/package.json +5 -9
  2. package/src/blocks/about-us/about-us-1.schema.ts +563 -0
  3. package/src/blocks/about-us/about-us-1.tsx +53 -0
  4. package/src/blocks/blogs/blog-listing-1.schema.ts +419 -0
  5. package/src/blocks/blogs/blog-listing-1.tsx +79 -0
  6. package/src/blocks/blogs/blog-listing-2.schema.ts +608 -0
  7. package/src/blocks/blogs/blog-listing-2.tsx +83 -0
  8. package/src/blocks/blogs/blog-post-1.schema.ts +392 -0
  9. package/src/blocks/blogs/blog-post-1.tsx +52 -0
  10. package/src/blocks/blogs/blog-post-2.schema.ts +834 -0
  11. package/src/blocks/blogs/blog-post-2.tsx +131 -0
  12. package/src/blocks/cards/cards-10.schema.ts +433 -0
  13. package/src/blocks/cards/cards-10.tsx +46 -0
  14. package/src/blocks/cards/cards-11.schema.ts +440 -0
  15. package/src/blocks/cards/cards-11.tsx +50 -0
  16. package/src/blocks/cards/cards-12.schema.ts +578 -0
  17. package/src/blocks/cards/cards-12.tsx +54 -0
  18. package/src/blocks/cards/cards-2.schema.ts +293 -0
  19. package/src/blocks/cards/cards-2.tsx +42 -0
  20. package/src/blocks/cards/cards-3.schema.ts +365 -0
  21. package/src/blocks/cards/cards-3.tsx +49 -0
  22. package/src/blocks/cards/cards-4.schema.ts +677 -0
  23. package/src/blocks/cards/cards-4.tsx +50 -0
  24. package/src/blocks/cards/cards-5.schema.ts +264 -0
  25. package/src/blocks/cards/cards-5.tsx +34 -0
  26. package/src/blocks/cards/cards-6.schema.ts +639 -0
  27. package/src/blocks/cards/cards-6.tsx +136 -0
  28. package/src/blocks/cards/cards-7.schema.ts +1793 -0
  29. package/src/blocks/cards/cards-7.tsx +165 -0
  30. package/src/blocks/cards/cards-8.schema.ts +691 -0
  31. package/src/blocks/cards/cards-8.tsx +43 -0
  32. package/src/blocks/cards/cards-9.schema.ts +827 -0
  33. package/src/blocks/cards/cards-9.tsx +54 -0
  34. package/src/blocks/carousel/carousel-1.schema.ts +250 -0
  35. package/src/blocks/carousel/carousel-1.tsx +79 -0
  36. package/src/blocks/contact-us/contact-us-1.schema.ts +226 -0
  37. package/src/blocks/contact-us/contact-us-1.tsx +39 -0
  38. package/src/blocks/contact-us/contact-us-2.schema.ts +524 -0
  39. package/src/blocks/contact-us/contact-us-2.tsx +71 -0
  40. package/src/blocks/content/content-1.schema.ts +884 -0
  41. package/src/blocks/content/content-1.tsx +69 -0
  42. package/src/blocks/content/content-2.schema.ts +209 -0
  43. package/src/blocks/content/content-2.tsx +32 -0
  44. package/src/blocks/content/content-3.schema.ts +864 -0
  45. package/src/blocks/content/content-3.tsx +54 -0
  46. package/src/blocks/content/content-4.schema.ts +287 -0
  47. package/src/blocks/content/content-4.tsx +47 -0
  48. package/src/blocks/content/content-5.schema.ts +944 -0
  49. package/src/blocks/content/content-5.tsx +58 -0
  50. package/src/blocks/content/content-6.schema.ts +991 -0
  51. package/src/blocks/content/content-6.tsx +61 -0
  52. package/src/blocks/cta/cta-1.schema.ts +361 -0
  53. package/src/blocks/cta/cta-1.tsx +33 -0
  54. package/src/blocks/cta/cta-2.schema.ts +209 -0
  55. package/src/blocks/cta/cta-2.tsx +28 -0
  56. package/src/blocks/cta/cta-3.schema.ts +156 -0
  57. package/src/blocks/cta/cta-3.tsx +48 -0
  58. package/src/blocks/embed/embed-1.schema.ts +153 -0
  59. package/src/blocks/embed/embed-1.tsx +38 -0
  60. package/src/blocks/event/event-details.schema.ts +737 -0
  61. package/src/blocks/event/event-details.tsx +107 -0
  62. package/src/blocks/event/event-listing-2.schema.ts +496 -0
  63. package/src/blocks/event/event-listing-2.tsx +70 -0
  64. package/src/blocks/event/event-listing-3.schema.ts +605 -0
  65. package/src/blocks/event/event-listing-3.tsx +95 -0
  66. package/src/blocks/event/event-listing.schema.ts +1358 -0
  67. package/src/blocks/event/event-listing.tsx +90 -0
  68. package/src/blocks/faq/faq-1.schema.ts +357 -0
  69. package/src/blocks/faq/faq-1.tsx +65 -0
  70. package/src/blocks/faq/faq-2.schema.ts +356 -0
  71. package/src/blocks/faq/faq-2.tsx +84 -0
  72. package/src/blocks/faq/faq-3.schema.ts +475 -0
  73. package/src/blocks/faq/faq-3.tsx +70 -0
  74. package/src/blocks/features/features-1/features-1.schema.ts +165 -0
  75. package/src/blocks/features/features-1/features-1.tsx +48 -0
  76. package/src/blocks/features/features-1/variants/default.ts +197 -0
  77. package/{dist/blocks/features/features-1/variants/index.js → src/blocks/features/features-1/variants/index.ts} +7 -1
  78. package/src/blocks/features/features-1/variants/stylized-cards-v1.ts +138 -0
  79. package/src/blocks/features/features-1/variants/stylized-cards-v2.ts +487 -0
  80. package/src/blocks/features/features-2.schema.ts +338 -0
  81. package/src/blocks/features/features-2.tsx +66 -0
  82. package/src/blocks/features/features-3.schema.ts +438 -0
  83. package/src/blocks/features/features-3.tsx +56 -0
  84. package/src/blocks/features/features-4.schema.ts +631 -0
  85. package/src/blocks/features/features-4.tsx +75 -0
  86. package/src/blocks/features/features-5.schema.ts +747 -0
  87. package/src/blocks/features/features-5.tsx +49 -0
  88. package/src/blocks/features/features-6.schema.ts +849 -0
  89. package/src/blocks/features/features-6.tsx +125 -0
  90. package/src/blocks/footer/footer-1.schema.ts +589 -0
  91. package/src/blocks/footer/footer-1.tsx +90 -0
  92. package/src/blocks/footer/footer-2.schema.ts +898 -0
  93. package/src/blocks/footer/footer-2.tsx +77 -0
  94. package/src/blocks/footer/footer-3.schema.ts +487 -0
  95. package/src/blocks/footer/footer-3.tsx +100 -0
  96. package/src/blocks/footer/footer-4.schema.ts +644 -0
  97. package/src/blocks/footer/footer-4.tsx +97 -0
  98. package/src/blocks/footer/footer-5.schema.ts +425 -0
  99. package/src/blocks/footer/footer-5.tsx +91 -0
  100. package/src/blocks/hero/hero-1.schema.ts +766 -0
  101. package/src/blocks/hero/hero-1.tsx +52 -0
  102. package/src/blocks/hero/hero-2.schema.ts +316 -0
  103. package/src/blocks/hero/hero-2.tsx +49 -0
  104. package/src/blocks/hero/hero-3.schema.ts +415 -0
  105. package/src/blocks/hero/hero-3.tsx +50 -0
  106. package/src/blocks/hero/hero-4.schema.ts +325 -0
  107. package/src/blocks/hero/hero-4.tsx +89 -0
  108. package/src/blocks/hero/hero-5.schema.ts +192 -0
  109. package/src/blocks/hero/hero-5.tsx +86 -0
  110. package/src/blocks/hero/hero-6.schema.ts +703 -0
  111. package/src/blocks/hero/hero-6.tsx +62 -0
  112. package/src/blocks/hero/hero-7.schema.ts +508 -0
  113. package/src/blocks/hero/hero-7.tsx +115 -0
  114. package/src/blocks/hero/hero-8.schema.ts +372 -0
  115. package/src/blocks/hero/hero-8.tsx +113 -0
  116. package/src/blocks/hero/hero-9.schema.ts +379 -0
  117. package/src/blocks/hero/hero-9.tsx +49 -0
  118. package/src/blocks/index.ts +78 -0
  119. package/src/blocks/logos/logos-1.schema.ts +264 -0
  120. package/src/blocks/logos/logos-1.tsx +60 -0
  121. package/src/blocks/navbar/navbar-1.schema.ts +961 -0
  122. package/src/blocks/navbar/navbar-1.tsx +398 -0
  123. package/src/blocks/navbar/navbar-2.schema.ts +1226 -0
  124. package/src/blocks/navbar/navbar-2.tsx +417 -0
  125. package/src/blocks/pricing/pricing-1.schema.ts +1002 -0
  126. package/src/blocks/pricing/pricing-1.tsx +88 -0
  127. package/src/blocks/products/products-listing-1.schema.ts +274 -0
  128. package/src/blocks/products/products-listing-1.tsx +48 -0
  129. package/src/blocks/stats/stats-1.schema.ts +231 -0
  130. package/src/blocks/stats/stats-1.tsx +38 -0
  131. package/src/blocks/stats/stats-2.schema.ts +111 -0
  132. package/src/blocks/stats/stats-2.tsx +52 -0
  133. package/src/blocks/stats/variants/default.ts +190 -0
  134. package/src/blocks/stats/variants/hero.ts +153 -0
  135. package/{dist/blocks/stats/variants/index.js → src/blocks/stats/variants/index.ts} +1 -0
  136. package/src/blocks/team/team-1.schema.ts +516 -0
  137. package/src/blocks/team/team-1.tsx +80 -0
  138. package/src/blocks/team/team-2.schema.ts +2813 -0
  139. package/src/blocks/team/team-2.tsx +74 -0
  140. package/src/blocks/team/team-3.schema.ts +707 -0
  141. package/src/blocks/team/team-3.tsx +103 -0
  142. package/src/blocks/termsAndPrivacy/terms-and-conditions-1.schema.ts +168 -0
  143. package/src/blocks/termsAndPrivacy/terms-and-conditions-1.tsx +29 -0
  144. package/src/blocks/testimonial/testimonial-1.schema.ts +345 -0
  145. package/src/blocks/testimonial/testimonial-1.tsx +79 -0
  146. package/src/blocks/testimonial/testimonial-2.schema.ts +816 -0
  147. package/src/blocks/testimonial/testimonial-2.tsx +161 -0
  148. package/src/blocks/testimonial/testimonial-3.schema.ts +279 -0
  149. package/src/blocks/testimonial/testimonial-3.tsx +128 -0
  150. package/src/blocks/testimonial/testimonial-4.schema.ts +3373 -0
  151. package/src/blocks/testimonial/testimonial-4.tsx +202 -0
  152. package/src/blocks/testimonial/testimonial-5.schema.ts +434 -0
  153. package/src/blocks/testimonial/testimonial-5.tsx +106 -0
  154. package/src/blocks/testimonial/testimonial-6.schema.ts +709 -0
  155. package/src/blocks/testimonial/testimonial-6.tsx +128 -0
  156. package/{dist/index.js → src/index.ts} +5 -2
  157. package/{dist/schemas/blocks.js → src/schemas/blocks.ts} +75 -72
  158. package/src/schemas/categories.ts +134 -0
  159. package/src/styles.d.ts +4 -0
  160. package/dist/blocks/about-us/about-us-1.d.ts +0 -5
  161. package/dist/blocks/about-us/about-us-1.js +0 -5
  162. package/dist/blocks/about-us/about-us-1.schema.d.ts +0 -38
  163. package/dist/blocks/about-us/about-us-1.schema.js +0 -537
  164. package/dist/blocks/blogs/blog-listing-1.d.ts +0 -5
  165. package/dist/blocks/blogs/blog-listing-1.js +0 -12
  166. package/dist/blocks/blogs/blog-listing-1.schema.d.ts +0 -59
  167. package/dist/blocks/blogs/blog-listing-1.schema.js +0 -387
  168. package/dist/blocks/blogs/blog-listing-2.d.ts +0 -5
  169. package/dist/blocks/blogs/blog-listing-2.js +0 -9
  170. package/dist/blocks/blogs/blog-listing-2.schema.d.ts +0 -104
  171. package/dist/blocks/blogs/blog-listing-2.schema.js +0 -572
  172. package/dist/blocks/blogs/blog-post-1.d.ts +0 -6
  173. package/dist/blocks/blogs/blog-post-1.js +0 -8
  174. package/dist/blocks/blogs/blog-post-1.schema.d.ts +0 -48
  175. package/dist/blocks/blogs/blog-post-1.schema.js +0 -358
  176. package/dist/blocks/blogs/blog-post-2.d.ts +0 -6
  177. package/dist/blocks/blogs/blog-post-2.js +0 -8
  178. package/dist/blocks/blogs/blog-post-2.schema.d.ts +0 -74
  179. package/dist/blocks/blogs/blog-post-2.schema.js +0 -779
  180. package/dist/blocks/cards/cards-10.d.ts +0 -6
  181. package/dist/blocks/cards/cards-10.js +0 -4
  182. package/dist/blocks/cards/cards-10.schema.d.ts +0 -44
  183. package/dist/blocks/cards/cards-10.schema.js +0 -405
  184. package/dist/blocks/cards/cards-11.d.ts +0 -6
  185. package/dist/blocks/cards/cards-11.js +0 -4
  186. package/dist/blocks/cards/cards-11.schema.d.ts +0 -58
  187. package/dist/blocks/cards/cards-11.schema.js +0 -406
  188. package/dist/blocks/cards/cards-12.d.ts +0 -6
  189. package/dist/blocks/cards/cards-12.js +0 -4
  190. package/dist/blocks/cards/cards-12.schema.d.ts +0 -38
  191. package/dist/blocks/cards/cards-12.schema.js +0 -545
  192. package/dist/blocks/cards/cards-2.d.ts +0 -5
  193. package/dist/blocks/cards/cards-2.js +0 -4
  194. package/dist/blocks/cards/cards-2.schema.d.ts +0 -46
  195. package/dist/blocks/cards/cards-2.schema.js +0 -260
  196. package/dist/blocks/cards/cards-3.d.ts +0 -6
  197. package/dist/blocks/cards/cards-3.js +0 -5
  198. package/dist/blocks/cards/cards-3.schema.d.ts +0 -36
  199. package/dist/blocks/cards/cards-3.schema.js +0 -351
  200. package/dist/blocks/cards/cards-4.d.ts +0 -6
  201. package/dist/blocks/cards/cards-4.js +0 -4
  202. package/dist/blocks/cards/cards-4.schema.d.ts +0 -40
  203. package/dist/blocks/cards/cards-4.schema.js +0 -648
  204. package/dist/blocks/cards/cards-5.d.ts +0 -5
  205. package/dist/blocks/cards/cards-5.js +0 -4
  206. package/dist/blocks/cards/cards-5.schema.d.ts +0 -48
  207. package/dist/blocks/cards/cards-5.schema.js +0 -238
  208. package/dist/blocks/cards/cards-6.d.ts +0 -5
  209. package/dist/blocks/cards/cards-6.js +0 -45
  210. package/dist/blocks/cards/cards-6.schema.d.ts +0 -50
  211. package/dist/blocks/cards/cards-6.schema.js +0 -608
  212. package/dist/blocks/cards/cards-7.d.ts +0 -5
  213. package/dist/blocks/cards/cards-7.js +0 -45
  214. package/dist/blocks/cards/cards-7.schema.d.ts +0 -87
  215. package/dist/blocks/cards/cards-7.schema.js +0 -1732
  216. package/dist/blocks/cards/cards-8.d.ts +0 -6
  217. package/dist/blocks/cards/cards-8.js +0 -4
  218. package/dist/blocks/cards/cards-8.schema.d.ts +0 -40
  219. package/dist/blocks/cards/cards-8.schema.js +0 -660
  220. package/dist/blocks/cards/cards-9.d.ts +0 -5
  221. package/dist/blocks/cards/cards-9.js +0 -4
  222. package/dist/blocks/cards/cards-9.schema.d.ts +0 -55
  223. package/dist/blocks/cards/cards-9.schema.js +0 -798
  224. package/dist/blocks/carousel/carousel-1.d.ts +0 -5
  225. package/dist/blocks/carousel/carousel-1.js +0 -12
  226. package/dist/blocks/carousel/carousel-1.schema.d.ts +0 -51
  227. package/dist/blocks/carousel/carousel-1.schema.js +0 -236
  228. package/dist/blocks/contact-us/contact-us-1.d.ts +0 -5
  229. package/dist/blocks/contact-us/contact-us-1.js +0 -4
  230. package/dist/blocks/contact-us/contact-us-1.schema.d.ts +0 -31
  231. package/dist/blocks/contact-us/contact-us-1.schema.js +0 -202
  232. package/dist/blocks/contact-us/contact-us-2.d.ts +0 -5
  233. package/dist/blocks/contact-us/contact-us-2.js +0 -4
  234. package/dist/blocks/contact-us/contact-us-2.schema.d.ts +0 -59
  235. package/dist/blocks/contact-us/contact-us-2.schema.js +0 -512
  236. package/dist/blocks/content/content-1.d.ts +0 -6
  237. package/dist/blocks/content/content-1.js +0 -4
  238. package/dist/blocks/content/content-1.schema.d.ts +0 -56
  239. package/dist/blocks/content/content-1.schema.js +0 -807
  240. package/dist/blocks/content/content-2.d.ts +0 -5
  241. package/dist/blocks/content/content-2.js +0 -4
  242. package/dist/blocks/content/content-2.schema.d.ts +0 -78
  243. package/dist/blocks/content/content-2.schema.js +0 -200
  244. package/dist/blocks/content/content-3.d.ts +0 -6
  245. package/dist/blocks/content/content-3.js +0 -5
  246. package/dist/blocks/content/content-3.schema.d.ts +0 -23
  247. package/dist/blocks/content/content-3.schema.js +0 -850
  248. package/dist/blocks/content/content-4.d.ts +0 -6
  249. package/dist/blocks/content/content-4.js +0 -6
  250. package/dist/blocks/content/content-4.schema.d.ts +0 -33
  251. package/dist/blocks/content/content-4.schema.js +0 -252
  252. package/dist/blocks/content/content-5.d.ts +0 -6
  253. package/dist/blocks/content/content-5.js +0 -5
  254. package/dist/blocks/content/content-5.schema.d.ts +0 -37
  255. package/dist/blocks/content/content-5.schema.js +0 -932
  256. package/dist/blocks/content/content-6.d.ts +0 -6
  257. package/dist/blocks/content/content-6.js +0 -5
  258. package/dist/blocks/content/content-6.schema.d.ts +0 -41
  259. package/dist/blocks/content/content-6.schema.js +0 -976
  260. package/dist/blocks/cta/cta-1.d.ts +0 -5
  261. package/dist/blocks/cta/cta-1.js +0 -4
  262. package/dist/blocks/cta/cta-1.schema.d.ts +0 -40
  263. package/dist/blocks/cta/cta-1.schema.js +0 -339
  264. package/dist/blocks/cta/cta-2.d.ts +0 -5
  265. package/dist/blocks/cta/cta-2.js +0 -4
  266. package/dist/blocks/cta/cta-2.schema.d.ts +0 -45
  267. package/dist/blocks/cta/cta-2.schema.js +0 -183
  268. package/dist/blocks/cta/cta-3.d.ts +0 -5
  269. package/dist/blocks/cta/cta-3.js +0 -4
  270. package/dist/blocks/cta/cta-3.schema.d.ts +0 -34
  271. package/dist/blocks/cta/cta-3.schema.js +0 -137
  272. package/dist/blocks/embed/embed-1.d.ts +0 -5
  273. package/dist/blocks/embed/embed-1.js +0 -5
  274. package/dist/blocks/embed/embed-1.schema.d.ts +0 -13
  275. package/dist/blocks/embed/embed-1.schema.js +0 -146
  276. package/dist/blocks/event/event-details.d.ts +0 -5
  277. package/dist/blocks/event/event-details.js +0 -9
  278. package/dist/blocks/event/event-details.schema.d.ts +0 -112
  279. package/dist/blocks/event/event-details.schema.js +0 -685
  280. package/dist/blocks/event/event-listing-2.d.ts +0 -5
  281. package/dist/blocks/event/event-listing-2.js +0 -4
  282. package/dist/blocks/event/event-listing-2.schema.d.ts +0 -84
  283. package/dist/blocks/event/event-listing-2.schema.js +0 -455
  284. package/dist/blocks/event/event-listing-3.d.ts +0 -5
  285. package/dist/blocks/event/event-listing-3.js +0 -10
  286. package/dist/blocks/event/event-listing-3.schema.d.ts +0 -77
  287. package/dist/blocks/event/event-listing-3.schema.js +0 -570
  288. package/dist/blocks/event/event-listing.d.ts +0 -5
  289. package/dist/blocks/event/event-listing.js +0 -10
  290. package/dist/blocks/event/event-listing.schema.d.ts +0 -51
  291. package/dist/blocks/event/event-listing.schema.js +0 -1297
  292. package/dist/blocks/faq/faq-1.d.ts +0 -5
  293. package/dist/blocks/faq/faq-1.js +0 -4
  294. package/dist/blocks/faq/faq-1.schema.d.ts +0 -47
  295. package/dist/blocks/faq/faq-1.schema.js +0 -325
  296. package/dist/blocks/faq/faq-2.d.ts +0 -6
  297. package/dist/blocks/faq/faq-2.js +0 -19
  298. package/dist/blocks/faq/faq-2.schema.d.ts +0 -47
  299. package/dist/blocks/faq/faq-2.schema.js +0 -329
  300. package/dist/blocks/faq/faq-3.d.ts +0 -5
  301. package/dist/blocks/faq/faq-3.js +0 -4
  302. package/dist/blocks/faq/faq-3.schema.d.ts +0 -40
  303. package/dist/blocks/faq/faq-3.schema.js +0 -444
  304. package/dist/blocks/features/features-1/features-1.d.ts +0 -5
  305. package/dist/blocks/features/features-1/features-1.js +0 -4
  306. package/dist/blocks/features/features-1/features-1.schema.d.ts +0 -5
  307. package/dist/blocks/features/features-1/features-1.schema.js +0 -142
  308. package/dist/blocks/features/features-1/variants/default.d.ts +0 -37
  309. package/dist/blocks/features/features-1/variants/default.js +0 -185
  310. package/dist/blocks/features/features-1/variants/index.d.ts +0 -5
  311. package/dist/blocks/features/features-1/variants/stylized-cards-v1.d.ts +0 -3
  312. package/dist/blocks/features/features-1/variants/stylized-cards-v1.js +0 -132
  313. package/dist/blocks/features/features-1/variants/stylized-cards-v2.d.ts +0 -3
  314. package/dist/blocks/features/features-1/variants/stylized-cards-v2.js +0 -484
  315. package/dist/blocks/features/features-2.d.ts +0 -5
  316. package/dist/blocks/features/features-2.js +0 -8
  317. package/dist/blocks/features/features-2.schema.d.ts +0 -41
  318. package/dist/blocks/features/features-2.schema.js +0 -321
  319. package/dist/blocks/features/features-3.d.ts +0 -5
  320. package/dist/blocks/features/features-3.js +0 -4
  321. package/dist/blocks/features/features-3.schema.d.ts +0 -40
  322. package/dist/blocks/features/features-3.schema.js +0 -424
  323. package/dist/blocks/features/features-4.d.ts +0 -5
  324. package/dist/blocks/features/features-4.js +0 -4
  325. package/dist/blocks/features/features-4.schema.d.ts +0 -60
  326. package/dist/blocks/features/features-4.schema.js +0 -594
  327. package/dist/blocks/features/features-5.d.ts +0 -6
  328. package/dist/blocks/features/features-5.js +0 -5
  329. package/dist/blocks/features/features-5.schema.d.ts +0 -28
  330. package/dist/blocks/features/features-5.schema.js +0 -727
  331. package/dist/blocks/features/features-6.d.ts +0 -5
  332. package/dist/blocks/features/features-6.js +0 -31
  333. package/dist/blocks/features/features-6.schema.d.ts +0 -74
  334. package/dist/blocks/features/features-6.schema.js +0 -814
  335. package/dist/blocks/footer/footer-1.d.ts +0 -6
  336. package/dist/blocks/footer/footer-1.js +0 -5
  337. package/dist/blocks/footer/footer-1.schema.d.ts +0 -62
  338. package/dist/blocks/footer/footer-1.schema.js +0 -565
  339. package/dist/blocks/footer/footer-2.d.ts +0 -5
  340. package/dist/blocks/footer/footer-2.js +0 -4
  341. package/dist/blocks/footer/footer-2.schema.d.ts +0 -76
  342. package/dist/blocks/footer/footer-2.schema.js +0 -876
  343. package/dist/blocks/footer/footer-3.d.ts +0 -6
  344. package/dist/blocks/footer/footer-3.js +0 -15
  345. package/dist/blocks/footer/footer-3.schema.d.ts +0 -48
  346. package/dist/blocks/footer/footer-3.schema.js +0 -475
  347. package/dist/blocks/footer/footer-4.d.ts +0 -6
  348. package/dist/blocks/footer/footer-4.js +0 -5
  349. package/dist/blocks/footer/footer-4.schema.d.ts +0 -71
  350. package/dist/blocks/footer/footer-4.schema.js +0 -620
  351. package/dist/blocks/footer/footer-5.d.ts +0 -6
  352. package/dist/blocks/footer/footer-5.js +0 -5
  353. package/dist/blocks/footer/footer-5.schema.d.ts +0 -52
  354. package/dist/blocks/footer/footer-5.schema.js +0 -400
  355. package/dist/blocks/hero/hero-1.d.ts +0 -5
  356. package/dist/blocks/hero/hero-1.js +0 -4
  357. package/dist/blocks/hero/hero-1.schema.d.ts +0 -35
  358. package/dist/blocks/hero/hero-1.schema.js +0 -742
  359. package/dist/blocks/hero/hero-2.d.ts +0 -5
  360. package/dist/blocks/hero/hero-2.js +0 -4
  361. package/dist/blocks/hero/hero-2.schema.d.ts +0 -46
  362. package/dist/blocks/hero/hero-2.schema.js +0 -282
  363. package/dist/blocks/hero/hero-3.d.ts +0 -5
  364. package/dist/blocks/hero/hero-3.js +0 -4
  365. package/dist/blocks/hero/hero-3.schema.d.ts +0 -54
  366. package/dist/blocks/hero/hero-3.schema.js +0 -378
  367. package/dist/blocks/hero/hero-4.d.ts +0 -5
  368. package/dist/blocks/hero/hero-4.js +0 -30
  369. package/dist/blocks/hero/hero-4.schema.d.ts +0 -33
  370. package/dist/blocks/hero/hero-4.schema.js +0 -316
  371. package/dist/blocks/hero/hero-5.d.ts +0 -5
  372. package/dist/blocks/hero/hero-5.js +0 -30
  373. package/dist/blocks/hero/hero-5.schema.d.ts +0 -32
  374. package/dist/blocks/hero/hero-5.schema.js +0 -183
  375. package/dist/blocks/hero/hero-6.d.ts +0 -5
  376. package/dist/blocks/hero/hero-6.js +0 -8
  377. package/dist/blocks/hero/hero-6.schema.d.ts +0 -36
  378. package/dist/blocks/hero/hero-6.schema.js +0 -617
  379. package/dist/blocks/hero/hero-7.d.ts +0 -5
  380. package/dist/blocks/hero/hero-7.js +0 -40
  381. package/dist/blocks/hero/hero-7.schema.d.ts +0 -12
  382. package/dist/blocks/hero/hero-7.schema.js +0 -471
  383. package/dist/blocks/hero/hero-8.d.ts +0 -5
  384. package/dist/blocks/hero/hero-8.js +0 -39
  385. package/dist/blocks/hero/hero-8.schema.d.ts +0 -17
  386. package/dist/blocks/hero/hero-8.schema.js +0 -343
  387. package/dist/blocks/hero/hero-9.d.ts +0 -6
  388. package/dist/blocks/hero/hero-9.js +0 -4
  389. package/dist/blocks/hero/hero-9.schema.d.ts +0 -39
  390. package/dist/blocks/hero/hero-9.schema.js +0 -355
  391. package/dist/blocks/index.d.ts +0 -3
  392. package/dist/blocks/index.js +0 -74
  393. package/dist/blocks/logos/logos-1.d.ts +0 -5
  394. package/dist/blocks/logos/logos-1.js +0 -10
  395. package/dist/blocks/logos/logos-1.schema.d.ts +0 -34
  396. package/dist/blocks/logos/logos-1.schema.js +0 -239
  397. package/dist/blocks/navbar/navbar-1.d.ts +0 -6
  398. package/dist/blocks/navbar/navbar-1.js +0 -100
  399. package/dist/blocks/navbar/navbar-1.schema.d.ts +0 -117
  400. package/dist/blocks/navbar/navbar-1.schema.js +0 -938
  401. package/dist/blocks/navbar/navbar-2.d.ts +0 -6
  402. package/dist/blocks/navbar/navbar-2.js +0 -99
  403. package/dist/blocks/navbar/navbar-2.schema.d.ts +0 -134
  404. package/dist/blocks/navbar/navbar-2.schema.js +0 -1200
  405. package/dist/blocks/pricing/pricing-1.d.ts +0 -5
  406. package/dist/blocks/pricing/pricing-1.js +0 -4
  407. package/dist/blocks/pricing/pricing-1.schema.d.ts +0 -87
  408. package/dist/blocks/pricing/pricing-1.schema.js +0 -976
  409. package/dist/blocks/products/products-listing-1.d.ts +0 -5
  410. package/dist/blocks/products/products-listing-1.js +0 -4
  411. package/dist/blocks/products/products-listing-1.schema.d.ts +0 -36
  412. package/dist/blocks/products/products-listing-1.schema.js +0 -264
  413. package/dist/blocks/stats/stats-1.d.ts +0 -6
  414. package/dist/blocks/stats/stats-1.js +0 -6
  415. package/dist/blocks/stats/stats-1.schema.d.ts +0 -25
  416. package/dist/blocks/stats/stats-1.schema.js +0 -213
  417. package/dist/blocks/stats/stats-2.d.ts +0 -6
  418. package/dist/blocks/stats/stats-2.js +0 -6
  419. package/dist/blocks/stats/stats-2.schema.d.ts +0 -5
  420. package/dist/blocks/stats/stats-2.schema.js +0 -104
  421. package/dist/blocks/stats/variants/default.d.ts +0 -22
  422. package/dist/blocks/stats/variants/default.js +0 -185
  423. package/dist/blocks/stats/variants/hero.d.ts +0 -3
  424. package/dist/blocks/stats/variants/hero.js +0 -151
  425. package/dist/blocks/stats/variants/index.d.ts +0 -4
  426. package/dist/blocks/team/team-1.d.ts +0 -6
  427. package/dist/blocks/team/team-1.js +0 -6
  428. package/dist/blocks/team/team-1.schema.d.ts +0 -65
  429. package/dist/blocks/team/team-1.schema.js +0 -476
  430. package/dist/blocks/team/team-2.d.ts +0 -6
  431. package/dist/blocks/team/team-2.js +0 -6
  432. package/dist/blocks/team/team-2.schema.d.ts +0 -52
  433. package/dist/blocks/team/team-2.schema.js +0 -2732
  434. package/dist/blocks/team/team-3.d.ts +0 -5
  435. package/dist/blocks/team/team-3.js +0 -30
  436. package/dist/blocks/team/team-3.schema.d.ts +0 -32
  437. package/dist/blocks/team/team-3.schema.js +0 -679
  438. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.d.ts +0 -6
  439. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.js +0 -4
  440. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.schema.d.ts +0 -14
  441. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.schema.js +0 -154
  442. package/dist/blocks/testimonial/testimonial-1.d.ts +0 -5
  443. package/dist/blocks/testimonial/testimonial-1.js +0 -10
  444. package/dist/blocks/testimonial/testimonial-1.schema.d.ts +0 -16
  445. package/dist/blocks/testimonial/testimonial-1.schema.js +0 -314
  446. package/dist/blocks/testimonial/testimonial-2.d.ts +0 -5
  447. package/dist/blocks/testimonial/testimonial-2.js +0 -42
  448. package/dist/blocks/testimonial/testimonial-2.schema.d.ts +0 -54
  449. package/dist/blocks/testimonial/testimonial-2.schema.js +0 -771
  450. package/dist/blocks/testimonial/testimonial-3.d.ts +0 -5
  451. package/dist/blocks/testimonial/testimonial-3.js +0 -38
  452. package/dist/blocks/testimonial/testimonial-3.schema.d.ts +0 -56
  453. package/dist/blocks/testimonial/testimonial-3.schema.js +0 -260
  454. package/dist/blocks/testimonial/testimonial-4.d.ts +0 -5
  455. package/dist/blocks/testimonial/testimonial-4.js +0 -51
  456. package/dist/blocks/testimonial/testimonial-4.schema.d.ts +0 -145
  457. package/dist/blocks/testimonial/testimonial-4.schema.js +0 -3214
  458. package/dist/blocks/testimonial/testimonial-5.d.ts +0 -5
  459. package/dist/blocks/testimonial/testimonial-5.js +0 -31
  460. package/dist/blocks/testimonial/testimonial-5.schema.d.ts +0 -33
  461. package/dist/blocks/testimonial/testimonial-5.schema.js +0 -401
  462. package/dist/blocks/testimonial/testimonial-6.d.ts +0 -5
  463. package/dist/blocks/testimonial/testimonial-6.js +0 -39
  464. package/dist/blocks/testimonial/testimonial-6.schema.d.ts +0 -60
  465. package/dist/blocks/testimonial/testimonial-6.schema.js +0 -695
  466. package/dist/index.d.ts +0 -6
  467. package/dist/schemas/blocks.d.ts +0 -3
  468. package/dist/schemas/categories.d.ts +0 -3
  469. package/dist/schemas/categories.js +0 -129
  470. package/dist/schemas/index.d.ts +0 -3
  471. /package/{dist/schemas/index.js → src/schemas/index.ts} +0 -0
@@ -1,2732 +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 TEAM_MEMBERS = [
11
- {
12
- card: null,
13
- image: {
14
- id: "xlooCAaCdgpc",
15
- filename: "image.png",
16
- kind: "image",
17
- location: "https://space.levo.in.net/W6OEVMW8/image-2EYb546DyewZ.png",
18
- srcset: {
19
- "1080w": "https://space.levo.in.net/W6OEVMW8/image-2EYb546DyewZ-1080w.webp",
20
- "1200w": "https://space.levo.in.net/W6OEVMW8/image-2EYb546DyewZ-1200w.webp",
21
- "1920w": "https://space.levo.in.net/W6OEVMW8/image-2EYb546DyewZ-1920w.webp",
22
- "320w": "https://space.levo.in.net/W6OEVMW8/image-2EYb546DyewZ-320w.webp",
23
- "640w": "https://space.levo.in.net/W6OEVMW8/image-2EYb546DyewZ-640w.webp",
24
- "750w": "https://space.levo.in.net/W6OEVMW8/image-2EYb546DyewZ-750w.webp",
25
- "828w": "https://space.levo.in.net/W6OEVMW8/image-2EYb546DyewZ-828w.webp",
26
- path: "https://space.levo.in.net/W6OEVMW8/image-2EYb546DyewZ-750w.webp 750w, https://space.levo.in.net/W6OEVMW8/image-2EYb546DyewZ-640w.webp 640w, https://space.levo.in.net/W6OEVMW8/image-2EYb546DyewZ-1080w.webp 1080w, https://space.levo.in.net/W6OEVMW8/image-2EYb546DyewZ-1200w.webp 1200w, https://space.levo.in.net/W6OEVMW8/image-2EYb546DyewZ-828w.webp 828w, https://space.levo.in.net/W6OEVMW8/image-2EYb546DyewZ-1920w.webp 1920w, https://space.levo.in.net/W6OEVMW8/image-2EYb546DyewZ-320w.webp 320w",
27
- },
28
- mimetype: "image/png",
29
- },
30
- info: null,
31
- name: "Jenny White",
32
- position: "Lead Developer, AutoNest",
33
- social_levoGroup: null,
34
- social: [
35
- {
36
- link: null,
37
- icon: DUMMY_ICON,
38
- },
39
- {
40
- link: null,
41
- icon: DUMMY_ICON,
42
- },
43
- {
44
- link: null,
45
- icon: DUMMY_ICON,
46
- },
47
- {
48
- link: null,
49
- icon: DUMMY_ICON,
50
- },
51
- ],
52
- },
53
- {
54
- card: null,
55
- image: {
56
- id: "c2uUarJdpXVL",
57
- filename: "image.png",
58
- kind: "image",
59
- location: "https://space.levo.in.net/W6OEVMW8/image-UpLbWyPgMStc.png",
60
- srcset: {
61
- "1080w": "https://space.levo.in.net/W6OEVMW8/image-UpLbWyPgMStc-1080w.webp",
62
- "1200w": "https://space.levo.in.net/W6OEVMW8/image-UpLbWyPgMStc-1200w.webp",
63
- "1920w": "https://space.levo.in.net/W6OEVMW8/image-UpLbWyPgMStc-1920w.webp",
64
- "320w": "https://space.levo.in.net/W6OEVMW8/image-UpLbWyPgMStc-320w.webp",
65
- "640w": "https://space.levo.in.net/W6OEVMW8/image-UpLbWyPgMStc-640w.webp",
66
- "750w": "https://space.levo.in.net/W6OEVMW8/image-UpLbWyPgMStc-750w.webp",
67
- "828w": "https://space.levo.in.net/W6OEVMW8/image-UpLbWyPgMStc-828w.webp",
68
- path: "https://space.levo.in.net/W6OEVMW8/image-UpLbWyPgMStc-320w.webp 320w, https://space.levo.in.net/W6OEVMW8/image-UpLbWyPgMStc-828w.webp 828w, https://space.levo.in.net/W6OEVMW8/image-UpLbWyPgMStc-1080w.webp 1080w, https://space.levo.in.net/W6OEVMW8/image-UpLbWyPgMStc-1920w.webp 1920w, https://space.levo.in.net/W6OEVMW8/image-UpLbWyPgMStc-640w.webp 640w, https://space.levo.in.net/W6OEVMW8/image-UpLbWyPgMStc-1200w.webp 1200w, https://space.levo.in.net/W6OEVMW8/image-UpLbWyPgMStc-750w.webp 750w",
69
- },
70
- mimetype: "image/png",
71
- },
72
- info: null,
73
- name: "Rory Gilbert",
74
- position: "Founder, AutoNest",
75
- social_levoGroup: null,
76
- social: [
77
- {
78
- link: null,
79
- icon: DUMMY_ICON,
80
- },
81
- {
82
- link: null,
83
- icon: DUMMY_ICON,
84
- },
85
- {
86
- link: null,
87
- icon: DUMMY_ICON,
88
- },
89
- {
90
- link: null,
91
- icon: DUMMY_ICON,
92
- },
93
- ],
94
- },
95
- {
96
- card: null,
97
- image: {
98
- id: "74djDExbsDoS",
99
- filename: "image.png",
100
- kind: "image",
101
- location: "https://space.levo.in.net/W6OEVMW8/image-lDicGcHO6TiH.png",
102
- srcset: {
103
- "1080w": "https://space.levo.in.net/W6OEVMW8/image-lDicGcHO6TiH-1080w.webp",
104
- "1200w": "https://space.levo.in.net/W6OEVMW8/image-lDicGcHO6TiH-1200w.webp",
105
- "1920w": "https://space.levo.in.net/W6OEVMW8/image-lDicGcHO6TiH-1920w.webp",
106
- "320w": "https://space.levo.in.net/W6OEVMW8/image-lDicGcHO6TiH-320w.webp",
107
- "640w": "https://space.levo.in.net/W6OEVMW8/image-lDicGcHO6TiH-640w.webp",
108
- "750w": "https://space.levo.in.net/W6OEVMW8/image-lDicGcHO6TiH-750w.webp",
109
- "828w": "https://space.levo.in.net/W6OEVMW8/image-lDicGcHO6TiH-828w.webp",
110
- path: "https://space.levo.in.net/W6OEVMW8/image-lDicGcHO6TiH-1080w.webp 1080w, https://space.levo.in.net/W6OEVMW8/image-lDicGcHO6TiH-640w.webp 640w, https://space.levo.in.net/W6OEVMW8/image-lDicGcHO6TiH-1920w.webp 1920w, https://space.levo.in.net/W6OEVMW8/image-lDicGcHO6TiH-828w.webp 828w, https://space.levo.in.net/W6OEVMW8/image-lDicGcHO6TiH-1200w.webp 1200w, https://space.levo.in.net/W6OEVMW8/image-lDicGcHO6TiH-750w.webp 750w, https://space.levo.in.net/W6OEVMW8/image-lDicGcHO6TiH-320w.webp 320w",
111
- },
112
- mimetype: "image/png",
113
- },
114
- info: null,
115
- name: "Seth Morrison",
116
- position: "Lead Designer, AutoNest",
117
- social_levoGroup: null,
118
- social: [
119
- {
120
- link: null,
121
- icon: DUMMY_ICON,
122
- },
123
- {
124
- link: null,
125
- icon: DUMMY_ICON,
126
- },
127
- {
128
- link: null,
129
- icon: DUMMY_ICON,
130
- },
131
- {
132
- link: null,
133
- icon: DUMMY_ICON,
134
- },
135
- ],
136
- },
137
- {
138
- card: null,
139
- image: {
140
- id: "bMZ6nDjbOAKI",
141
- filename: "image.png",
142
- kind: "image",
143
- location: "https://space.levo.in.net/W6OEVMW8/image-yCrl3M8IfJvP.png",
144
- srcset: {
145
- "1080w": "https://space.levo.in.net/W6OEVMW8/image-yCrl3M8IfJvP-1080w.webp",
146
- "1200w": "https://space.levo.in.net/W6OEVMW8/image-yCrl3M8IfJvP-1200w.webp",
147
- "1920w": "https://space.levo.in.net/W6OEVMW8/image-yCrl3M8IfJvP-1920w.webp",
148
- "320w": "https://space.levo.in.net/W6OEVMW8/image-yCrl3M8IfJvP-320w.webp",
149
- "640w": "https://space.levo.in.net/W6OEVMW8/image-yCrl3M8IfJvP-640w.webp",
150
- "750w": "https://space.levo.in.net/W6OEVMW8/image-yCrl3M8IfJvP-750w.webp",
151
- "828w": "https://space.levo.in.net/W6OEVMW8/image-yCrl3M8IfJvP-828w.webp",
152
- path: "https://space.levo.in.net/W6OEVMW8/image-yCrl3M8IfJvP-1080w.webp 1080w, https://space.levo.in.net/W6OEVMW8/image-yCrl3M8IfJvP-828w.webp 828w, https://space.levo.in.net/W6OEVMW8/image-yCrl3M8IfJvP-1920w.webp 1920w, https://space.levo.in.net/W6OEVMW8/image-yCrl3M8IfJvP-750w.webp 750w, https://space.levo.in.net/W6OEVMW8/image-yCrl3M8IfJvP-640w.webp 640w, https://space.levo.in.net/W6OEVMW8/image-yCrl3M8IfJvP-1200w.webp 1200w, https://space.levo.in.net/W6OEVMW8/image-yCrl3M8IfJvP-320w.webp 320w",
153
- },
154
- mimetype: "image/png",
155
- },
156
- info: null,
157
- name: "Alex Johnson",
158
- position: "Product Manager, AutoNest",
159
- social_levoGroup: null,
160
- social: [
161
- {
162
- link: null,
163
- icon: DUMMY_ICON,
164
- },
165
- {
166
- link: null,
167
- icon: DUMMY_ICON,
168
- },
169
- {
170
- link: null,
171
- icon: DUMMY_ICON,
172
- },
173
- {
174
- link: null,
175
- icon: DUMMY_ICON,
176
- },
177
- ],
178
- },
179
- ];
180
- const DEFAULT_CONTENT = {
181
- layout: null,
182
- container: null,
183
- header: null,
184
- "accent-title": "Meet Our Team",
185
- title: "Meet Our Leadership Driving Logistics Forward",
186
- ctas: [
187
- {
188
- button: "Explore Our Team",
189
- },
190
- {
191
- button: "Join Our Team",
192
- },
193
- ],
194
- team_levoGroup: null,
195
- team: TEAM_MEMBERS,
196
- };
197
- const DEFAULT_CONTENT_WITH_CTAS = {
198
- layout: null,
199
- container: null,
200
- header: null,
201
- "accent-title": "Meet Our Team",
202
- title: "Meet Our Leadership Driving Logistics Forward",
203
- ctas: [
204
- {
205
- button: "View All",
206
- },
207
- ],
208
- team_levoGroup: null,
209
- team: [
210
- {
211
- card: null,
212
- image: {
213
- id: "CISGrrPalUCt",
214
- filename: "image.png",
215
- kind: "image",
216
- location: "https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11.png",
217
- srcset: {
218
- "1080w": "https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-1080w.webp",
219
- "1200w": "https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-1200w.webp",
220
- "1920w": "https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-1920w.webp",
221
- "320w": "https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-320w.webp",
222
- "640w": "https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-640w.webp",
223
- "750w": "https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-750w.webp",
224
- "828w": "https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-828w.webp",
225
- path: "https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-320w.webp 320w, https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-640w.webp 640w, https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-750w.webp 750w, https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-828w.webp 828w, https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-1080w.webp 1080w, https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-1200w.webp 1200w, https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-1920w.webp 1920w",
226
- },
227
- mimetype: "image/png",
228
- },
229
- info: null,
230
- name: "Jenny White",
231
- position: "Lead Developer, AutoNest",
232
- social_levoGroup: null,
233
- social: [
234
- {
235
- icon: {
236
- id: "youtube-icon",
237
- location: "https://static.levocdn.com/WLZ1TXTD/youtube-DNPTOs0ucdrd3.png",
238
- kind: "image",
239
- srcset: {},
240
- },
241
- },
242
- {
243
- icon: {
244
- id: "linkedin-icon",
245
- location: "https://static.levocdn.com/WLZ1TXTD/linkedin-w9fE6Jvx7cWcO.png",
246
- kind: "image",
247
- srcset: {},
248
- },
249
- },
250
- {
251
- icon: {
252
- id: "facebook-icon",
253
- location: "https://static.levocdn.com/WLZ1TXTD/facebook-SvIcPsF6n3T3J.png",
254
- kind: "image",
255
- srcset: {},
256
- },
257
- },
258
- {
259
- icon: {
260
- id: "instagram-icon",
261
- location: "https://static.levocdn.com/WLZ1TXTD/instagram-4JOZBlpMuPEPm.png",
262
- kind: "image",
263
- srcset: {},
264
- },
265
- },
266
- ],
267
- },
268
- {
269
- card: null,
270
- image: {
271
- id: "CISGrrPalUCt",
272
- filename: "image.png",
273
- kind: "image",
274
- location: "https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11.png",
275
- srcset: {
276
- "1080w": "https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-1080w.webp",
277
- "1200w": "https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-1200w.webp",
278
- "1920w": "https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-1920w.webp",
279
- "320w": "https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-320w.webp",
280
- "640w": "https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-640w.webp",
281
- "750w": "https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-750w.webp",
282
- "828w": "https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-828w.webp",
283
- path: "https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-320w.webp 320w, https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-640w.webp 640w, https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-750w.webp 750w, https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-828w.webp 828w, https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-1080w.webp 1080w, https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-1200w.webp 1200w, https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-1920w.webp 1920w",
284
- },
285
- mimetype: "image/png",
286
- },
287
- info: null,
288
- name: "Jenny White",
289
- position: "Lead Developer, AutoNest",
290
- social_levoGroup: null,
291
- social: [
292
- {
293
- icon: {
294
- id: "youtube-icon",
295
- location: "https://static.levocdn.com/WLZ1TXTD/youtube-DNPTOs0ucdrd3.png",
296
- kind: "image",
297
- srcset: {},
298
- },
299
- },
300
- {
301
- icon: {
302
- id: "linkedin-icon",
303
- location: "https://static.levocdn.com/WLZ1TXTD/linkedin-w9fE6Jvx7cWcO.png",
304
- kind: "image",
305
- srcset: {},
306
- },
307
- },
308
- {
309
- icon: {
310
- id: "facebook-icon",
311
- location: "https://static.levocdn.com/WLZ1TXTD/facebook-SvIcPsF6n3T3J.png",
312
- kind: "image",
313
- srcset: {},
314
- },
315
- },
316
- {
317
- icon: {
318
- id: "instagram-icon",
319
- location: "https://static.levocdn.com/WLZ1TXTD/instagram-4JOZBlpMuPEPm.png",
320
- kind: "image",
321
- srcset: {},
322
- },
323
- },
324
- ],
325
- },
326
- {
327
- card: null,
328
- image: {
329
- id: "CISGrrPalUCt",
330
- filename: "image.png",
331
- kind: "image",
332
- location: "https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11.png",
333
- srcset: {
334
- "1080w": "https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-1080w.webp",
335
- "1200w": "https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-1200w.webp",
336
- "1920w": "https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-1920w.webp",
337
- "320w": "https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-320w.webp",
338
- "640w": "https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-640w.webp",
339
- "750w": "https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-750w.webp",
340
- "828w": "https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-828w.webp",
341
- path: "https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-320w.webp 320w, https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-640w.webp 640w, https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-750w.webp 750w, https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-828w.webp 828w, https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-1080w.webp 1080w, https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-1200w.webp 1200w, https://space.levo.in.net/W6OEVMW8/image-c2u8aN9OgP11-1920w.webp 1920w",
342
- },
343
- mimetype: "image/png",
344
- },
345
- info: null,
346
- name: "Jenny White",
347
- position: "Lead Developer, AutoNest",
348
- social_levoGroup: null,
349
- social: [
350
- {
351
- icon: {
352
- id: "youtube-icon",
353
- location: "https://static.levocdn.com/WLZ1TXTD/youtube-DNPTOs0ucdrd3.png",
354
- kind: "image",
355
- srcset: {},
356
- },
357
- },
358
- {
359
- icon: {
360
- id: "linkedin-icon",
361
- location: "https://static.levocdn.com/WLZ1TXTD/linkedin-w9fE6Jvx7cWcO.png",
362
- kind: "image",
363
- srcset: {},
364
- },
365
- },
366
- {
367
- icon: {
368
- id: "facebook-icon",
369
- location: "https://static.levocdn.com/WLZ1TXTD/facebook-SvIcPsF6n3T3J.png",
370
- kind: "image",
371
- srcset: {},
372
- },
373
- },
374
- {
375
- icon: {
376
- id: "instagram-icon",
377
- location: "https://static.levocdn.com/WLZ1TXTD/instagram-4JOZBlpMuPEPm.png",
378
- kind: "image",
379
- srcset: {},
380
- },
381
- },
382
- ],
383
- },
384
- ],
385
- };
386
- export const Team2 = {
387
- category_id: "team",
388
- title: "Team 2",
389
- key: "team-2",
390
- version: "v1",
391
- prompt_description: "Centered team section with accent title, main heading and grid of team member cards featuring circular profile photos, names, positions and social media icons",
392
- content_schema: [
393
- {
394
- key: "layout",
395
- label: "Layout",
396
- field_interface: "LayoutWidget",
397
- },
398
- {
399
- key: "container",
400
- label: "Container",
401
- field_interface: "ContainerWidget",
402
- },
403
- {
404
- key: "header",
405
- label: "Header",
406
- field_interface: "BoxWidget",
407
- },
408
- {
409
- key: "accent-title",
410
- label: "Accent Title",
411
- field_interface: "HeadingWidget",
412
- hint: {
413
- prompt_description: "Small uppercase label above the main title (e.g., 'TEAM'). Keep it concise and impactful.",
414
- min_characters: 3,
415
- max_characters: 15,
416
- },
417
- },
418
- {
419
- key: "title",
420
- label: "Title",
421
- field_interface: "HeadingWidget",
422
- hint: {
423
- prompt_description: "Main heading introducing the team section. Should be engaging and professional.",
424
- min_characters: 20,
425
- max_characters: 60,
426
- },
427
- },
428
- {
429
- key: "ctas",
430
- label: "CTA Buttons",
431
- kind: "group",
432
- field_interface: "BoxWidget",
433
- fields: [
434
- {
435
- key: "button",
436
- label: "Button",
437
- field_interface: "ButtonWidget",
438
- hint: {
439
- prompt_description: "Call-to-action button text that clearly communicates what happens when clicked. Should be compelling and action-oriented.",
440
- min_characters: 8,
441
- max_characters: 30,
442
- },
443
- },
444
- ],
445
- hint: {
446
- prompt_description: "Group of action buttons for the team section, typically including primary and secondary actions.",
447
- min_items: 1,
448
- max_items: 3,
449
- },
450
- },
451
- {
452
- key: "team",
453
- label: "Team Members",
454
- field_interface: "ContainerWidget",
455
- kind: "group",
456
- fields: [
457
- {
458
- key: "card",
459
- label: "Card Container",
460
- field_interface: "BoxWidget",
461
- },
462
- {
463
- key: "image",
464
- label: "Member Photo",
465
- field_interface: "MediaWidget",
466
- hint: {
467
- prompt_description: "Professional headshot of the team member, displayed in a circular format",
468
- orientation: "portrait",
469
- size: "medium",
470
- usecase: "avatar",
471
- },
472
- },
473
- {
474
- key: "info",
475
- label: "Member Info",
476
- field_interface: "BoxWidget",
477
- },
478
- {
479
- key: "name",
480
- label: "Member Name",
481
- field_interface: "HeadingWidget",
482
- hint: {
483
- prompt_description: "Full name of the team member",
484
- min_characters: 8,
485
- max_characters: 30,
486
- },
487
- },
488
- {
489
- key: "position",
490
- label: "Position",
491
- field_interface: "TypographyWidget",
492
- hint: {
493
- prompt_description: "Job title or role description for the team member",
494
- min_characters: 10,
495
- max_characters: 40,
496
- },
497
- },
498
- {
499
- key: "social",
500
- label: "Social Links",
501
- field_interface: "BoxWidget",
502
- kind: "group",
503
- fields: [
504
- {
505
- key: "link",
506
- label: "Link Wrapper",
507
- field_interface: "BoxWidget",
508
- hint: {
509
- prompt_description: "Container wrapper for social media link styling",
510
- },
511
- },
512
- {
513
- key: "icon",
514
- label: "Social Icon",
515
- field_interface: "IconWidget",
516
- hint: {
517
- prompt_description: "Social media platform icon (Facebook, Twitter, LinkedIn, YouTube, etc.)",
518
- orientation: "square",
519
- size: "icon",
520
- usecase: "icon",
521
- },
522
- },
523
- ],
524
- hint: {
525
- prompt_description: "Collection of social media icons for the team member",
526
- min_items: 3,
527
- max_items: 4,
528
- },
529
- },
530
- ],
531
- hint: {
532
- prompt_description: "Grid of team member cards showcasing leadership team",
533
- min_items: 4,
534
- max_items: 6,
535
- },
536
- },
537
- ],
538
- layouts: [
539
- {
540
- key: "default",
541
- title: "Default",
542
- config: {
543
- cta: {
544
- button_icons: {
545
- right: {
546
- enabled: true,
547
- },
548
- },
549
- },
550
- },
551
- content: DEFAULT_CONTENT,
552
- styles: {
553
- layout: {
554
- "background-color": "background-1",
555
- "padding-top": "4xl",
556
- "padding-bottom": "4xl",
557
- mobile: {
558
- "padding-top": "2xl",
559
- "padding-bottom": "2xl",
560
- },
561
- },
562
- ctas_levoGroup: {
563
- display: "none",
564
- },
565
- container: {
566
- "max-width": "1280px",
567
- "margin-left": "auto",
568
- "margin-right": "auto",
569
- "padding-left": "xl",
570
- "padding-right": "xl",
571
- filter: "none",
572
- },
573
- header: {
574
- "text-align": "center",
575
- "margin-bottom": "3xl",
576
- mobile: {
577
- "margin-bottom": "2xl",
578
- },
579
- filter: "none",
580
- },
581
- "accent-title": {
582
- "font-size": "sm",
583
- "font-weight": "600",
584
- color: "text-2",
585
- "text-transform": "uppercase",
586
- "letter-spacing": "0.1em",
587
- "margin-bottom": "xs",
588
- },
589
- title: {
590
- "font-size": "4xl",
591
- "font-weight": "700",
592
- color: "text-1",
593
- "line-height": "1.2",
594
- tablet: {
595
- "font-size": "2xl",
596
- },
597
- mobile: {
598
- "font-size": "xl",
599
- },
600
- filter: "none",
601
- "max-width": "600px",
602
- "text-align": "center",
603
- "margin-left": "auto",
604
- "margin-right": "auto",
605
- "margin-bottom": "lg",
606
- },
607
- team_levoGroup: {
608
- display: "grid",
609
- "grid-template-columns": "repeat(4, minmax(0, 1fr))",
610
- "column-gap": "base",
611
- "row-gap": "2xl",
612
- tablet: {
613
- "grid-template-columns": "repeat(2, minmax(0, 1fr))",
614
- "column-gap": "lg",
615
- "row-gap": "xl",
616
- },
617
- mobile: {
618
- "grid-template-columns": "repeat(1, minmax(0, 1fr))",
619
- "row-gap": "lg",
620
- },
621
- filter: "none",
622
- },
623
- team: [
624
- {
625
- card: {
626
- "background-color": "background-2",
627
- "border-radius": "lg",
628
- padding: "lg",
629
- "text-align": "center",
630
- "box-shadow": "0 4px 6px -1px rgba(0, 0, 0, 0.1)",
631
- filter: "none",
632
- display: "block",
633
- "flex-direction": "column",
634
- "justify-content": "center",
635
- "align-items": "center",
636
- "padding-top": "5xl",
637
- "padding-bottom": "5xl",
638
- },
639
- image: {
640
- width: "120px",
641
- height: "120px",
642
- "border-radius": "3xl",
643
- "object-fit": "cover",
644
- "margin-left": "auto",
645
- "margin-right": "auto",
646
- "margin-bottom": "base",
647
- filter: "none",
648
- },
649
- info: {
650
- display: "flex",
651
- "flex-direction": "column",
652
- "align-items": "center",
653
- "row-gap": "none",
654
- filter: "none",
655
- },
656
- name: {
657
- "font-size": "lg",
658
- "font-weight": "600",
659
- color: "text-1",
660
- "margin-bottom": "2xs",
661
- },
662
- position: {
663
- "font-size": "sm",
664
- color: "text-2",
665
- "margin-bottom": "sm",
666
- },
667
- social_levoGroup: {
668
- display: "flex",
669
- "justify-content": "center",
670
- "column-gap": "2xs",
671
- filter: "none",
672
- },
673
- social: [
674
- {
675
- icon: {
676
- width: "32px",
677
- height: "32px",
678
- "object-fit": "contain",
679
- filter: "none",
680
- },
681
- },
682
- {
683
- icon: {
684
- width: "32px",
685
- height: "32px",
686
- "object-fit": "contain",
687
- filter: "none",
688
- },
689
- },
690
- {
691
- icon: {
692
- width: "32px",
693
- height: "32px",
694
- "object-fit": "contain",
695
- filter: "none",
696
- },
697
- },
698
- {
699
- icon: {
700
- width: "32px",
701
- height: "32px",
702
- "object-fit": "contain",
703
- filter: "none",
704
- },
705
- },
706
- ],
707
- },
708
- {
709
- card: {
710
- "background-color": "background-2",
711
- "border-radius": "lg",
712
- padding: "lg",
713
- "text-align": "center",
714
- "box-shadow": "0 4px 6px -1px rgba(0, 0, 0, 0.1)",
715
- filter: "none",
716
- "padding-top": "5xl",
717
- "padding-bottom": "5xl",
718
- },
719
- image: {
720
- width: "120px",
721
- height: "120px",
722
- "border-radius": "3xl",
723
- "object-fit": "cover",
724
- "margin-left": "auto",
725
- "margin-right": "auto",
726
- "margin-bottom": "base",
727
- filter: "none",
728
- },
729
- info: {
730
- display: "flex",
731
- "flex-direction": "column",
732
- "align-items": "center",
733
- "row-gap": "none",
734
- filter: "none",
735
- },
736
- name: {
737
- "font-size": "lg",
738
- "font-weight": "600",
739
- color: "text-1",
740
- "margin-bottom": "2xs",
741
- },
742
- position: {
743
- "font-size": "sm",
744
- color: "text-2",
745
- "margin-bottom": "sm",
746
- },
747
- social_levoGroup: {
748
- display: "flex",
749
- "justify-content": "center",
750
- "column-gap": "xs",
751
- },
752
- social: [
753
- {
754
- icon: {
755
- width: "32px",
756
- height: "32px",
757
- "object-fit": "contain",
758
- filter: "none",
759
- },
760
- },
761
- {
762
- icon: {
763
- width: "32px",
764
- height: "32px",
765
- "object-fit": "contain",
766
- filter: "none",
767
- },
768
- },
769
- {
770
- icon: {
771
- width: "32px",
772
- height: "32px",
773
- "object-fit": "contain",
774
- filter: "none",
775
- },
776
- },
777
- {
778
- icon: {
779
- width: "32px",
780
- height: "32px",
781
- "object-fit": "contain",
782
- filter: "none",
783
- },
784
- },
785
- ],
786
- },
787
- {
788
- card: {
789
- "background-color": "background-2",
790
- "border-radius": "lg",
791
- padding: "lg",
792
- "text-align": "center",
793
- "box-shadow": "0 4px 6px -1px rgba(0, 0, 0, 0.1)",
794
- filter: "none",
795
- "padding-top": "5xl",
796
- "padding-bottom": "5xl",
797
- },
798
- image: {
799
- width: "120px",
800
- height: "120px",
801
- "border-radius": "3xl",
802
- "object-fit": "cover",
803
- "margin-left": "auto",
804
- "margin-right": "auto",
805
- "margin-bottom": "base",
806
- filter: "none",
807
- },
808
- info: {
809
- display: "flex",
810
- "flex-direction": "column",
811
- "align-items": "center",
812
- "row-gap": "none",
813
- filter: "none",
814
- },
815
- name: {
816
- "font-size": "lg",
817
- "font-weight": "600",
818
- color: "text-1",
819
- "margin-bottom": "2xs",
820
- },
821
- position: {
822
- "font-size": "sm",
823
- color: "text-2",
824
- "margin-bottom": "sm",
825
- },
826
- social_levoGroup: {
827
- display: "flex",
828
- "justify-content": "center",
829
- "column-gap": "xs",
830
- },
831
- social: [
832
- {
833
- icon: {
834
- width: "32px",
835
- height: "32px",
836
- "object-fit": "contain",
837
- filter: "none",
838
- },
839
- },
840
- {
841
- icon: {
842
- width: "32px",
843
- height: "32px",
844
- "object-fit": "contain",
845
- filter: "none",
846
- },
847
- },
848
- {
849
- icon: {
850
- width: "32px",
851
- height: "32px",
852
- "object-fit": "contain",
853
- filter: "none",
854
- },
855
- },
856
- {
857
- icon: {
858
- width: "32px",
859
- height: "32px",
860
- "object-fit": "contain",
861
- filter: "none",
862
- },
863
- },
864
- ],
865
- },
866
- {
867
- card: {
868
- "background-color": "background-2",
869
- "border-radius": "lg",
870
- padding: "lg",
871
- "text-align": "center",
872
- "box-shadow": "0 4px 6px -1px rgba(0, 0, 0, 0.1)",
873
- filter: "none",
874
- "padding-top": "5xl",
875
- "padding-bottom": "5xl",
876
- },
877
- image: {
878
- width: "120px",
879
- height: "120px",
880
- "border-radius": "3xl",
881
- "object-fit": "cover",
882
- "margin-left": "auto",
883
- "margin-right": "auto",
884
- "margin-bottom": "base",
885
- filter: "none",
886
- },
887
- info: {
888
- display: "flex",
889
- "flex-direction": "column",
890
- "align-items": "center",
891
- "row-gap": "none",
892
- filter: "none",
893
- },
894
- name: {
895
- "font-size": "lg",
896
- "font-weight": "600",
897
- color: "text-1",
898
- "margin-bottom": "2xs",
899
- },
900
- position: {
901
- "font-size": "sm",
902
- color: "text-2",
903
- "margin-bottom": "sm",
904
- },
905
- social_levoGroup: {
906
- display: "flex",
907
- "justify-content": "center",
908
- "column-gap": "xs",
909
- },
910
- social: [
911
- {
912
- icon: {
913
- width: "32px",
914
- height: "32px",
915
- "object-fit": "contain",
916
- filter: "none",
917
- },
918
- },
919
- {
920
- icon: {
921
- width: "32px",
922
- height: "32px",
923
- "object-fit": "contain",
924
- filter: "none",
925
- },
926
- },
927
- {
928
- icon: {
929
- width: "32px",
930
- height: "32px",
931
- "object-fit": "contain",
932
- filter: "none",
933
- },
934
- },
935
- {
936
- icon: {
937
- width: "32px",
938
- height: "32px",
939
- "object-fit": "contain",
940
- filter: "none",
941
- },
942
- },
943
- ],
944
- },
945
- ],
946
- },
947
- },
948
- {
949
- key: "variant-2",
950
- title: "Variant 2",
951
- content: DEFAULT_CONTENT,
952
- config: {
953
- cta: {
954
- button_icons: {
955
- right: {
956
- enabled: true,
957
- },
958
- },
959
- },
960
- },
961
- styles: {
962
- layout: {
963
- "background-color": "background-1",
964
- "padding-top": "4xl",
965
- "padding-bottom": "4xl",
966
- mobile: {
967
- "padding-top": "2xl",
968
- "padding-bottom": "2xl",
969
- },
970
- },
971
- container: {
972
- "max-width": "1280px",
973
- "margin-left": "auto",
974
- "margin-right": "auto",
975
- "padding-left": "xl",
976
- "padding-right": "xl",
977
- filter: "none",
978
- mobile: {
979
- filter: "none",
980
- },
981
- },
982
- header: {
983
- "text-align": "left",
984
- "margin-bottom": "3xl",
985
- mobile: {
986
- "margin-bottom": "2xl",
987
- "text-align": "center",
988
- filter: "none",
989
- "flex-direction": "column",
990
- },
991
- filter: "none",
992
- display: "flex",
993
- "justify-content": "space-between",
994
- "align-items": "center",
995
- tablet: {
996
- filter: "none",
997
- "flex-direction": "column",
998
- },
999
- },
1000
- "accent-title": {
1001
- "font-size": "3xl",
1002
- "font-weight": 600,
1003
- color: "text-2",
1004
- "text-transform": "uppercase",
1005
- "letter-spacing": "0.1em",
1006
- "margin-bottom": "xs",
1007
- filter: "none",
1008
- tablet: {
1009
- filter: "none",
1010
- },
1011
- mobile: {
1012
- filter: "none",
1013
- },
1014
- },
1015
- title: {
1016
- "font-size": "lg",
1017
- "font-weight": 400,
1018
- color: "background-3",
1019
- "line-height": "1.2",
1020
- tablet: {
1021
- "font-size": "lg",
1022
- filter: "none",
1023
- "text-align": "center",
1024
- },
1025
- mobile: {
1026
- "font-size": "sm",
1027
- filter: "none",
1028
- },
1029
- filter: "none",
1030
- "max-width": "450px",
1031
- "margin-bottom": "lg",
1032
- },
1033
- ctas_levoGroup: {
1034
- display: "flex",
1035
- "column-gap": "xs",
1036
- "align-items": "center",
1037
- "flex-wrap": "wrap",
1038
- "margin-bottom": "xl",
1039
- mobile: {
1040
- "flex-direction": "column",
1041
- "row-gap": "xs",
1042
- "column-gap": "0",
1043
- },
1044
- },
1045
- ctas: [
1046
- {
1047
- button: {
1048
- "background-color": "background-2",
1049
- color: "white",
1050
- "padding-top": "2xs",
1051
- "padding-bottom": "2xs",
1052
- "padding-left": "base",
1053
- "padding-right": "base",
1054
- "border-radius": "3xl",
1055
- "border-width": "1px",
1056
- "border-color": "border",
1057
- "font-size": "base",
1058
- "font-weight": "500",
1059
- display: "flex",
1060
- width: "fit-content",
1061
- filter: "none",
1062
- "column-gap": "xs",
1063
- },
1064
- },
1065
- {
1066
- button: {
1067
- "background-color": "transparent",
1068
- color: "text-1",
1069
- "padding-top": "2xs",
1070
- "padding-bottom": "2xs",
1071
- "padding-left": "base",
1072
- "padding-right": "base",
1073
- "border-radius": "3xl",
1074
- "border-width": "1px",
1075
- "border-color": "border",
1076
- "font-size": "base",
1077
- "font-weight": "500",
1078
- display: "flex",
1079
- width: "fit-content",
1080
- filter: "none",
1081
- "column-gap": "xs",
1082
- },
1083
- },
1084
- ],
1085
- team_levoGroup: {
1086
- display: "grid",
1087
- "grid-template-columns": "repeat(3, minmax(0, 1fr))",
1088
- "column-gap": "xl",
1089
- "row-gap": "3xl",
1090
- tablet: {
1091
- "grid-template-columns": "repeat(2, minmax(0, 1fr))",
1092
- "column-gap": "lg",
1093
- "row-gap": "2xl",
1094
- },
1095
- mobile: {
1096
- "grid-template-columns": "repeat(1, minmax(0, 1fr))",
1097
- "row-gap": "xl",
1098
- },
1099
- filter: "none",
1100
- },
1101
- team: [
1102
- {
1103
- card: {
1104
- "background-color": "white",
1105
- "border-radius": "lg",
1106
- padding: "none",
1107
- "text-align": "center",
1108
- "box-shadow": "0 4px 6px -1px rgba(0, 0, 0, 0.1)",
1109
- "border-width": "1px",
1110
- "border-color": "border",
1111
- filter: "drop-shadow(0 2px 5px rgba(0, 0, 0, 0.25))",
1112
- display: "flex",
1113
- "flex-direction": "column",
1114
- "align-items": "center",
1115
- overflow: "hidden",
1116
- "border-style": "solid",
1117
- },
1118
- image: {
1119
- width: "100%",
1120
- height: "320px",
1121
- "border-radius": "none",
1122
- "object-fit": "cover",
1123
- "margin-bottom": "none",
1124
- "border-bottom-width": "1px",
1125
- "border-bottom-color": "r",
1126
- filter: "none",
1127
- mobile: {
1128
- filter: "none",
1129
- },
1130
- tablet: {
1131
- filter: "none",
1132
- },
1133
- },
1134
- info: {
1135
- display: "flex",
1136
- "flex-direction": "column",
1137
- "align-items": "center",
1138
- "row-gap": "none",
1139
- filter: "none",
1140
- padding: "lg",
1141
- height: "auto",
1142
- "justify-content": "center",
1143
- mobile: {
1144
- filter: "none",
1145
- },
1146
- tablet: {
1147
- filter: "none",
1148
- },
1149
- },
1150
- name: {
1151
- "font-size": "xl",
1152
- "font-weight": "700",
1153
- color: "text-1",
1154
- "margin-bottom": "2xs",
1155
- filter: "none",
1156
- },
1157
- position: {
1158
- "font-size": "base",
1159
- color: "text-2",
1160
- "margin-bottom": "none",
1161
- filter: "none",
1162
- "font-weight": 400,
1163
- },
1164
- social_levoGroup: {
1165
- display: "none",
1166
- filter: "none",
1167
- },
1168
- social: [],
1169
- },
1170
- {
1171
- card: {
1172
- "background-color": "white",
1173
- "border-radius": "lg",
1174
- padding: "none",
1175
- "text-align": "center",
1176
- "box-shadow": "0 4px 6px -1px rgba(0, 0, 0, 0.1)",
1177
- "border-width": "1px",
1178
- "border-color": "border",
1179
- filter: "drop-shadow(0 2px 5px rgba(0, 0, 0, 0.25))",
1180
- display: "flex",
1181
- "flex-direction": "column",
1182
- "align-items": "center",
1183
- overflow: "hidden",
1184
- "border-style": "solid",
1185
- },
1186
- image: {
1187
- width: "100%",
1188
- height: "320px",
1189
- "border-radius": "none",
1190
- "object-fit": "cover",
1191
- "margin-bottom": "none",
1192
- "border-bottom-width": "1px",
1193
- "border-bottom-color": "border",
1194
- filter: "none",
1195
- },
1196
- info: {
1197
- display: "flex",
1198
- "flex-direction": "column",
1199
- "align-items": "center",
1200
- "row-gap": "none",
1201
- filter: "none",
1202
- padding: "lg",
1203
- mobile: {
1204
- filter: "none",
1205
- },
1206
- tablet: {
1207
- filter: "none",
1208
- },
1209
- },
1210
- name: {
1211
- "font-size": "xl",
1212
- "font-weight": "700",
1213
- color: "text-1",
1214
- "margin-bottom": "2xs",
1215
- filter: "none",
1216
- },
1217
- position: {
1218
- "font-size": "base",
1219
- color: "text-2",
1220
- "margin-bottom": "none",
1221
- filter: "none",
1222
- "font-weight": 400,
1223
- },
1224
- social_levoGroup: {
1225
- display: "none",
1226
- filter: "none",
1227
- },
1228
- social: [
1229
- {
1230
- link: {
1231
- width: "40px",
1232
- height: "40px",
1233
- display: "flex",
1234
- "align-items": "center",
1235
- "justify-content": "center",
1236
- "border-radius": "lg",
1237
- "background-color": "background-2",
1238
- "border-width": "1px",
1239
- "border-color": "border",
1240
- filter: "none",
1241
- },
1242
- icon: {
1243
- width: "20px",
1244
- height: "20px",
1245
- "object-fit": "contain",
1246
- filter: "none",
1247
- },
1248
- },
1249
- {
1250
- link: {
1251
- width: "40px",
1252
- height: "40px",
1253
- display: "flex",
1254
- "align-items": "center",
1255
- "justify-content": "center",
1256
- "border-radius": "lg",
1257
- "background-color": "background-2",
1258
- "border-width": "1px",
1259
- "border-color": "border",
1260
- filter: "none",
1261
- },
1262
- icon: {
1263
- width: "20px",
1264
- height: "20px",
1265
- "object-fit": "contain",
1266
- filter: "none",
1267
- },
1268
- },
1269
- {
1270
- link: {
1271
- width: "40px",
1272
- height: "40px",
1273
- display: "flex",
1274
- "align-items": "center",
1275
- "justify-content": "center",
1276
- "border-radius": "lg",
1277
- "background-color": "background-2",
1278
- "border-width": "1px",
1279
- "border-color": "border",
1280
- filter: "none",
1281
- },
1282
- icon: {
1283
- width: "20px",
1284
- height: "20px",
1285
- "object-fit": "contain",
1286
- filter: "none",
1287
- },
1288
- },
1289
- {
1290
- link: {
1291
- width: "40px",
1292
- height: "40px",
1293
- display: "flex",
1294
- "align-items": "center",
1295
- "justify-content": "center",
1296
- "border-radius": "lg",
1297
- "background-color": "background-2",
1298
- "border-width": "1px",
1299
- "border-color": "border",
1300
- filter: "none",
1301
- },
1302
- icon: {
1303
- width: "20px",
1304
- height: "20px",
1305
- "object-fit": "contain",
1306
- filter: "none",
1307
- },
1308
- },
1309
- ],
1310
- },
1311
- {
1312
- card: {
1313
- "background-color": "white",
1314
- "border-radius": "lg",
1315
- padding: "none",
1316
- "text-align": "center",
1317
- "box-shadow": "0 4px 6px -1px rgba(0, 0, 0, 0.1)",
1318
- "border-width": "1px",
1319
- "border-color": "border",
1320
- filter: "drop-shadow(0 2px 5px rgba(0, 0, 0, 0.25))",
1321
- display: "flex",
1322
- "flex-direction": "column",
1323
- "align-items": "center",
1324
- overflow: "hidden",
1325
- "padding-bottom": "none",
1326
- "border-style": "solid",
1327
- },
1328
- image: {
1329
- width: "100%",
1330
- height: "320px",
1331
- "border-radius": "none",
1332
- "object-fit": "cover",
1333
- "margin-bottom": "none",
1334
- "border-bottom-width": "1px",
1335
- "border-bottom-color": "border",
1336
- filter: "none",
1337
- },
1338
- info: {
1339
- display: "flex",
1340
- "flex-direction": "column",
1341
- "align-items": "center",
1342
- "row-gap": "none",
1343
- filter: "none",
1344
- padding: "lg",
1345
- },
1346
- name: {
1347
- "font-size": "xl",
1348
- "font-weight": "700",
1349
- color: "text-1",
1350
- "margin-bottom": "2xs",
1351
- filter: "none",
1352
- },
1353
- position: {
1354
- "font-size": "base",
1355
- color: "text-2",
1356
- "margin-bottom": "base",
1357
- filter: "none",
1358
- "font-weight": 400,
1359
- },
1360
- social_levoGroup: {
1361
- display: "none",
1362
- "justify-content": "flex-start",
1363
- "column-gap": "sm",
1364
- filter: "none",
1365
- mobile: {
1366
- "justify-content": "center",
1367
- },
1368
- },
1369
- social: [
1370
- {
1371
- link: {
1372
- width: "40px",
1373
- height: "40px",
1374
- display: "flex",
1375
- "align-items": "center",
1376
- "justify-content": "center",
1377
- "border-radius": "lg",
1378
- "background-color": "background-2",
1379
- "border-width": "1px",
1380
- "border-color": "border",
1381
- filter: "none",
1382
- },
1383
- icon: {
1384
- width: "20px",
1385
- height: "20px",
1386
- "object-fit": "contain",
1387
- filter: "none",
1388
- },
1389
- },
1390
- {
1391
- link: {
1392
- width: "40px",
1393
- height: "40px",
1394
- display: "flex",
1395
- "align-items": "center",
1396
- "justify-content": "center",
1397
- "border-radius": "lg",
1398
- "background-color": "background-2",
1399
- "border-width": "1px",
1400
- "border-color": "border",
1401
- filter: "none",
1402
- },
1403
- icon: {
1404
- width: "20px",
1405
- height: "20px",
1406
- "object-fit": "contain",
1407
- filter: "none",
1408
- },
1409
- },
1410
- {
1411
- link: {
1412
- width: "40px",
1413
- height: "40px",
1414
- display: "flex",
1415
- "align-items": "center",
1416
- "justify-content": "center",
1417
- "border-radius": "lg",
1418
- "background-color": "background-2",
1419
- "border-width": "1px",
1420
- "border-color": "border",
1421
- filter: "none",
1422
- },
1423
- icon: {
1424
- width: "20px",
1425
- height: "20px",
1426
- "object-fit": "contain",
1427
- filter: "none",
1428
- },
1429
- },
1430
- {
1431
- link: {
1432
- width: "40px",
1433
- height: "40px",
1434
- display: "flex",
1435
- "align-items": "center",
1436
- "justify-content": "center",
1437
- "border-radius": "lg",
1438
- "background-color": "background-2",
1439
- "border-width": "1px",
1440
- "border-color": "border",
1441
- filter: "none",
1442
- },
1443
- icon: {
1444
- width: "20px",
1445
- height: "20px",
1446
- "object-fit": "contain",
1447
- filter: "none",
1448
- },
1449
- },
1450
- ],
1451
- },
1452
- {
1453
- card: {
1454
- "background-color": "text-2",
1455
- "border-radius": "lg",
1456
- padding: "none",
1457
- "text-align": "center",
1458
- "box-shadow": "0 4px 6px -1px rgba(0, 0, 0, 0.1)",
1459
- "border-width": "1px",
1460
- "border-color": "border",
1461
- filter: "none",
1462
- display: "none",
1463
- "flex-direction": "column",
1464
- "align-items": "center",
1465
- overflow: "hidden",
1466
- },
1467
- image: {
1468
- width: "100%",
1469
- height: "300px",
1470
- "border-radius": "lg",
1471
- "object-fit": "cover",
1472
- "margin-bottom": "lg",
1473
- filter: "none",
1474
- },
1475
- info: {
1476
- display: "flex",
1477
- "flex-direction": "column",
1478
- "align-items": "center",
1479
- "row-gap": "xs",
1480
- filter: "none",
1481
- padding: "lg",
1482
- },
1483
- name: {
1484
- "font-size": "xl",
1485
- "font-weight": "700",
1486
- color: "text-1",
1487
- "margin-bottom": "2xs",
1488
- },
1489
- position: {
1490
- "font-size": "base",
1491
- color: "white",
1492
- "margin-bottom": "base",
1493
- filter: "none",
1494
- },
1495
- social_levoGroup: {
1496
- display: "none",
1497
- "justify-content": "flex-start",
1498
- "column-gap": "sm",
1499
- filter: "none",
1500
- mobile: {
1501
- "justify-content": "center",
1502
- },
1503
- },
1504
- social: [
1505
- {
1506
- link: {
1507
- width: "40px",
1508
- height: "40px",
1509
- display: "flex",
1510
- "align-items": "center",
1511
- "justify-content": "center",
1512
- "border-radius": "lg",
1513
- "background-color": "background-2",
1514
- "border-width": "1px",
1515
- "border-color": "border",
1516
- filter: "none",
1517
- },
1518
- icon: {
1519
- width: "20px",
1520
- height: "20px",
1521
- "object-fit": "contain",
1522
- filter: "none",
1523
- },
1524
- },
1525
- {
1526
- link: {
1527
- width: "40px",
1528
- height: "40px",
1529
- display: "flex",
1530
- "align-items": "center",
1531
- "justify-content": "center",
1532
- "border-radius": "lg",
1533
- "background-color": "background-2",
1534
- "border-width": "1px",
1535
- "border-color": "border",
1536
- filter: "none",
1537
- },
1538
- icon: {
1539
- width: "20px",
1540
- height: "20px",
1541
- "object-fit": "contain",
1542
- filter: "none",
1543
- },
1544
- },
1545
- {
1546
- link: {
1547
- width: "40px",
1548
- height: "40px",
1549
- display: "flex",
1550
- "align-items": "center",
1551
- "justify-content": "center",
1552
- "border-radius": "lg",
1553
- "background-color": "background-2",
1554
- "border-width": "1px",
1555
- "border-color": "border",
1556
- filter: "none",
1557
- },
1558
- icon: {
1559
- width: "20px",
1560
- height: "20px",
1561
- "object-fit": "contain",
1562
- filter: "none",
1563
- },
1564
- },
1565
- {
1566
- link: {
1567
- width: "40px",
1568
- height: "40px",
1569
- display: "flex",
1570
- "align-items": "center",
1571
- "justify-content": "center",
1572
- "border-radius": "lg",
1573
- "background-color": "background-2",
1574
- "border-width": "1px",
1575
- "border-color": "border",
1576
- filter: "none",
1577
- },
1578
- icon: {
1579
- width: "20px",
1580
- height: "20px",
1581
- "object-fit": "contain",
1582
- filter: "none",
1583
- },
1584
- },
1585
- ],
1586
- },
1587
- {
1588
- card: {
1589
- "background-color": "transparent",
1590
- "border-radius": "none",
1591
- padding: "none",
1592
- "text-align": "left",
1593
- "box-shadow": "none",
1594
- filter: "none",
1595
- display: "flex",
1596
- "flex-direction": "column",
1597
- "align-items": "flex-start",
1598
- mobile: {
1599
- "text-align": "center",
1600
- "align-items": "center",
1601
- },
1602
- },
1603
- image: {
1604
- width: "100%",
1605
- height: "300px",
1606
- "border-radius": "lg",
1607
- "object-fit": "cover",
1608
- "margin-bottom": "lg",
1609
- filter: "none",
1610
- },
1611
- info: {
1612
- display: "flex",
1613
- "flex-direction": "column",
1614
- "align-items": "flex-start",
1615
- "row-gap": "xs",
1616
- filter: "none",
1617
- mobile: {
1618
- "align-items": "center",
1619
- },
1620
- },
1621
- name: {
1622
- "font-size": "xl",
1623
- "font-weight": "700",
1624
- color: "text-1",
1625
- "margin-bottom": "2xs",
1626
- },
1627
- position: {
1628
- "font-size": "base",
1629
- color: "text-2",
1630
- "margin-bottom": "base",
1631
- },
1632
- social_levoGroup: {
1633
- display: "flex",
1634
- "justify-content": "flex-start",
1635
- "column-gap": "sm",
1636
- filter: "none",
1637
- mobile: {
1638
- "justify-content": "center",
1639
- },
1640
- },
1641
- social: [
1642
- {
1643
- link: {
1644
- width: "40px",
1645
- height: "40px",
1646
- display: "flex",
1647
- "align-items": "center",
1648
- "justify-content": "center",
1649
- "border-radius": "lg",
1650
- "background-color": "background-2",
1651
- "border-width": "1px",
1652
- "border-color": "border",
1653
- filter: "none",
1654
- },
1655
- icon: {
1656
- width: "20px",
1657
- height: "20px",
1658
- "object-fit": "contain",
1659
- filter: "none",
1660
- },
1661
- },
1662
- {
1663
- link: {
1664
- width: "40px",
1665
- height: "40px",
1666
- display: "flex",
1667
- "align-items": "center",
1668
- "justify-content": "center",
1669
- "border-radius": "lg",
1670
- "background-color": "background-2",
1671
- "border-width": "1px",
1672
- "border-color": "border",
1673
- filter: "none",
1674
- },
1675
- icon: {
1676
- width: "20px",
1677
- height: "20px",
1678
- "object-fit": "contain",
1679
- filter: "none",
1680
- },
1681
- },
1682
- {
1683
- link: {
1684
- width: "40px",
1685
- height: "40px",
1686
- display: "flex",
1687
- "align-items": "center",
1688
- "justify-content": "center",
1689
- "border-radius": "lg",
1690
- "background-color": "background-2",
1691
- "border-width": "1px",
1692
- "border-color": "border",
1693
- filter: "none",
1694
- },
1695
- icon: {
1696
- width: "20px",
1697
- height: "20px",
1698
- "object-fit": "contain",
1699
- filter: "none",
1700
- },
1701
- },
1702
- {
1703
- link: {
1704
- width: "40px",
1705
- height: "40px",
1706
- display: "flex",
1707
- "align-items": "center",
1708
- "justify-content": "center",
1709
- "border-radius": "lg",
1710
- "background-color": "background-2",
1711
- "border-width": "1px",
1712
- "border-color": "border",
1713
- filter: "none",
1714
- },
1715
- icon: {
1716
- width: "20px",
1717
- height: "20px",
1718
- "object-fit": "contain",
1719
- filter: "none",
1720
- },
1721
- },
1722
- ],
1723
- },
1724
- {
1725
- card: {
1726
- "background-color": "background-2",
1727
- "border-radius": "lg",
1728
- padding: "none",
1729
- "text-align": "center",
1730
- "box-shadow": "0 4px 6px -1px rgba(0, 0, 0, 0.1)",
1731
- "border-width": "1px",
1732
- "border-color": "border",
1733
- filter: "none",
1734
- display: "flex",
1735
- "flex-direction": "column",
1736
- "align-items": "center",
1737
- overflow: "hidden",
1738
- },
1739
- image: {
1740
- width: "100%",
1741
- height: "300px",
1742
- "border-radius": "none",
1743
- "object-fit": "cover",
1744
- "margin-bottom": "none",
1745
- "border-bottom-width": "1px",
1746
- "border-bottom-color": "border",
1747
- filter: "none",
1748
- },
1749
- info: {
1750
- display: "flex",
1751
- "flex-direction": "column",
1752
- "align-items": "center",
1753
- "row-gap": "xs",
1754
- filter: "none",
1755
- padding: "lg",
1756
- },
1757
- name: {
1758
- "font-size": "xl",
1759
- "font-weight": "700",
1760
- color: "text-1",
1761
- "margin-bottom": "2xs",
1762
- },
1763
- position: {
1764
- "font-size": "base",
1765
- color: "text-2",
1766
- "margin-bottom": "none",
1767
- },
1768
- social_levoGroup: {
1769
- display: "none",
1770
- filter: "none",
1771
- },
1772
- social: [],
1773
- },
1774
- ],
1775
- cta_rightIcon: {
1776
- width: "20px",
1777
- },
1778
- },
1779
- },
1780
- {
1781
- key: "variant-3",
1782
- title: "Variant 3",
1783
- content: DEFAULT_CONTENT_WITH_CTAS,
1784
- config: {
1785
- cta: {
1786
- button_icons: {
1787
- right: {
1788
- enabled: true,
1789
- },
1790
- },
1791
- },
1792
- },
1793
- styles: {
1794
- layout: {
1795
- "padding-top": "4xl",
1796
- "padding-bottom": "4xl",
1797
- mobile: {
1798
- "padding-top": "2xl",
1799
- "padding-bottom": "2xl",
1800
- },
1801
- },
1802
- container: {
1803
- "max-width": "1280px",
1804
- "margin-left": "auto",
1805
- "margin-right": "auto",
1806
- "padding-left": "xl",
1807
- "padding-right": "xl",
1808
- filter: "none",
1809
- mobile: {
1810
- filter: "none",
1811
- },
1812
- },
1813
- header: {
1814
- "text-align": "left",
1815
- "margin-bottom": "3xl",
1816
- mobile: {
1817
- "margin-bottom": "2xl",
1818
- "text-align": "center",
1819
- filter: "none",
1820
- "flex-direction": "column",
1821
- },
1822
- filter: "none",
1823
- display: "flex",
1824
- "justify-content": "space-between",
1825
- "align-items": "center",
1826
- tablet: {
1827
- filter: "none",
1828
- "flex-direction": "column",
1829
- },
1830
- "flex-direction": "row",
1831
- },
1832
- "accent-title": {
1833
- "font-size": "3xl",
1834
- "font-weight": 600,
1835
- color: "text-2",
1836
- "text-transform": "uppercase",
1837
- "letter-spacing": "0.1em",
1838
- "margin-bottom": "xs",
1839
- filter: "none",
1840
- tablet: {
1841
- filter: "none",
1842
- },
1843
- mobile: {
1844
- filter: "none",
1845
- },
1846
- },
1847
- title: {
1848
- "font-size": "lg",
1849
- "font-weight": 400,
1850
- color: "background-3",
1851
- "line-height": "1.2",
1852
- tablet: {
1853
- "font-size": "lg",
1854
- filter: "none",
1855
- "text-align": "center",
1856
- },
1857
- mobile: {
1858
- "font-size": "sm",
1859
- filter: "none",
1860
- },
1861
- filter: "none",
1862
- "margin-bottom": "none",
1863
- width: "auto",
1864
- display: "none",
1865
- },
1866
- ctas_levoGroup: {
1867
- display: "flex",
1868
- "column-gap": "xs",
1869
- "align-items": "center",
1870
- "flex-wrap": "wrap",
1871
- "margin-bottom": "xl",
1872
- mobile: {
1873
- "flex-direction": "column",
1874
- "row-gap": "xs",
1875
- "column-gap": "0",
1876
- },
1877
- },
1878
- ctas: [
1879
- {
1880
- button: {},
1881
- },
1882
- {
1883
- button: {
1884
- "background-color": "transparent",
1885
- color: "text-1",
1886
- "padding-top": "2xs",
1887
- "padding-bottom": "2xs",
1888
- "padding-left": "base",
1889
- "padding-right": "base",
1890
- "border-radius": "3xl",
1891
- "border-width": "1px",
1892
- "border-color": "border",
1893
- "font-size": "base",
1894
- "font-weight": "500",
1895
- display: "flex",
1896
- width: "fit-content",
1897
- filter: "none",
1898
- "column-gap": "xs",
1899
- },
1900
- },
1901
- {
1902
- button: {
1903
- "background-color": "background-2",
1904
- color: "white",
1905
- "padding-top": "2xs",
1906
- "padding-bottom": "2xs",
1907
- "padding-left": "base",
1908
- "padding-right": "base",
1909
- "border-radius": "3xl",
1910
- "border-width": "1px",
1911
- "border-color": "border",
1912
- "font-size": "base",
1913
- "font-weight": "500",
1914
- display: "flex",
1915
- width: "fit-content",
1916
- filter: "none",
1917
- "column-gap": "xs",
1918
- },
1919
- },
1920
- ],
1921
- team_levoGroup: {
1922
- display: "grid",
1923
- "grid-template-columns": "repeat(3, minmax(0, 1fr))",
1924
- "column-gap": "xl",
1925
- "row-gap": "3xl",
1926
- tablet: {
1927
- "grid-template-columns": "repeat(2, minmax(0, 1fr))",
1928
- "column-gap": "lg",
1929
- "row-gap": "2xl",
1930
- },
1931
- mobile: {
1932
- "grid-template-columns": "repeat(1, minmax(0, 1fr))",
1933
- "row-gap": "xl",
1934
- },
1935
- filter: "none",
1936
- },
1937
- team: [
1938
- {
1939
- card: {
1940
- "background-color": "white",
1941
- padding: "none",
1942
- "text-align": "center",
1943
- "border-width": "0px",
1944
- filter: "none",
1945
- display: "flex",
1946
- "flex-direction": "column",
1947
- "align-items": "center",
1948
- overflow: "hidden",
1949
- },
1950
- image: {
1951
- "object-fit": "cover",
1952
- "margin-bottom": "none",
1953
- "border-bottom-width": "1px",
1954
- "border-bottom-color": "r",
1955
- filter: "none",
1956
- mobile: {
1957
- filter: "none",
1958
- },
1959
- tablet: {
1960
- filter: "none",
1961
- },
1962
- },
1963
- info: {
1964
- display: "flex",
1965
- "flex-direction": "column",
1966
- "align-items": "center",
1967
- "row-gap": "none",
1968
- filter: "none",
1969
- padding: "lg",
1970
- height: "auto",
1971
- "justify-content": "center",
1972
- mobile: {
1973
- filter: "none",
1974
- },
1975
- tablet: {
1976
- filter: "none",
1977
- },
1978
- },
1979
- name: {
1980
- "font-size": "xl",
1981
- "font-weight": "700",
1982
- color: "text-1",
1983
- "margin-bottom": "2xs",
1984
- filter: "none",
1985
- },
1986
- position: {
1987
- "font-size": "base",
1988
- color: "text-2",
1989
- "margin-bottom": "none",
1990
- filter: "none",
1991
- "font-weight": 400,
1992
- },
1993
- social_levoGroup: {
1994
- display: "none",
1995
- filter: "none",
1996
- },
1997
- social: [],
1998
- },
1999
- {
2000
- card: {
2001
- "background-color": "white",
2002
- padding: "none",
2003
- "text-align": "center",
2004
- "border-width": "0px",
2005
- filter: "none",
2006
- display: "flex",
2007
- "flex-direction": "column",
2008
- "align-items": "center",
2009
- overflow: "hidden",
2010
- },
2011
- image: {
2012
- "object-fit": "cover",
2013
- "margin-bottom": "none",
2014
- "border-bottom-width": "1px",
2015
- "border-bottom-color": "r",
2016
- filter: "none",
2017
- mobile: {
2018
- filter: "none",
2019
- },
2020
- tablet: {
2021
- filter: "none",
2022
- },
2023
- },
2024
- info: {
2025
- display: "flex",
2026
- "flex-direction": "column",
2027
- "align-items": "center",
2028
- "row-gap": "none",
2029
- filter: "none",
2030
- padding: "lg",
2031
- height: "auto",
2032
- "justify-content": "center",
2033
- mobile: {
2034
- filter: "none",
2035
- },
2036
- tablet: {
2037
- filter: "none",
2038
- },
2039
- },
2040
- name: {
2041
- "font-size": "xl",
2042
- "font-weight": "700",
2043
- color: "text-1",
2044
- "margin-bottom": "2xs",
2045
- filter: "none",
2046
- },
2047
- position: {
2048
- "font-size": "base",
2049
- color: "text-2",
2050
- "margin-bottom": "none",
2051
- filter: "none",
2052
- "font-weight": 400,
2053
- },
2054
- social_levoGroup: {
2055
- display: "none",
2056
- filter: "none",
2057
- },
2058
- social: [],
2059
- },
2060
- {
2061
- card: {
2062
- "background-color": "white",
2063
- padding: "none",
2064
- "text-align": "center",
2065
- "border-width": "0px",
2066
- filter: "none",
2067
- display: "flex",
2068
- "flex-direction": "column",
2069
- "align-items": "center",
2070
- overflow: "hidden",
2071
- },
2072
- image: {
2073
- "object-fit": "cover",
2074
- "margin-bottom": "none",
2075
- "border-bottom-width": "1px",
2076
- "border-bottom-color": "r",
2077
- filter: "none",
2078
- mobile: {
2079
- filter: "none",
2080
- },
2081
- tablet: {
2082
- filter: "none",
2083
- },
2084
- },
2085
- info: {
2086
- display: "flex",
2087
- "flex-direction": "column",
2088
- "align-items": "center",
2089
- "row-gap": "none",
2090
- filter: "none",
2091
- padding: "lg",
2092
- height: "auto",
2093
- "justify-content": "center",
2094
- mobile: {
2095
- filter: "none",
2096
- },
2097
- tablet: {
2098
- filter: "none",
2099
- },
2100
- },
2101
- name: {
2102
- "font-size": "xl",
2103
- "font-weight": "700",
2104
- color: "text-1",
2105
- "margin-bottom": "2xs",
2106
- filter: "none",
2107
- },
2108
- position: {
2109
- "font-size": "base",
2110
- color: "text-2",
2111
- "margin-bottom": "none",
2112
- filter: "none",
2113
- "font-weight": 400,
2114
- },
2115
- social_levoGroup: {
2116
- display: "none",
2117
- filter: "none",
2118
- },
2119
- social: [],
2120
- },
2121
- {
2122
- card: {
2123
- "background-color": "white",
2124
- "border-radius": "lg",
2125
- padding: "none",
2126
- "text-align": "center",
2127
- "box-shadow": "0 4px 6px -1px rgba(0, 0, 0, 0.1)",
2128
- "border-width": "1px",
2129
- "border-color": "border",
2130
- filter: "drop-shadow(0 2px 5px rgba(0, 0, 0, 0.25))",
2131
- display: "flex",
2132
- "flex-direction": "column",
2133
- "align-items": "center",
2134
- overflow: "hidden",
2135
- "border-style": "solid",
2136
- },
2137
- image: {
2138
- width: "100%",
2139
- height: "320px",
2140
- "border-radius": "none",
2141
- "object-fit": "cover",
2142
- "margin-bottom": "none",
2143
- "border-bottom-width": "1px",
2144
- "border-bottom-color": "border",
2145
- filter: "none",
2146
- },
2147
- info: {
2148
- display: "flex",
2149
- "flex-direction": "column",
2150
- "align-items": "center",
2151
- "row-gap": "none",
2152
- filter: "none",
2153
- padding: "lg",
2154
- mobile: {
2155
- filter: "none",
2156
- },
2157
- tablet: {
2158
- filter: "none",
2159
- },
2160
- },
2161
- name: {
2162
- "font-size": "xl",
2163
- "font-weight": "700",
2164
- color: "text-1",
2165
- "margin-bottom": "2xs",
2166
- filter: "none",
2167
- },
2168
- position: {
2169
- "font-size": "base",
2170
- color: "text-2",
2171
- "margin-bottom": "none",
2172
- filter: "none",
2173
- "font-weight": 400,
2174
- },
2175
- social_levoGroup: {
2176
- display: "none",
2177
- filter: "none",
2178
- },
2179
- social: [
2180
- {
2181
- link: {
2182
- width: "40px",
2183
- height: "40px",
2184
- display: "flex",
2185
- "align-items": "center",
2186
- "justify-content": "center",
2187
- "border-radius": "lg",
2188
- "background-color": "background-2",
2189
- "border-width": "1px",
2190
- "border-color": "border",
2191
- filter: "none",
2192
- },
2193
- icon: {
2194
- width: "20px",
2195
- height: "20px",
2196
- "object-fit": "contain",
2197
- filter: "none",
2198
- },
2199
- },
2200
- {
2201
- link: {
2202
- width: "40px",
2203
- height: "40px",
2204
- display: "flex",
2205
- "align-items": "center",
2206
- "justify-content": "center",
2207
- "border-radius": "lg",
2208
- "background-color": "background-2",
2209
- "border-width": "1px",
2210
- "border-color": "border",
2211
- filter: "none",
2212
- },
2213
- icon: {
2214
- width: "20px",
2215
- height: "20px",
2216
- "object-fit": "contain",
2217
- filter: "none",
2218
- },
2219
- },
2220
- {
2221
- link: {
2222
- width: "40px",
2223
- height: "40px",
2224
- display: "flex",
2225
- "align-items": "center",
2226
- "justify-content": "center",
2227
- "border-radius": "lg",
2228
- "background-color": "background-2",
2229
- "border-width": "1px",
2230
- "border-color": "border",
2231
- filter: "none",
2232
- },
2233
- icon: {
2234
- width: "20px",
2235
- height: "20px",
2236
- "object-fit": "contain",
2237
- filter: "none",
2238
- },
2239
- },
2240
- {
2241
- link: {
2242
- width: "40px",
2243
- height: "40px",
2244
- display: "flex",
2245
- "align-items": "center",
2246
- "justify-content": "center",
2247
- "border-radius": "lg",
2248
- "background-color": "background-2",
2249
- "border-width": "1px",
2250
- "border-color": "border",
2251
- filter: "none",
2252
- },
2253
- icon: {
2254
- width: "20px",
2255
- height: "20px",
2256
- "object-fit": "contain",
2257
- filter: "none",
2258
- },
2259
- },
2260
- ],
2261
- },
2262
- {
2263
- card: {
2264
- "background-color": "white",
2265
- "border-radius": "lg",
2266
- padding: "none",
2267
- "text-align": "center",
2268
- "box-shadow": "0 4px 6px -1px rgba(0, 0, 0, 0.1)",
2269
- "border-width": "1px",
2270
- "border-color": "border",
2271
- filter: "drop-shadow(0 2px 5px rgba(0, 0, 0, 0.25))",
2272
- display: "flex",
2273
- "flex-direction": "column",
2274
- "align-items": "center",
2275
- overflow: "hidden",
2276
- "padding-bottom": "none",
2277
- "border-style": "solid",
2278
- },
2279
- image: {
2280
- width: "100%",
2281
- height: "320px",
2282
- "border-radius": "none",
2283
- "object-fit": "cover",
2284
- "margin-bottom": "none",
2285
- "border-bottom-width": "1px",
2286
- "border-bottom-color": "border",
2287
- filter: "none",
2288
- },
2289
- info: {
2290
- display: "flex",
2291
- "flex-direction": "column",
2292
- "align-items": "center",
2293
- "row-gap": "none",
2294
- filter: "none",
2295
- padding: "lg",
2296
- },
2297
- name: {
2298
- "font-size": "xl",
2299
- "font-weight": "700",
2300
- color: "text-1",
2301
- "margin-bottom": "2xs",
2302
- filter: "none",
2303
- },
2304
- position: {
2305
- "font-size": "base",
2306
- color: "text-2",
2307
- "margin-bottom": "base",
2308
- filter: "none",
2309
- "font-weight": 400,
2310
- },
2311
- social_levoGroup: {
2312
- display: "none",
2313
- "justify-content": "flex-start",
2314
- "column-gap": "sm",
2315
- filter: "none",
2316
- mobile: {
2317
- "justify-content": "center",
2318
- },
2319
- },
2320
- social: [
2321
- {
2322
- link: {
2323
- width: "40px",
2324
- height: "40px",
2325
- display: "flex",
2326
- "align-items": "center",
2327
- "justify-content": "center",
2328
- "border-radius": "lg",
2329
- "background-color": "background-2",
2330
- "border-width": "1px",
2331
- "border-color": "border",
2332
- filter: "none",
2333
- },
2334
- icon: {
2335
- width: "20px",
2336
- height: "20px",
2337
- "object-fit": "contain",
2338
- filter: "none",
2339
- },
2340
- },
2341
- {
2342
- link: {
2343
- width: "40px",
2344
- height: "40px",
2345
- display: "flex",
2346
- "align-items": "center",
2347
- "justify-content": "center",
2348
- "border-radius": "lg",
2349
- "background-color": "background-2",
2350
- "border-width": "1px",
2351
- "border-color": "border",
2352
- filter: "none",
2353
- },
2354
- icon: {
2355
- width: "20px",
2356
- height: "20px",
2357
- "object-fit": "contain",
2358
- filter: "none",
2359
- },
2360
- },
2361
- {
2362
- link: {
2363
- width: "40px",
2364
- height: "40px",
2365
- display: "flex",
2366
- "align-items": "center",
2367
- "justify-content": "center",
2368
- "border-radius": "lg",
2369
- "background-color": "background-2",
2370
- "border-width": "1px",
2371
- "border-color": "border",
2372
- filter: "none",
2373
- },
2374
- icon: {
2375
- width: "20px",
2376
- height: "20px",
2377
- "object-fit": "contain",
2378
- filter: "none",
2379
- },
2380
- },
2381
- {
2382
- link: {
2383
- width: "40px",
2384
- height: "40px",
2385
- display: "flex",
2386
- "align-items": "center",
2387
- "justify-content": "center",
2388
- "border-radius": "lg",
2389
- "background-color": "background-2",
2390
- "border-width": "1px",
2391
- "border-color": "border",
2392
- filter: "none",
2393
- },
2394
- icon: {
2395
- width: "20px",
2396
- height: "20px",
2397
- "object-fit": "contain",
2398
- filter: "none",
2399
- },
2400
- },
2401
- ],
2402
- },
2403
- {
2404
- card: {
2405
- "background-color": "text-2",
2406
- "border-radius": "lg",
2407
- padding: "none",
2408
- "text-align": "center",
2409
- "box-shadow": "0 4px 6px -1px rgba(0, 0, 0, 0.1)",
2410
- "border-width": "1px",
2411
- "border-color": "border",
2412
- filter: "none",
2413
- display: "none",
2414
- "flex-direction": "column",
2415
- "align-items": "center",
2416
- overflow: "hidden",
2417
- },
2418
- image: {
2419
- width: "100%",
2420
- height: "300px",
2421
- "border-radius": "lg",
2422
- "object-fit": "cover",
2423
- "margin-bottom": "lg",
2424
- filter: "none",
2425
- },
2426
- info: {
2427
- display: "flex",
2428
- "flex-direction": "column",
2429
- "align-items": "center",
2430
- "row-gap": "xs",
2431
- filter: "none",
2432
- padding: "lg",
2433
- },
2434
- name: {
2435
- "font-size": "xl",
2436
- "font-weight": "700",
2437
- color: "text-1",
2438
- "margin-bottom": "2xs",
2439
- },
2440
- position: {
2441
- "font-size": "base",
2442
- color: "white",
2443
- "margin-bottom": "base",
2444
- filter: "none",
2445
- },
2446
- social_levoGroup: {
2447
- display: "none",
2448
- "justify-content": "flex-start",
2449
- "column-gap": "sm",
2450
- filter: "none",
2451
- mobile: {
2452
- "justify-content": "center",
2453
- },
2454
- },
2455
- social: [
2456
- {
2457
- link: {
2458
- width: "40px",
2459
- height: "40px",
2460
- display: "flex",
2461
- "align-items": "center",
2462
- "justify-content": "center",
2463
- "border-radius": "lg",
2464
- "background-color": "background-2",
2465
- "border-width": "1px",
2466
- "border-color": "border",
2467
- filter: "none",
2468
- },
2469
- icon: {
2470
- width: "20px",
2471
- height: "20px",
2472
- "object-fit": "contain",
2473
- filter: "none",
2474
- },
2475
- },
2476
- {
2477
- link: {
2478
- width: "40px",
2479
- height: "40px",
2480
- display: "flex",
2481
- "align-items": "center",
2482
- "justify-content": "center",
2483
- "border-radius": "lg",
2484
- "background-color": "background-2",
2485
- "border-width": "1px",
2486
- "border-color": "border",
2487
- filter: "none",
2488
- },
2489
- icon: {
2490
- width: "20px",
2491
- height: "20px",
2492
- "object-fit": "contain",
2493
- filter: "none",
2494
- },
2495
- },
2496
- {
2497
- link: {
2498
- width: "40px",
2499
- height: "40px",
2500
- display: "flex",
2501
- "align-items": "center",
2502
- "justify-content": "center",
2503
- "border-radius": "lg",
2504
- "background-color": "background-2",
2505
- "border-width": "1px",
2506
- "border-color": "border",
2507
- filter: "none",
2508
- },
2509
- icon: {
2510
- width: "20px",
2511
- height: "20px",
2512
- "object-fit": "contain",
2513
- filter: "none",
2514
- },
2515
- },
2516
- {
2517
- link: {
2518
- width: "40px",
2519
- height: "40px",
2520
- display: "flex",
2521
- "align-items": "center",
2522
- "justify-content": "center",
2523
- "border-radius": "lg",
2524
- "background-color": "background-2",
2525
- "border-width": "1px",
2526
- "border-color": "border",
2527
- filter: "none",
2528
- },
2529
- icon: {
2530
- width: "20px",
2531
- height: "20px",
2532
- "object-fit": "contain",
2533
- filter: "none",
2534
- },
2535
- },
2536
- ],
2537
- },
2538
- {
2539
- card: {
2540
- "background-color": "transparent",
2541
- "border-radius": "none",
2542
- padding: "none",
2543
- "text-align": "left",
2544
- "box-shadow": "none",
2545
- filter: "none",
2546
- display: "flex",
2547
- "flex-direction": "column",
2548
- "align-items": "flex-start",
2549
- mobile: {
2550
- "text-align": "center",
2551
- "align-items": "center",
2552
- },
2553
- },
2554
- image: {
2555
- width: "100%",
2556
- height: "300px",
2557
- "border-radius": "lg",
2558
- "object-fit": "cover",
2559
- "margin-bottom": "lg",
2560
- filter: "none",
2561
- },
2562
- info: {
2563
- display: "flex",
2564
- "flex-direction": "column",
2565
- "align-items": "flex-start",
2566
- "row-gap": "xs",
2567
- filter: "none",
2568
- mobile: {
2569
- "align-items": "center",
2570
- },
2571
- },
2572
- name: {
2573
- "font-size": "xl",
2574
- "font-weight": "700",
2575
- color: "text-1",
2576
- "margin-bottom": "2xs",
2577
- },
2578
- position: {
2579
- "font-size": "base",
2580
- color: "text-2",
2581
- "margin-bottom": "base",
2582
- },
2583
- social_levoGroup: {
2584
- display: "flex",
2585
- "justify-content": "flex-start",
2586
- "column-gap": "sm",
2587
- filter: "none",
2588
- mobile: {
2589
- "justify-content": "center",
2590
- },
2591
- },
2592
- social: [
2593
- {
2594
- link: {
2595
- width: "40px",
2596
- height: "40px",
2597
- display: "flex",
2598
- "align-items": "center",
2599
- "justify-content": "center",
2600
- "border-radius": "lg",
2601
- "background-color": "background-2",
2602
- "border-width": "1px",
2603
- "border-color": "border",
2604
- filter: "none",
2605
- },
2606
- icon: {
2607
- width: "20px",
2608
- height: "20px",
2609
- "object-fit": "contain",
2610
- filter: "none",
2611
- },
2612
- },
2613
- {
2614
- link: {
2615
- width: "40px",
2616
- height: "40px",
2617
- display: "flex",
2618
- "align-items": "center",
2619
- "justify-content": "center",
2620
- "border-radius": "lg",
2621
- "background-color": "background-2",
2622
- "border-width": "1px",
2623
- "border-color": "border",
2624
- filter: "none",
2625
- },
2626
- icon: {
2627
- width: "20px",
2628
- height: "20px",
2629
- "object-fit": "contain",
2630
- filter: "none",
2631
- },
2632
- },
2633
- {
2634
- link: {
2635
- width: "40px",
2636
- height: "40px",
2637
- display: "flex",
2638
- "align-items": "center",
2639
- "justify-content": "center",
2640
- "border-radius": "lg",
2641
- "background-color": "background-2",
2642
- "border-width": "1px",
2643
- "border-color": "border",
2644
- filter: "none",
2645
- },
2646
- icon: {
2647
- width: "20px",
2648
- height: "20px",
2649
- "object-fit": "contain",
2650
- filter: "none",
2651
- },
2652
- },
2653
- {
2654
- link: {
2655
- width: "40px",
2656
- height: "40px",
2657
- display: "flex",
2658
- "align-items": "center",
2659
- "justify-content": "center",
2660
- "border-radius": "lg",
2661
- "background-color": "background-2",
2662
- "border-width": "1px",
2663
- "border-color": "border",
2664
- filter: "none",
2665
- },
2666
- icon: {
2667
- width: "20px",
2668
- height: "20px",
2669
- "object-fit": "contain",
2670
- filter: "none",
2671
- },
2672
- },
2673
- ],
2674
- },
2675
- {
2676
- card: {
2677
- "background-color": "background-2",
2678
- "border-radius": "lg",
2679
- padding: "none",
2680
- "text-align": "center",
2681
- "box-shadow": "0 4px 6px -1px rgba(0, 0, 0, 0.1)",
2682
- "border-width": "1px",
2683
- "border-color": "border",
2684
- filter: "none",
2685
- display: "flex",
2686
- "flex-direction": "column",
2687
- "align-items": "center",
2688
- overflow: "hidden",
2689
- },
2690
- image: {
2691
- width: "100%",
2692
- height: "300px",
2693
- "border-radius": "none",
2694
- "object-fit": "cover",
2695
- "margin-bottom": "none",
2696
- "border-bottom-width": "1px",
2697
- "border-bottom-color": "border",
2698
- filter: "none",
2699
- },
2700
- info: {
2701
- display: "flex",
2702
- "flex-direction": "column",
2703
- "align-items": "center",
2704
- "row-gap": "xs",
2705
- filter: "none",
2706
- padding: "lg",
2707
- },
2708
- name: {
2709
- "font-size": "xl",
2710
- "font-weight": "700",
2711
- color: "text-1",
2712
- "margin-bottom": "2xs",
2713
- },
2714
- position: {
2715
- "font-size": "base",
2716
- color: "text-2",
2717
- "margin-bottom": "none",
2718
- },
2719
- social_levoGroup: {
2720
- display: "none",
2721
- filter: "none",
2722
- },
2723
- social: [],
2724
- },
2725
- ],
2726
- cta_rightIcon: {
2727
- width: "20px",
2728
- },
2729
- },
2730
- },
2731
- ],
2732
- };