@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,944 @@
1
+ import type { IBlock } from "@levo-so/studio";
2
+
3
+ const DEFAULT_CONTENT = {
4
+ layout: null,
5
+ container: null,
6
+ header_wrapper: null,
7
+ title: "Job Opportunities",
8
+ description:
9
+ "More than investors — true partners in growth. The difference that sets our venture studio apart.",
10
+ jobs_levoGroup: null,
11
+ bottom_cta: "Explore All Job Roles",
12
+ jobs: [
13
+ {
14
+ job_item: null,
15
+ designation_wrapper: null,
16
+ designation_header: "Designation",
17
+ designation_value: "Product Designer",
18
+ work_wrapper: null,
19
+ work_header: "Work",
20
+ work_value: "Full Time",
21
+ location_wrapper: null,
22
+ location_header: "Location",
23
+ location_value: "New York",
24
+ cta: " ",
25
+ separator: null,
26
+ cta_rightIcon: {
27
+ kind: "icon",
28
+ data: {
29
+ id: "arrow-right-1",
30
+ label: "Arrow Right 1",
31
+ tags: ["arrow", "custom", "directional", "right"],
32
+ svgCode:
33
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M14.4301 18.82C14.2401 18.82 14.0501 18.75 13.9001 18.6C13.6101 18.31 13.6101 17.83 13.9001 17.54L19.4401 12L13.9001 6.46C13.6101 6.17 13.6101 5.69 13.9001 5.4C14.1901 5.11 14.6701 5.11 14.9601 5.4L21.0301 11.47C21.3201 11.76 21.3201 12.24 21.0301 12.53L14.9601 18.6C14.8101 18.75 14.6201 18.82 14.4301 18.82Z" fill="currentColor"/>\n<path d="M20.33 12.75H3.5C3.09 12.75 2.75 12.41 2.75 12C2.75 11.59 3.09 11.25 3.5 11.25H20.33C20.74 11.25 21.08 11.59 21.08 12C21.08 12.41 20.74 12.75 20.33 12.75Z" fill="currentColor"/>\n</svg>',
34
+ },
35
+ },
36
+ },
37
+ {
38
+ job_item: null,
39
+ designation_wrapper: null,
40
+ designation_header: "Designation",
41
+ designation_value: "Product Designer",
42
+ work_wrapper: null,
43
+ work_header: "Work",
44
+ work_value: "Full Time",
45
+ location_wrapper: null,
46
+ location_header: "Location",
47
+ location_value: "New York",
48
+ cta: " ",
49
+ separator: null,
50
+ cta_rightIcon: {
51
+ kind: "icon",
52
+ data: {
53
+ id: "arrow-right-1",
54
+ label: "Arrow Right 1",
55
+ tags: ["arrow", "custom", "directional", "right"],
56
+ svgCode:
57
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M14.4301 18.82C14.2401 18.82 14.0501 18.75 13.9001 18.6C13.6101 18.31 13.6101 17.83 13.9001 17.54L19.4401 12L13.9001 6.46C13.6101 6.17 13.6101 5.69 13.9001 5.4C14.1901 5.11 14.6701 5.11 14.9601 5.4L21.0301 11.47C21.3201 11.76 21.3201 12.24 21.0301 12.53L14.9601 18.6C14.8101 18.75 14.6201 18.82 14.4301 18.82Z" fill="currentColor"/>\n<path d="M20.33 12.75H3.5C3.09 12.75 2.75 12.41 2.75 12C2.75 11.59 3.09 11.25 3.5 11.25H20.33C20.74 11.25 21.08 11.59 21.08 12C21.08 12.41 20.74 12.75 20.33 12.75Z" fill="currentColor"/>\n</svg>',
58
+ },
59
+ },
60
+ },
61
+ {
62
+ job_item: null,
63
+ designation_wrapper: null,
64
+ designation_header: "Designation",
65
+ designation_value: "Product Designer",
66
+ work_wrapper: null,
67
+ work_header: "Work",
68
+ work_value: "Full Time",
69
+ location_wrapper: null,
70
+ location_header: "Location",
71
+ location_value: "New York",
72
+ cta: " ",
73
+ separator: null,
74
+ cta_rightIcon: {
75
+ kind: "icon",
76
+ data: {
77
+ id: "arrow-right-1",
78
+ label: "Arrow Right 1",
79
+ tags: ["arrow", "custom", "directional", "right"],
80
+ svgCode:
81
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M14.4301 18.82C14.2401 18.82 14.0501 18.75 13.9001 18.6C13.6101 18.31 13.6101 17.83 13.9001 17.54L19.4401 12L13.9001 6.46C13.6101 6.17 13.6101 5.69 13.9001 5.4C14.1901 5.11 14.6701 5.11 14.9601 5.4L21.0301 11.47C21.3201 11.76 21.3201 12.24 21.0301 12.53L14.9601 18.6C14.8101 18.75 14.6201 18.82 14.4301 18.82Z" fill="currentColor"/>\n<path d="M20.33 12.75H3.5C3.09 12.75 2.75 12.41 2.75 12C2.75 11.59 3.09 11.25 3.5 11.25H20.33C20.74 11.25 21.08 11.59 21.08 12C21.08 12.41 20.74 12.75 20.33 12.75Z" fill="currentColor"/>\n</svg>',
82
+ },
83
+ },
84
+ },
85
+ {
86
+ job_item: null,
87
+ designation_wrapper: null,
88
+ designation_header: "Designation",
89
+ designation_value: "Product Designer",
90
+ work_wrapper: null,
91
+ work_header: "Work",
92
+ work_value: "Full Time",
93
+ location_wrapper: null,
94
+ location_header: "Location",
95
+ location_value: "New York",
96
+ cta: " ",
97
+ separator: null,
98
+ cta_rightIcon: {
99
+ kind: "icon",
100
+ data: {
101
+ id: "arrow-right-1",
102
+ label: "Arrow Right 1",
103
+ tags: ["arrow", "custom", "directional", "right"],
104
+ svgCode:
105
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M14.4301 18.82C14.2401 18.82 14.0501 18.75 13.9001 18.6C13.6101 18.31 13.6101 17.83 13.9001 17.54L19.4401 12L13.9001 6.46C13.6101 6.17 13.6101 5.69 13.9001 5.4C14.1901 5.11 14.6701 5.11 14.9601 5.4L21.0301 11.47C21.3201 11.76 21.3201 12.24 21.0301 12.53L14.9601 18.6C14.8101 18.75 14.6201 18.82 14.4301 18.82Z" fill="currentColor"/>\n<path d="M20.33 12.75H3.5C3.09 12.75 2.75 12.41 2.75 12C2.75 11.59 3.09 11.25 3.5 11.25H20.33C20.74 11.25 21.08 11.59 21.08 12C21.08 12.41 20.74 12.75 20.33 12.75Z" fill="currentColor"/>\n</svg>',
106
+ },
107
+ },
108
+ },
109
+ ],
110
+ };
111
+
112
+ export type IContent5Content = typeof DEFAULT_CONTENT;
113
+
114
+ export const Content5: IBlock = {
115
+ category_id: "content",
116
+ title: "Content 5",
117
+ key: "content-5",
118
+ version: "v1",
119
+ prompt_description:
120
+ "Job opportunities listing with title, description, and job items showing designation, work type, location, and CTA in a clean 4-column layout.",
121
+
122
+ content_schema: [
123
+ {
124
+ key: "layout",
125
+ label: "Layout",
126
+ field_interface: "LayoutWidget",
127
+ },
128
+ {
129
+ key: "container",
130
+ label: "Container",
131
+ field_interface: "ContainerWidget",
132
+ },
133
+ {
134
+ key: "header_wrapper",
135
+ label: "Header Wrapper",
136
+ field_interface: "BoxWidget",
137
+ },
138
+ {
139
+ key: "title",
140
+ label: "Title",
141
+ field_interface: "HeadingWidget",
142
+ },
143
+ {
144
+ key: "description",
145
+ label: "Description",
146
+ field_interface: "TypographyWidget",
147
+ },
148
+ {
149
+ key: "jobs_levoGroup",
150
+ label: "Jobs Group",
151
+ field_interface: "BoxWidget",
152
+ },
153
+ {
154
+ key: "bottom_cta",
155
+ label: "Bottom CTA",
156
+ field_interface: "ButtonWidget",
157
+ },
158
+ {
159
+ key: "jobs",
160
+ label: "Jobs",
161
+ kind: "group",
162
+ field_interface: "BoxWidget",
163
+ fields: [
164
+ {
165
+ key: "job_item",
166
+ label: "Job Item",
167
+ field_interface: "BoxWidget",
168
+ },
169
+ {
170
+ key: "designation_wrapper",
171
+ label: "Designation Wrapper",
172
+ field_interface: "BoxWidget",
173
+ },
174
+ {
175
+ key: "designation_header",
176
+ label: "Designation Header",
177
+ field_interface: "TypographyWidget",
178
+ },
179
+ {
180
+ key: "designation_value",
181
+ label: "Designation Value",
182
+ field_interface: "TypographyWidget",
183
+ },
184
+ {
185
+ key: "work_wrapper",
186
+ label: "Work Wrapper",
187
+ field_interface: "BoxWidget",
188
+ },
189
+ {
190
+ key: "work_header",
191
+ label: "Work Header",
192
+ field_interface: "TypographyWidget",
193
+ },
194
+ {
195
+ key: "work_value",
196
+ label: "Work Value",
197
+ field_interface: "TypographyWidget",
198
+ },
199
+ {
200
+ key: "location_wrapper",
201
+ label: "Location Wrapper",
202
+ field_interface: "BoxWidget",
203
+ },
204
+ {
205
+ key: "location_header",
206
+ label: "Location Header",
207
+ field_interface: "TypographyWidget",
208
+ },
209
+ {
210
+ key: "location_value",
211
+ label: "Location Value",
212
+ field_interface: "TypographyWidget",
213
+ },
214
+ {
215
+ key: "cta",
216
+ label: "CTA Button",
217
+ field_interface: "ButtonWidget",
218
+ },
219
+ {
220
+ key: "separator",
221
+ label: "Separator",
222
+ field_interface: "BoxWidget",
223
+ },
224
+ ],
225
+ },
226
+ ],
227
+ layouts: [
228
+ {
229
+ key: "default",
230
+ title: "Default",
231
+ styles: {
232
+ layout: {
233
+ "padding-top": "3xl",
234
+ "padding-bottom": "3xl",
235
+ "padding-left": "base",
236
+ "padding-right": "base",
237
+ },
238
+ container: {
239
+ "margin-left": "auto",
240
+ "margin-right": "auto",
241
+ "max-width": "none",
242
+ },
243
+ header_wrapper: {
244
+ "text-align": "left",
245
+ "margin-bottom": "3xl",
246
+ "row-gap": "base",
247
+ },
248
+ title: {
249
+ "margin-bottom": "base",
250
+ },
251
+ description: {
252
+ color: "text-2",
253
+ "max-width": "600px",
254
+ },
255
+ jobs_levoGroup: {
256
+ display: "flex",
257
+ "flex-direction": "column",
258
+ "row-gap": "4xs",
259
+ "margin-bottom": "2xl",
260
+ },
261
+ bottom_cta: {
262
+ "padding-left": "none",
263
+ "padding-top": "none",
264
+ "padding-bottom": "none",
265
+ "padding-right": "none",
266
+ "margin-left": "auto",
267
+ "margin-right": "auto",
268
+ },
269
+ jobs: [
270
+ {
271
+ job_item: {
272
+ display: "grid",
273
+ "grid-template-columns": "1fr 1fr 1fr auto",
274
+ "align-items": "start",
275
+ "column-gap": "lg",
276
+ "padding-top": "lg",
277
+ "padding-bottom": "lg",
278
+ tablet: {
279
+ "grid-template-columns": "repeat(4, minmax(0, 1fr))",
280
+ "column-gap": "base",
281
+ },
282
+ mobile: {
283
+ "grid-template-columns": "repeat(2, minmax(0, 1fr))",
284
+ "column-gap": "sm",
285
+ "padding-top": "base",
286
+ "padding-bottom": "base",
287
+ "row-gap": "2xl",
288
+ },
289
+ "border-style": "solid",
290
+ "border-width": "1px",
291
+ "border-radius": "base",
292
+ "padding-left": "2xl",
293
+ "padding-right": "2xl",
294
+ },
295
+ designation_wrapper: {
296
+ display: "flex",
297
+ "flex-direction": "column",
298
+ "row-gap": "xs",
299
+ },
300
+ designation_header: {
301
+ color: "text-2",
302
+ "font-size": "sm",
303
+ "font-weight": "500",
304
+ "text-transform": "uppercase",
305
+ "letter-spacing": "0.05em",
306
+ },
307
+ designation_value: {
308
+ color: "text-1",
309
+ "font-weight": "600",
310
+ "margin-top": "xs",
311
+ },
312
+ work_wrapper: {
313
+ display: "flex",
314
+ "flex-direction": "column",
315
+ "row-gap": "xs",
316
+ tablet: {
317
+ "justify-content": "center",
318
+ "align-items": "center",
319
+ },
320
+ },
321
+ work_header: {
322
+ color: "text-2",
323
+ "font-size": "sm",
324
+ "font-weight": "500",
325
+ "text-transform": "uppercase",
326
+ "letter-spacing": "0.05em",
327
+ },
328
+ work_value: {
329
+ color: "text-1",
330
+ "font-weight": "600",
331
+ "margin-top": "xs",
332
+ },
333
+ location_wrapper: {
334
+ display: "flex",
335
+ "flex-direction": "column",
336
+ "row-gap": "xs",
337
+ tablet: {
338
+ "justify-content": "center",
339
+ "align-items": "center",
340
+ },
341
+ mobile: {
342
+ "justify-content": "start",
343
+ "align-items": "start",
344
+ },
345
+ },
346
+ location_header: {
347
+ color: "text-2",
348
+ "font-size": "sm",
349
+ "font-weight": "500",
350
+ "text-transform": "uppercase",
351
+ "letter-spacing": "0.05em",
352
+ },
353
+ location_value: {
354
+ color: "text-1",
355
+ "font-weight": "600",
356
+ "margin-top": "xs",
357
+ },
358
+ cta: {
359
+ "border-width": "0",
360
+ cursor: "pointer",
361
+ display: "flex",
362
+ "column-gap": "none",
363
+ tablet: {
364
+ width: "fit-content",
365
+ "justify-content": "center",
366
+ "align-items": "center",
367
+ "margin-left": "5xl",
368
+ },
369
+ width: "fit-content",
370
+ },
371
+ separator: {
372
+ width: "100%",
373
+ height: "1px",
374
+ "background-color": "border",
375
+ filter: "none",
376
+ },
377
+ cta_rightIcon: {
378
+ height: "24px",
379
+ width: "24px",
380
+ "font-size": "24px",
381
+ "border-radius": "3xl",
382
+ },
383
+ },
384
+ {
385
+ job_item: {
386
+ display: "grid",
387
+ "grid-template-columns": "1fr 1fr 1fr auto",
388
+ "align-items": "start",
389
+ "column-gap": "lg",
390
+ "padding-top": "lg",
391
+ "padding-bottom": "lg",
392
+ tablet: {
393
+ "grid-template-columns": "repeat(4, minmax(0, 1fr))",
394
+ "column-gap": "base",
395
+ },
396
+ mobile: {
397
+ "grid-template-columns": "repeat(2, minmax(0, 1fr))",
398
+ "column-gap": "sm",
399
+ "padding-top": "base",
400
+ "padding-bottom": "base",
401
+ "row-gap": "2xl",
402
+ },
403
+ "border-style": "solid",
404
+ "border-width": "1px",
405
+ "border-radius": "base",
406
+ "padding-left": "2xl",
407
+ "padding-right": "2xl",
408
+ },
409
+ designation_wrapper: {
410
+ display: "flex",
411
+ "flex-direction": "column",
412
+ "row-gap": "xs",
413
+ },
414
+ designation_header: {
415
+ color: "text-2",
416
+ "font-size": "sm",
417
+ "font-weight": "500",
418
+ "text-transform": "uppercase",
419
+ "letter-spacing": "0.05em",
420
+ },
421
+ designation_value: {
422
+ color: "text-1",
423
+ "font-weight": "600",
424
+ "margin-top": "xs",
425
+ },
426
+ work_wrapper: {
427
+ display: "flex",
428
+ "flex-direction": "column",
429
+ "row-gap": "xs",
430
+ tablet: {
431
+ "justify-content": "center",
432
+ "align-items": "center",
433
+ },
434
+ },
435
+ work_header: {
436
+ color: "text-2",
437
+ "font-size": "sm",
438
+ "font-weight": "500",
439
+ "text-transform": "uppercase",
440
+ "letter-spacing": "0.05em",
441
+ },
442
+ work_value: {
443
+ color: "text-1",
444
+ "font-weight": "600",
445
+ "margin-top": "xs",
446
+ },
447
+ location_wrapper: {
448
+ display: "flex",
449
+ "flex-direction": "column",
450
+ "row-gap": "xs",
451
+ tablet: {
452
+ "justify-content": "center",
453
+ "align-items": "center",
454
+ },
455
+ mobile: {
456
+ "justify-content": "start",
457
+ "align-items": "start",
458
+ },
459
+ },
460
+ location_header: {
461
+ color: "text-2",
462
+ "font-size": "sm",
463
+ "font-weight": "500",
464
+ "text-transform": "uppercase",
465
+ "letter-spacing": "0.05em",
466
+ },
467
+ location_value: {
468
+ color: "text-1",
469
+ "font-weight": "600",
470
+ "margin-top": "xs",
471
+ },
472
+ cta: {
473
+ "border-width": "0",
474
+ cursor: "pointer",
475
+ display: "flex",
476
+ "column-gap": "none",
477
+ tablet: {
478
+ width: "fit-content",
479
+ "justify-content": "center",
480
+ "align-items": "center",
481
+ "margin-left": "5xl",
482
+ },
483
+ width: "fit-content",
484
+ },
485
+ separator: {
486
+ width: "100%",
487
+ height: "1px",
488
+ "background-color": "border",
489
+ filter: "none",
490
+ },
491
+ cta_rightIcon: {
492
+ height: "24px",
493
+ width: "24px",
494
+ "font-size": "24px",
495
+ "border-radius": "3xl",
496
+ },
497
+ },
498
+ {
499
+ job_item: {
500
+ display: "grid",
501
+ "grid-template-columns": "1fr 1fr 1fr auto",
502
+ "align-items": "start",
503
+ "column-gap": "lg",
504
+ "padding-top": "lg",
505
+ "padding-bottom": "lg",
506
+ tablet: {
507
+ "grid-template-columns": "repeat(4, minmax(0, 1fr))",
508
+ "column-gap": "base",
509
+ },
510
+ mobile: {
511
+ "grid-template-columns": "repeat(2, minmax(0, 1fr))",
512
+ "column-gap": "sm",
513
+ "padding-top": "base",
514
+ "padding-bottom": "base",
515
+ "row-gap": "2xl",
516
+ },
517
+ "border-style": "solid",
518
+ "border-width": "1px",
519
+ "border-radius": "base",
520
+ "padding-left": "2xl",
521
+ "padding-right": "2xl",
522
+ },
523
+ designation_wrapper: {
524
+ display: "flex",
525
+ "flex-direction": "column",
526
+ "row-gap": "xs",
527
+ },
528
+ designation_header: {
529
+ color: "text-2",
530
+ "font-size": "sm",
531
+ "font-weight": "500",
532
+ "text-transform": "uppercase",
533
+ "letter-spacing": "0.05em",
534
+ },
535
+ designation_value: {
536
+ color: "text-1",
537
+ "font-weight": "600",
538
+ "margin-top": "xs",
539
+ },
540
+ work_wrapper: {
541
+ display: "flex",
542
+ "flex-direction": "column",
543
+ "row-gap": "xs",
544
+ tablet: {
545
+ "justify-content": "center",
546
+ "align-items": "center",
547
+ },
548
+ },
549
+ work_header: {
550
+ color: "text-2",
551
+ "font-size": "sm",
552
+ "font-weight": "500",
553
+ "text-transform": "uppercase",
554
+ "letter-spacing": "0.05em",
555
+ },
556
+ work_value: {
557
+ color: "text-1",
558
+ "font-weight": "600",
559
+ "margin-top": "xs",
560
+ },
561
+ location_wrapper: {
562
+ display: "flex",
563
+ "flex-direction": "column",
564
+ "row-gap": "xs",
565
+ tablet: {
566
+ "justify-content": "center",
567
+ "align-items": "center",
568
+ },
569
+ mobile: {
570
+ "justify-content": "start",
571
+ "align-items": "start",
572
+ },
573
+ },
574
+ location_header: {
575
+ color: "text-2",
576
+ "font-size": "sm",
577
+ "font-weight": "500",
578
+ "text-transform": "uppercase",
579
+ "letter-spacing": "0.05em",
580
+ },
581
+ location_value: {
582
+ color: "text-1",
583
+ "font-weight": "600",
584
+ "margin-top": "xs",
585
+ },
586
+ cta: {
587
+ "border-width": "0",
588
+ cursor: "pointer",
589
+ display: "flex",
590
+ "column-gap": "none",
591
+ tablet: {
592
+ width: "fit-content",
593
+ "justify-content": "center",
594
+ "align-items": "center",
595
+ "margin-left": "5xl",
596
+ },
597
+ width: "fit-content",
598
+ },
599
+ separator: {
600
+ width: "100%",
601
+ height: "1px",
602
+ "background-color": "border",
603
+ filter: "none",
604
+ },
605
+ cta_rightIcon: {
606
+ height: "24px",
607
+ width: "24px",
608
+ "font-size": "24px",
609
+ "border-radius": "3xl",
610
+ },
611
+ },
612
+ {
613
+ job_item: {
614
+ display: "grid",
615
+ "grid-template-columns": "1fr 1fr 1fr auto",
616
+ "align-items": "start",
617
+ "column-gap": "lg",
618
+ "padding-top": "lg",
619
+ "padding-bottom": "lg",
620
+ tablet: {
621
+ "grid-template-columns": "repeat(4, minmax(0, 1fr))",
622
+ "column-gap": "base",
623
+ },
624
+ mobile: {
625
+ "grid-template-columns": "repeat(2, minmax(0, 1fr))",
626
+ "column-gap": "sm",
627
+ "padding-top": "base",
628
+ "padding-bottom": "base",
629
+ "row-gap": "2xl",
630
+ },
631
+ "border-style": "solid",
632
+ "border-width": "1px",
633
+ "border-radius": "base",
634
+ "padding-left": "2xl",
635
+ "padding-right": "2xl",
636
+ },
637
+ designation_wrapper: {
638
+ display: "flex",
639
+ "flex-direction": "column",
640
+ "row-gap": "xs",
641
+ },
642
+ designation_header: {
643
+ color: "text-2",
644
+ "font-size": "sm",
645
+ "font-weight": "500",
646
+ "text-transform": "uppercase",
647
+ "letter-spacing": "0.05em",
648
+ },
649
+ designation_value: {
650
+ color: "text-1",
651
+ "font-weight": "600",
652
+ "margin-top": "xs",
653
+ },
654
+ work_wrapper: {
655
+ display: "flex",
656
+ "flex-direction": "column",
657
+ "row-gap": "xs",
658
+ tablet: {
659
+ "justify-content": "center",
660
+ "align-items": "center",
661
+ },
662
+ },
663
+ work_header: {
664
+ color: "text-2",
665
+ "font-size": "sm",
666
+ "font-weight": "500",
667
+ "text-transform": "uppercase",
668
+ "letter-spacing": "0.05em",
669
+ },
670
+ work_value: {
671
+ color: "text-1",
672
+ "font-weight": "600",
673
+ "margin-top": "xs",
674
+ },
675
+ location_wrapper: {
676
+ display: "flex",
677
+ "flex-direction": "column",
678
+ "row-gap": "xs",
679
+ tablet: {
680
+ "justify-content": "center",
681
+ "align-items": "center",
682
+ },
683
+ mobile: {
684
+ "justify-content": "start",
685
+ "align-items": "start",
686
+ },
687
+ },
688
+ location_header: {
689
+ color: "text-2",
690
+ "font-size": "sm",
691
+ "font-weight": "500",
692
+ "text-transform": "uppercase",
693
+ "letter-spacing": "0.05em",
694
+ },
695
+ location_value: {
696
+ color: "text-1",
697
+ "font-weight": "600",
698
+ "margin-top": "xs",
699
+ },
700
+ cta: {
701
+ "border-width": "0",
702
+ cursor: "pointer",
703
+ display: "flex",
704
+ "column-gap": "none",
705
+ tablet: {
706
+ width: "fit-content",
707
+ "justify-content": "center",
708
+ "align-items": "center",
709
+ "margin-left": "5xl",
710
+ },
711
+ width: "fit-content",
712
+ },
713
+ separator: {
714
+ width: "100%",
715
+ height: "1px",
716
+ "background-color": "border",
717
+ filter: "none",
718
+ },
719
+ cta_rightIcon: {
720
+ height: "24px",
721
+ width: "24px",
722
+ "font-size": "24px",
723
+ "border-radius": "3xl",
724
+ },
725
+ },
726
+ {
727
+ job_item: {
728
+ display: "grid",
729
+ "grid-template-columns": "1fr 1fr 1fr auto",
730
+ "align-items": "start",
731
+ "column-gap": "lg",
732
+ "padding-top": "lg",
733
+ "padding-bottom": "lg",
734
+ "border-bottom": "1px solid",
735
+ "border-color": "border",
736
+ tablet: {
737
+ "grid-template-columns": "1fr 1fr auto",
738
+ "column-gap": "base",
739
+ },
740
+ mobile: {
741
+ "grid-template-columns": "1fr auto",
742
+ "column-gap": "sm",
743
+ "padding-top": "base",
744
+ "padding-bottom": "base",
745
+ },
746
+ },
747
+ designation_wrapper: {
748
+ display: "flex",
749
+ "flex-direction": "column",
750
+ "row-gap": "xs",
751
+ },
752
+ designation_header: {
753
+ color: "text-2",
754
+ "font-size": "sm",
755
+ "font-weight": "500",
756
+ "text-transform": "uppercase",
757
+ "letter-spacing": "0.05em",
758
+ },
759
+ designation_value: {
760
+ color: "text-1",
761
+ "font-weight": "600",
762
+ "margin-top": "xs",
763
+ },
764
+ work_wrapper: {
765
+ display: "flex",
766
+ "flex-direction": "column",
767
+ "row-gap": "xs",
768
+ tablet: {
769
+ display: "flex",
770
+ },
771
+ mobile: {
772
+ display: "none",
773
+ },
774
+ },
775
+ work_header: {
776
+ color: "text-2",
777
+ "font-size": "sm",
778
+ "font-weight": "500",
779
+ "text-transform": "uppercase",
780
+ "letter-spacing": "0.05em",
781
+ },
782
+ work_value: {
783
+ color: "text-1",
784
+ "font-weight": "600",
785
+ "margin-top": "xs",
786
+ },
787
+ location_wrapper: {
788
+ display: "flex",
789
+ "flex-direction": "column",
790
+ "row-gap": "xs",
791
+ tablet: {
792
+ display: "none",
793
+ },
794
+ mobile: {
795
+ display: "none",
796
+ },
797
+ },
798
+ location_header: {
799
+ color: "text-2",
800
+ "font-size": "sm",
801
+ "font-weight": "500",
802
+ "text-transform": "uppercase",
803
+ "letter-spacing": "0.05em",
804
+ },
805
+ location_value: {
806
+ color: "text-1",
807
+ "font-weight": "600",
808
+ "margin-top": "xs",
809
+ },
810
+ cta: {
811
+ color: "text-2",
812
+ "background-color": "transparent",
813
+ "border-width": "0",
814
+ "padding-top": "none",
815
+ "padding-bottom": "none",
816
+ "padding-left": "none",
817
+ "padding-right": "none",
818
+ "text-decoration": "none",
819
+ cursor: "pointer",
820
+ "font-size": "lg",
821
+ },
822
+ separator: {
823
+ width: "100%",
824
+ height: "1px",
825
+ "background-color": "border",
826
+ filter: "none",
827
+ },
828
+ },
829
+ {
830
+ job_item: {
831
+ display: "grid",
832
+ "grid-template-columns": "1fr 1fr 1fr auto",
833
+ "align-items": "start",
834
+ "column-gap": "lg",
835
+ "padding-top": "lg",
836
+ "padding-bottom": "lg",
837
+ "border-bottom": "none",
838
+ tablet: {
839
+ "grid-template-columns": "1fr 1fr auto",
840
+ "column-gap": "base",
841
+ },
842
+ mobile: {
843
+ "grid-template-columns": "1fr auto",
844
+ "column-gap": "sm",
845
+ "padding-top": "base",
846
+ "padding-bottom": "base",
847
+ },
848
+ },
849
+ designation_wrapper: {
850
+ display: "flex",
851
+ "flex-direction": "column",
852
+ "row-gap": "xs",
853
+ },
854
+ designation_header: {
855
+ color: "text-2",
856
+ "font-size": "sm",
857
+ "font-weight": "500",
858
+ "text-transform": "uppercase",
859
+ "letter-spacing": "0.05em",
860
+ },
861
+ designation_value: {
862
+ color: "text-1",
863
+ "font-weight": "600",
864
+ "margin-top": "xs",
865
+ },
866
+ work_wrapper: {
867
+ display: "flex",
868
+ "flex-direction": "column",
869
+ "row-gap": "xs",
870
+ tablet: {
871
+ display: "flex",
872
+ },
873
+ mobile: {
874
+ display: "none",
875
+ },
876
+ },
877
+ work_header: {
878
+ color: "text-2",
879
+ "font-size": "sm",
880
+ "font-weight": "500",
881
+ "text-transform": "uppercase",
882
+ "letter-spacing": "0.05em",
883
+ },
884
+ work_value: {
885
+ color: "text-1",
886
+ "font-weight": "600",
887
+ "margin-top": "xs",
888
+ },
889
+ location_wrapper: {
890
+ display: "flex",
891
+ "flex-direction": "column",
892
+ "row-gap": "xs",
893
+ tablet: {
894
+ display: "none",
895
+ },
896
+ mobile: {
897
+ display: "none",
898
+ },
899
+ },
900
+ location_header: {
901
+ color: "text-2",
902
+ "font-size": "sm",
903
+ "font-weight": "500",
904
+ "text-transform": "uppercase",
905
+ "letter-spacing": "0.05em",
906
+ },
907
+ location_value: {
908
+ color: "text-1",
909
+ "font-weight": "600",
910
+ "margin-top": "xs",
911
+ },
912
+ cta: {
913
+ color: "text-2",
914
+ "background-color": "transparent",
915
+ "border-width": "0",
916
+ "padding-top": "none",
917
+ "padding-bottom": "none",
918
+ "padding-left": "none",
919
+ "padding-right": "none",
920
+ "text-decoration": "none",
921
+ cursor: "pointer",
922
+ "font-size": "lg",
923
+ },
924
+ separator: {
925
+ width: "100%",
926
+ height: "1px",
927
+ "background-color": "border",
928
+ filter: "none",
929
+ display: "none",
930
+ },
931
+ },
932
+ ],
933
+ },
934
+ content: DEFAULT_CONTENT,
935
+ config: {
936
+ title: {
937
+ selectedVariants: {
938
+ Heading_Level: "H2",
939
+ },
940
+ },
941
+ },
942
+ },
943
+ ],
944
+ };