@levo-so/blocks 0.1.0 → 0.1.2

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