@levo-so/blocks 0.1.1 → 0.1.52

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