@levo-so/blocks 0.1.0 → 0.1.2

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