@levo-so/blocks 0.1.1 → 0.1.52

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