@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,918 @@
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: "Why Choose Us",
8
+ main_description:
9
+ "More than investors — true partners in growth. The difference that sets our venture studio apart.",
10
+ main_wrapper: null,
11
+ left_container: null,
12
+ right_container: null,
13
+ main_image: {
14
+ id: "aytSN3Hg27EV",
15
+ filename: "image.png",
16
+ kind: "image",
17
+ location: "https://static.levostg.online/W6OEVMW8/image-WT0jrEUa9Moq.png",
18
+ srcset: {
19
+ "1080w":
20
+ "https://static.levostg.online/W6OEVMW8/image-WT0jrEUa9Moq-1080w.webp",
21
+ "1200w":
22
+ "https://static.levostg.online/W6OEVMW8/image-WT0jrEUa9Moq-1200w.webp",
23
+ "1920w":
24
+ "https://static.levostg.online/W6OEVMW8/image-WT0jrEUa9Moq-1920w.webp",
25
+ "320w":
26
+ "https://static.levostg.online/W6OEVMW8/image-WT0jrEUa9Moq-320w.webp",
27
+ "640w":
28
+ "https://static.levostg.online/W6OEVMW8/image-WT0jrEUa9Moq-640w.webp",
29
+ "750w":
30
+ "https://static.levostg.online/W6OEVMW8/image-WT0jrEUa9Moq-750w.webp",
31
+ "828w":
32
+ "https://static.levostg.online/W6OEVMW8/image-WT0jrEUa9Moq-828w.webp",
33
+ path: "https://static.levostg.online/W6OEVMW8/image-WT0jrEUa9Moq-1200w.webp 1200w, https://static.levostg.online/W6OEVMW8/image-WT0jrEUa9Moq-1920w.webp 1920w, https://static.levostg.online/W6OEVMW8/image-WT0jrEUa9Moq-320w.webp 320w, https://static.levostg.online/W6OEVMW8/image-WT0jrEUa9Moq-750w.webp 750w, https://static.levostg.online/W6OEVMW8/image-WT0jrEUa9Moq-640w.webp 640w, https://static.levostg.online/W6OEVMW8/image-WT0jrEUa9Moq-828w.webp 828w, https://static.levostg.online/W6OEVMW8/image-WT0jrEUa9Moq-1080w.webp 1080w",
34
+ },
35
+ mimetype: "image/png",
36
+ },
37
+ cards: [
38
+ {
39
+ card: null,
40
+ content_wrapper: null,
41
+ title: "Founder-First Approach",
42
+ description:
43
+ "We don't just invest we partner, guiding entrepreneurs through every stage.",
44
+ icon: {
45
+ kind: "custom",
46
+ data: {
47
+ id: "vxmyzMLxwL34",
48
+ filename: "image.png",
49
+ kind: "image",
50
+ location:
51
+ "https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43.png",
52
+ srcset: {
53
+ "1080w":
54
+ "https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-1080w.webp",
55
+ "1200w":
56
+ "https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-1200w.webp",
57
+ "1920w":
58
+ "https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-1920w.webp",
59
+ "320w":
60
+ "https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-320w.webp",
61
+ "640w":
62
+ "https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-640w.webp",
63
+ "750w":
64
+ "https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-750w.webp",
65
+ "828w":
66
+ "https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-828w.webp",
67
+ path: "https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-1920w.webp 1920w, https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-320w.webp 320w, https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-640w.webp 640w, https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-750w.webp 750w, https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-828w.webp 828w, https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-1080w.webp 1080w, https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-1200w.webp 1200w",
68
+ },
69
+ mimetype: "image/png",
70
+ },
71
+ },
72
+ },
73
+ {
74
+ card: null,
75
+ content_wrapper: null,
76
+ title: "Founder-First Approach",
77
+ description:
78
+ "We don't just invest we partner, guiding entrepreneurs through every stage.",
79
+ icon: {
80
+ kind: "custom",
81
+ data: {
82
+ id: "vxmyzMLxwL34",
83
+ filename: "image.png",
84
+ kind: "image",
85
+ location:
86
+ "https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43.png",
87
+ srcset: {
88
+ "1080w":
89
+ "https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-1080w.webp",
90
+ "1200w":
91
+ "https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-1200w.webp",
92
+ "1920w":
93
+ "https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-1920w.webp",
94
+ "320w":
95
+ "https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-320w.webp",
96
+ "640w":
97
+ "https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-640w.webp",
98
+ "750w":
99
+ "https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-750w.webp",
100
+ "828w":
101
+ "https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-828w.webp",
102
+ path: "https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-1920w.webp 1920w, https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-320w.webp 320w, https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-640w.webp 640w, https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-750w.webp 750w, https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-828w.webp 828w, https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-1080w.webp 1080w, https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-1200w.webp 1200w",
103
+ },
104
+ mimetype: "image/png",
105
+ },
106
+ },
107
+ },
108
+ {
109
+ card: null,
110
+ content_wrapper: null,
111
+ title: "Founder-First Approach",
112
+ description:
113
+ "We don't just invest we partner, guiding entrepreneurs through every stage.",
114
+ icon: {
115
+ kind: "custom",
116
+ data: {
117
+ id: "vxmyzMLxwL34",
118
+ filename: "image.png",
119
+ kind: "image",
120
+ location:
121
+ "https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43.png",
122
+ srcset: {
123
+ "1080w":
124
+ "https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-1080w.webp",
125
+ "1200w":
126
+ "https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-1200w.webp",
127
+ "1920w":
128
+ "https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-1920w.webp",
129
+ "320w":
130
+ "https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-320w.webp",
131
+ "640w":
132
+ "https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-640w.webp",
133
+ "750w":
134
+ "https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-750w.webp",
135
+ "828w":
136
+ "https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-828w.webp",
137
+ path: "https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-1920w.webp 1920w, https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-320w.webp 320w, https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-640w.webp 640w, https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-750w.webp 750w, https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-828w.webp 828w, https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-1080w.webp 1080w, https://static.levostg.online/W6OEVMW8/image-eg6Nl4PISv43-1200w.webp 1200w",
138
+ },
139
+ mimetype: "image/png",
140
+ },
141
+ },
142
+ },
143
+ ],
144
+ };
145
+
146
+ const DEFAULT_CONTENT_VARIANT_1 = {
147
+ layout: null,
148
+ container: null,
149
+ header_section: null,
150
+ main_title: "Extracurricular Activities",
151
+ main_description:
152
+ "More than investors — true partners in growth. The difference that sets our venture studio apart.",
153
+ main_wrapper: null,
154
+ left_container: null,
155
+ right_container: null,
156
+ main_image: {
157
+ id: "tryyEJ6PNnl15",
158
+ filename: "image.png",
159
+ kind: "image",
160
+ location: "https://static.levostg.online/W6OEVMW8/image-JtaUZEUj2dE1t.png",
161
+ srcset: {
162
+ "1080w":
163
+ "https://static.levostg.online/W6OEVMW8/image-JtaUZEUj2dE1t-1080w.webp",
164
+ "1200w":
165
+ "https://static.levostg.online/W6OEVMW8/image-JtaUZEUj2dE1t-1200w.webp",
166
+ "1920w":
167
+ "https://static.levostg.online/W6OEVMW8/image-JtaUZEUj2dE1t-1920w.webp",
168
+ "320w":
169
+ "https://static.levostg.online/W6OEVMW8/image-JtaUZEUj2dE1t-320w.webp",
170
+ "640w":
171
+ "https://static.levostg.online/W6OEVMW8/image-JtaUZEUj2dE1t-640w.webp",
172
+ "750w":
173
+ "https://static.levostg.online/W6OEVMW8/image-JtaUZEUj2dE1t-750w.webp",
174
+ "828w":
175
+ "https://static.levostg.online/W6OEVMW8/image-JtaUZEUj2dE1t-828w.webp",
176
+ path: "https://static.levostg.online/W6OEVMW8/image-JtaUZEUj2dE1t-320w.webp 320w, https://static.levostg.online/W6OEVMW8/image-JtaUZEUj2dE1t-640w.webp 640w, https://static.levostg.online/W6OEVMW8/image-JtaUZEUj2dE1t-828w.webp 828w, https://static.levostg.online/W6OEVMW8/image-JtaUZEUj2dE1t-750w.webp 750w, https://static.levostg.online/W6OEVMW8/image-JtaUZEUj2dE1t-1200w.webp 1200w, https://static.levostg.online/W6OEVMW8/image-JtaUZEUj2dE1t-1080w.webp 1080w, https://static.levostg.online/W6OEVMW8/image-JtaUZEUj2dE1t-1920w.webp 1920w",
177
+ },
178
+ mimetype: "image/png",
179
+ },
180
+ cards: [
181
+ {
182
+ card: null,
183
+ content_wrapper: null,
184
+ title: "<p>Arts &amp; Creativity</p>",
185
+ description:
186
+ "<p>Express ideas through music, dance, drama, and visual arts.</p>",
187
+ icon: {
188
+ kind: "custom",
189
+ data: {
190
+ id: "eg6WHl4on5xv3",
191
+ filename: "image.png",
192
+ kind: "image",
193
+ location:
194
+ "https://static.levostg.online/W6OEVMW8/image-bMZQ9no4MTA3i.png",
195
+ srcset: {
196
+ "1080w":
197
+ "https://static.levostg.online/W6OEVMW8/image-bMZQ9no4MTA3i-1080w.webp",
198
+ "1200w":
199
+ "https://static.levostg.online/W6OEVMW8/image-bMZQ9no4MTA3i-1200w.webp",
200
+ "1920w":
201
+ "https://static.levostg.online/W6OEVMW8/image-bMZQ9no4MTA3i-1920w.webp",
202
+ "320w":
203
+ "https://static.levostg.online/W6OEVMW8/image-bMZQ9no4MTA3i-320w.webp",
204
+ "640w":
205
+ "https://static.levostg.online/W6OEVMW8/image-bMZQ9no4MTA3i-640w.webp",
206
+ "750w":
207
+ "https://static.levostg.online/W6OEVMW8/image-bMZQ9no4MTA3i-750w.webp",
208
+ "828w":
209
+ "https://static.levostg.online/W6OEVMW8/image-bMZQ9no4MTA3i-828w.webp",
210
+ path: "https://static.levostg.online/W6OEVMW8/image-bMZQ9no4MTA3i-640w.webp 640w, https://static.levostg.online/W6OEVMW8/image-bMZQ9no4MTA3i-750w.webp 750w, https://static.levostg.online/W6OEVMW8/image-bMZQ9no4MTA3i-1080w.webp 1080w, https://static.levostg.online/W6OEVMW8/image-bMZQ9no4MTA3i-1200w.webp 1200w, https://static.levostg.online/W6OEVMW8/image-bMZQ9no4MTA3i-1920w.webp 1920w, https://static.levostg.online/W6OEVMW8/image-bMZQ9no4MTA3i-320w.webp 320w, https://static.levostg.online/W6OEVMW8/image-bMZQ9no4MTA3i-828w.webp 828w",
211
+ },
212
+ mimetype: "image/png",
213
+ },
214
+ },
215
+ },
216
+ {
217
+ card: null,
218
+ content_wrapper: null,
219
+ title: "<p>Sports &amp; Fitness</p>",
220
+ description:
221
+ "<p>Express ideas through music, dance, drama, and visual arts.</p>",
222
+ icon: {
223
+ kind: "custom",
224
+ data: {
225
+ id: "2EYwJ5Y1UhEs4",
226
+ filename: "image.png",
227
+ kind: "image",
228
+ location:
229
+ "https://static.levostg.online/W6OEVMW8/image-5AQQtZ4LuiVGh.png",
230
+ srcset: {
231
+ "1080w":
232
+ "https://static.levostg.online/W6OEVMW8/image-5AQQtZ4LuiVGh-1080w.webp",
233
+ "1200w":
234
+ "https://static.levostg.online/W6OEVMW8/image-5AQQtZ4LuiVGh-1200w.webp",
235
+ "1920w":
236
+ "https://static.levostg.online/W6OEVMW8/image-5AQQtZ4LuiVGh-1920w.webp",
237
+ "320w":
238
+ "https://static.levostg.online/W6OEVMW8/image-5AQQtZ4LuiVGh-320w.webp",
239
+ "640w":
240
+ "https://static.levostg.online/W6OEVMW8/image-5AQQtZ4LuiVGh-640w.webp",
241
+ "750w":
242
+ "https://static.levostg.online/W6OEVMW8/image-5AQQtZ4LuiVGh-750w.webp",
243
+ "828w":
244
+ "https://static.levostg.online/W6OEVMW8/image-5AQQtZ4LuiVGh-828w.webp",
245
+ path: "https://static.levostg.online/W6OEVMW8/image-5AQQtZ4LuiVGh-320w.webp 320w, https://static.levostg.online/W6OEVMW8/image-5AQQtZ4LuiVGh-640w.webp 640w, https://static.levostg.online/W6OEVMW8/image-5AQQtZ4LuiVGh-828w.webp 828w, https://static.levostg.online/W6OEVMW8/image-5AQQtZ4LuiVGh-750w.webp 750w, https://static.levostg.online/W6OEVMW8/image-5AQQtZ4LuiVGh-1200w.webp 1200w, https://static.levostg.online/W6OEVMW8/image-5AQQtZ4LuiVGh-1080w.webp 1080w, https://static.levostg.online/W6OEVMW8/image-5AQQtZ4LuiVGh-1920w.webp 1920w",
246
+ },
247
+ mimetype: "image/png",
248
+ },
249
+ },
250
+ },
251
+ {
252
+ card: null,
253
+ content_wrapper: null,
254
+ title: "<p>Community Service</p>",
255
+ description:
256
+ "<p>Express ideas through music, dance, drama, and visual arts.</p>",
257
+ icon: {
258
+ kind: "custom",
259
+ data: {
260
+ id: "Mqne8ygHcjhdt",
261
+ filename: "image.png",
262
+ kind: "image",
263
+ location:
264
+ "https://static.levostg.online/W6OEVMW8/image-uY2MuYb5nGmaa.png",
265
+ srcset: {
266
+ "1080w":
267
+ "https://static.levostg.online/W6OEVMW8/image-uY2MuYb5nGmaa-1080w.webp",
268
+ "1200w":
269
+ "https://static.levostg.online/W6OEVMW8/image-uY2MuYb5nGmaa-1200w.webp",
270
+ "1920w":
271
+ "https://static.levostg.online/W6OEVMW8/image-uY2MuYb5nGmaa-1920w.webp",
272
+ "320w":
273
+ "https://static.levostg.online/W6OEVMW8/image-uY2MuYb5nGmaa-320w.webp",
274
+ "640w":
275
+ "https://static.levostg.online/W6OEVMW8/image-uY2MuYb5nGmaa-640w.webp",
276
+ "750w":
277
+ "https://static.levostg.online/W6OEVMW8/image-uY2MuYb5nGmaa-750w.webp",
278
+ "828w":
279
+ "https://static.levostg.online/W6OEVMW8/image-uY2MuYb5nGmaa-828w.webp",
280
+ path: "https://static.levostg.online/W6OEVMW8/image-uY2MuYb5nGmaa-750w.webp 750w, https://static.levostg.online/W6OEVMW8/image-uY2MuYb5nGmaa-1080w.webp 1080w, https://static.levostg.online/W6OEVMW8/image-uY2MuYb5nGmaa-1200w.webp 1200w, https://static.levostg.online/W6OEVMW8/image-uY2MuYb5nGmaa-1920w.webp 1920w, https://static.levostg.online/W6OEVMW8/image-uY2MuYb5nGmaa-320w.webp 320w, https://static.levostg.online/W6OEVMW8/image-uY2MuYb5nGmaa-640w.webp 640w, https://static.levostg.online/W6OEVMW8/image-uY2MuYb5nGmaa-828w.webp 828w",
281
+ },
282
+ mimetype: "image/png",
283
+ },
284
+ },
285
+ },
286
+ ],
287
+ };
288
+
289
+ export type ICards11Content = typeof DEFAULT_CONTENT;
290
+
291
+ export const Cards11: IBlock = {
292
+ category_id: "cards",
293
+ title: "Cards 11",
294
+ key: "cards-11",
295
+ version: "v1",
296
+ prompt_description:
297
+ "A cards block with header section, content cards on the left with icons, and a main image on the right",
298
+ content_schema: [
299
+ {
300
+ key: "layout",
301
+ label: "Layout",
302
+ field_interface: "LayoutWidget",
303
+ },
304
+ {
305
+ key: "container",
306
+ label: "Container",
307
+ field_interface: "ContainerWidget",
308
+ },
309
+ {
310
+ key: "header_section",
311
+ label: "Header Section",
312
+ field_interface: "LayoutWidget",
313
+ },
314
+ {
315
+ key: "main_title",
316
+ label: "Main Title",
317
+ field_interface: "HeadingWidget",
318
+ },
319
+ {
320
+ key: "main_description",
321
+ label: "Main Description",
322
+ field_interface: "TypographyWidget",
323
+ },
324
+ {
325
+ key: "main_wrapper",
326
+ label: "Main Wrapper",
327
+ field_interface: "LayoutWidget",
328
+ },
329
+ {
330
+ key: "left_container",
331
+ label: "Left Container",
332
+ field_interface: "LayoutWidget",
333
+ },
334
+ {
335
+ key: "right_container",
336
+ label: "Right Container",
337
+ field_interface: "LayoutWidget",
338
+ },
339
+ {
340
+ key: "main_image",
341
+ label: "Main Image",
342
+ field_interface: "ImageWidget",
343
+ },
344
+ {
345
+ key: "cards",
346
+ label: "Cards",
347
+ kind: "group",
348
+ field_interface: "BoxWidget",
349
+ fields: [
350
+ {
351
+ key: "card",
352
+ label: "Card Container",
353
+ field_interface: "LayoutWidget",
354
+ },
355
+ {
356
+ key: "icon",
357
+ label: "Icon",
358
+ field_interface: "IconWidget",
359
+ },
360
+ {
361
+ key: "content_wrapper",
362
+ label: "Content Wrapper",
363
+ field_interface: "LayoutWidget",
364
+ },
365
+ {
366
+ key: "title",
367
+ label: "Title",
368
+ field_interface: "TypographyWidget",
369
+ },
370
+ {
371
+ key: "description",
372
+ label: "Description",
373
+ field_interface: "TypographyWidget",
374
+ },
375
+ ],
376
+ },
377
+ ],
378
+ layouts: [
379
+ {
380
+ key: "default",
381
+ title: "Default",
382
+ styles: {
383
+ layout: {
384
+ "padding-top": "3xl",
385
+ "padding-bottom": "3xl",
386
+ "padding-left": "base",
387
+ "padding-right": "base",
388
+ },
389
+ container: {
390
+ "max-width": "1280px",
391
+ "margin-left": "auto",
392
+ "margin-right": "auto",
393
+ "padding-left": "none",
394
+ "padding-right": "none",
395
+ },
396
+ header_section: {
397
+ "text-align": "center",
398
+ "margin-bottom": "3xl",
399
+ "margin-left": "auto",
400
+ "margin-right": "auto",
401
+ display: "flex",
402
+ "justify-content": "space-between",
403
+ width: "100%",
404
+ tablet: {
405
+ "flex-direction": "column",
406
+ },
407
+ },
408
+ main_description: {
409
+ "font-size": "lg",
410
+ color: "text-2",
411
+ "line-height": "1.6",
412
+ mobile: {
413
+ "font-size": "base",
414
+ },
415
+ },
416
+ main_wrapper: {
417
+ display: "flex",
418
+ "align-items": "center",
419
+ "column-gap": "15xl",
420
+ mobile: {
421
+ "flex-direction": "column",
422
+ "row-gap": "2xl",
423
+ "column-gap": "none",
424
+ },
425
+ tablet: {
426
+ "flex-direction": "column-reverse",
427
+ "row-gap": "5xl",
428
+ },
429
+ },
430
+ left_container: {
431
+ flex: "1",
432
+ },
433
+ right_container: {
434
+ flex: "1",
435
+ display: "flex",
436
+ "justify-content": "center",
437
+ },
438
+ main_image: {
439
+ width: "100%",
440
+ "max-width": "500px",
441
+ height: "auto",
442
+ "border-radius": "lg",
443
+ "object-fit": "cover",
444
+ },
445
+ cards_levoGroup: {
446
+ display: "flex",
447
+ "flex-direction": "column",
448
+ "row-gap": "xl",
449
+ },
450
+ "cards.*.card": {
451
+ display: "flex",
452
+ "align-items": "flex-start",
453
+ "column-gap": "base",
454
+ "padding-top": "lg",
455
+ "padding-bottom": "lg",
456
+ "padding-left": "lg",
457
+ "padding-right": "lg",
458
+ "background-color": "background-2",
459
+ "border-radius": "lg",
460
+ "border-width": "1px",
461
+ "border-color": "border",
462
+ },
463
+ "cards.*.icon": {
464
+ width: "48px",
465
+ height: "48px",
466
+ "border-radius": "sm",
467
+ "object-fit": "cover",
468
+ "flex-shrink": "0",
469
+ },
470
+ "cards.*.content_wrapper": {
471
+ flex: "1",
472
+ },
473
+ "cards.*.title": {
474
+ "font-size": "xl",
475
+ "font-weight": "600",
476
+ "margin-bottom": "xs",
477
+ color: "text-1",
478
+ },
479
+ "cards.*.description": {
480
+ "font-size": "base",
481
+ color: "text-2",
482
+ "line-height": "1.5",
483
+ },
484
+ cards: [
485
+ {
486
+ card: {
487
+ "background-color": "brandSecondary",
488
+ "padding-top": "3xl",
489
+ "padding-right": "3xl",
490
+ "padding-left": "3xl",
491
+ "padding-bottom": "3xl",
492
+ "border-radius": "base",
493
+ display: "flex",
494
+ "column-gap": "sm",
495
+ },
496
+ icon: {
497
+ height: "34px",
498
+ width: "34px",
499
+ "font-size": "34px",
500
+ },
501
+ content_wrapper: {
502
+ display: "flex",
503
+ "flex-direction": "column",
504
+ "row-gap": "sm",
505
+ },
506
+ title: {
507
+ tablet: {
508
+ "font-size": "2xl",
509
+ },
510
+ "font-size": "2xl",
511
+ mobile: {
512
+ "font-size": "lg",
513
+ },
514
+ },
515
+ },
516
+ {
517
+ card: {
518
+ "background-color": "brandSecondary",
519
+ "padding-top": "3xl",
520
+ "padding-right": "3xl",
521
+ "padding-left": "3xl",
522
+ "padding-bottom": "3xl",
523
+ "border-radius": "base",
524
+ display: "flex",
525
+ "column-gap": "sm",
526
+ },
527
+ icon: {
528
+ height: "34px",
529
+ width: "34px",
530
+ "font-size": "34px",
531
+ },
532
+ content_wrapper: {
533
+ display: "flex",
534
+ "flex-direction": "column",
535
+ "row-gap": "sm",
536
+ },
537
+ title: {
538
+ "font-size": "2xl",
539
+ tablet: {
540
+ "font-size": "2xl",
541
+ },
542
+ mobile: {
543
+ "font-size": "lg",
544
+ },
545
+ },
546
+ },
547
+ {
548
+ card: {
549
+ "background-color": "brandSecondary",
550
+ "padding-top": "3xl",
551
+ "padding-right": "3xl",
552
+ "padding-left": "3xl",
553
+ "padding-bottom": "3xl",
554
+ "border-radius": "base",
555
+ display: "flex",
556
+ "column-gap": "sm",
557
+ },
558
+ icon: {
559
+ height: "34px",
560
+ width: "34px",
561
+ "font-size": "34px",
562
+ },
563
+ content_wrapper: {
564
+ display: "flex",
565
+ "flex-direction": "column",
566
+ "row-gap": "sm",
567
+ },
568
+ title: {
569
+ "font-size": "2xl",
570
+ tablet: {
571
+ "font-size": "2xl",
572
+ },
573
+ mobile: {
574
+ "font-size": "lg",
575
+ },
576
+ },
577
+ },
578
+ ],
579
+ },
580
+ content: DEFAULT_CONTENT,
581
+ config: {
582
+ main_title: {
583
+ selectedVariants: {
584
+ Heading_Level: "H2",
585
+ },
586
+ },
587
+ },
588
+ },
589
+ {
590
+ key: "variant-1",
591
+ title: "Variant 1",
592
+ styles: {
593
+ layout: {
594
+ "padding-top": "3xl",
595
+ "padding-bottom": "3xl",
596
+ "padding-left": "base",
597
+ "padding-right": "base",
598
+ },
599
+ container: {
600
+ "max-width": "1280px",
601
+ "margin-left": "auto",
602
+ "margin-right": "auto",
603
+ "padding-left": "none",
604
+ "padding-right": "none",
605
+ },
606
+ header_section: {
607
+ "text-align": "center",
608
+ "margin-bottom": "3xl",
609
+ "margin-left": "auto",
610
+ "margin-right": "auto",
611
+ display: "block",
612
+ "justify-content": "center",
613
+ width: "100%",
614
+ tablet: {
615
+ "flex-direction": "column",
616
+ },
617
+ "align-items": "center",
618
+ },
619
+ main_description: {
620
+ "font-size": "lg",
621
+ color: "text-2",
622
+ "line-height": "1.6",
623
+ mobile: {
624
+ "font-size": "base",
625
+ },
626
+ display: "none",
627
+ },
628
+ main_wrapper: {
629
+ display: "flex",
630
+ "align-items": "center",
631
+ "column-gap": "15xl",
632
+ mobile: {
633
+ "flex-direction": "column",
634
+ "row-gap": "2xl",
635
+ "column-gap": "none",
636
+ },
637
+ tablet: {
638
+ "flex-direction": "column-reverse",
639
+ "row-gap": "5xl",
640
+ },
641
+ },
642
+ left_container: {
643
+ flex: "1",
644
+ },
645
+ right_container: {
646
+ flex: "1",
647
+ display: "flex",
648
+ "justify-content": "center",
649
+ },
650
+ main_image: {
651
+ width: "100%",
652
+ height: "auto",
653
+ "border-radius": "lg",
654
+ "object-fit": "cover",
655
+ },
656
+ cards_levoGroup: {
657
+ display: "flex",
658
+ "flex-direction": "column",
659
+ "row-gap": "xl",
660
+ },
661
+ "cards.*.card": {
662
+ display: "flex",
663
+ "align-items": "flex-start",
664
+ "column-gap": "base",
665
+ "padding-top": "lg",
666
+ "padding-bottom": "lg",
667
+ "padding-left": "lg",
668
+ "padding-right": "lg",
669
+ "background-color": "background-2",
670
+ "border-radius": "lg",
671
+ "border-width": "1px",
672
+ "border-color": "border",
673
+ },
674
+ "cards.*.icon": {
675
+ width: "48px",
676
+ height: "48px",
677
+ "border-radius": "sm",
678
+ "object-fit": "cover",
679
+ "flex-shrink": "0",
680
+ },
681
+ "cards.*.content_wrapper": {
682
+ flex: "1",
683
+ },
684
+ "cards.*.title": {
685
+ "font-size": "xl",
686
+ "font-weight": "600",
687
+ "margin-bottom": "xs",
688
+ color: "text-1",
689
+ },
690
+ "cards.*.description": {
691
+ "font-size": "base",
692
+ color: "text-2",
693
+ "line-height": "1.5",
694
+ },
695
+ cards: [
696
+ {
697
+ card: {
698
+ "padding-top": "none",
699
+ "padding-right": "3xl",
700
+ "padding-left": "3xl",
701
+ "padding-bottom": "base",
702
+ display: "flex",
703
+ "column-gap": "sm",
704
+ "border-bottom": "1px solid #D9D9D9",
705
+ },
706
+ icon: {
707
+ height: "34px",
708
+ width: "34px",
709
+ "font-size": "34px",
710
+ },
711
+ content_wrapper: {
712
+ display: "flex",
713
+ "flex-direction": "column",
714
+ "row-gap": "sm",
715
+ },
716
+ title: {
717
+ tablet: {
718
+ "font-size": "2xl",
719
+ },
720
+ "font-size": "2xl",
721
+ mobile: {
722
+ "font-size": "lg",
723
+ },
724
+ },
725
+ },
726
+ {
727
+ card: {
728
+ "padding-top": "none",
729
+ "padding-right": "3xl",
730
+ "padding-left": "3xl",
731
+ "padding-bottom": "base",
732
+ display: "flex",
733
+ "column-gap": "sm",
734
+ "border-bottom": "1px solid #D9D9D9",
735
+ },
736
+ icon: {
737
+ height: "34px",
738
+ width: "34px",
739
+ "font-size": "34px",
740
+ },
741
+ content_wrapper: {
742
+ display: "flex",
743
+ "flex-direction": "column",
744
+ "row-gap": "sm",
745
+ },
746
+ title: {
747
+ tablet: {
748
+ "font-size": "2xl",
749
+ },
750
+ "font-size": "2xl",
751
+ mobile: {
752
+ "font-size": "lg",
753
+ },
754
+ },
755
+ },
756
+ {
757
+ card: {
758
+ "padding-top": "none",
759
+ "padding-right": "3xl",
760
+ "padding-left": "3xl",
761
+ "padding-bottom": "none",
762
+ "border-radius": "base",
763
+ display: "flex",
764
+ "column-gap": "sm",
765
+ },
766
+ icon: {
767
+ height: "34px",
768
+ width: "34px",
769
+ "font-size": "34px",
770
+ },
771
+ content_wrapper: {
772
+ display: "flex",
773
+ "flex-direction": "column",
774
+ "row-gap": "sm",
775
+ },
776
+ title: {
777
+ tablet: {
778
+ "font-size": "2xl",
779
+ },
780
+ "font-size": "2xl",
781
+ mobile: {
782
+ "font-size": "lg",
783
+ },
784
+ },
785
+ },
786
+ {
787
+ card: {
788
+ "padding-top": "3xl",
789
+ "padding-right": "3xl",
790
+ "padding-left": "3xl",
791
+ "padding-bottom": "3xl",
792
+ "border-radius": "base",
793
+ display: "flex",
794
+ "column-gap": "sm",
795
+ },
796
+ icon: {
797
+ height: "34px",
798
+ width: "34px",
799
+ "font-size": "34px",
800
+ },
801
+ content_wrapper: {
802
+ display: "flex",
803
+ "flex-direction": "column",
804
+ "row-gap": "sm",
805
+ },
806
+ title: {
807
+ tablet: {
808
+ "font-size": "2xl",
809
+ },
810
+ "font-size": "2xl",
811
+ mobile: {
812
+ "font-size": "lg",
813
+ },
814
+ },
815
+ },
816
+ {
817
+ card: {
818
+ "padding-top": "3xl",
819
+ "padding-right": "3xl",
820
+ "padding-left": "3xl",
821
+ "padding-bottom": "3xl",
822
+ "border-radius": "base",
823
+ display: "flex",
824
+ "column-gap": "sm",
825
+ },
826
+ icon: {
827
+ height: "34px",
828
+ width: "34px",
829
+ "font-size": "34px",
830
+ },
831
+ content_wrapper: {
832
+ display: "flex",
833
+ "flex-direction": "column",
834
+ "row-gap": "sm",
835
+ },
836
+ title: {
837
+ tablet: {
838
+ "font-size": "2xl",
839
+ },
840
+ "font-size": "2xl",
841
+ mobile: {
842
+ "font-size": "lg",
843
+ },
844
+ },
845
+ },
846
+ {
847
+ card: {
848
+ "padding-top": "3xl",
849
+ "padding-right": "3xl",
850
+ "padding-left": "3xl",
851
+ "padding-bottom": "3xl",
852
+ "border-radius": "base",
853
+ display: "flex",
854
+ "column-gap": "sm",
855
+ },
856
+ icon: {
857
+ height: "34px",
858
+ width: "34px",
859
+ "font-size": "34px",
860
+ },
861
+ content_wrapper: {
862
+ display: "flex",
863
+ "flex-direction": "column",
864
+ "row-gap": "sm",
865
+ },
866
+ title: {
867
+ "font-size": "2xl",
868
+ tablet: {
869
+ "font-size": "2xl",
870
+ },
871
+ mobile: {
872
+ "font-size": "lg",
873
+ },
874
+ },
875
+ },
876
+ {
877
+ card: {
878
+ "padding-top": "3xl",
879
+ "padding-right": "3xl",
880
+ "padding-left": "3xl",
881
+ "padding-bottom": "3xl",
882
+ "border-radius": "base",
883
+ display: "flex",
884
+ "column-gap": "sm",
885
+ },
886
+ icon: {
887
+ height: "34px",
888
+ width: "34px",
889
+ "font-size": "34px",
890
+ },
891
+ content_wrapper: {
892
+ display: "flex",
893
+ "flex-direction": "column",
894
+ "row-gap": "sm",
895
+ },
896
+ title: {
897
+ "font-size": "2xl",
898
+ tablet: {
899
+ "font-size": "2xl",
900
+ },
901
+ mobile: {
902
+ "font-size": "lg",
903
+ },
904
+ },
905
+ },
906
+ ],
907
+ },
908
+ content: DEFAULT_CONTENT_VARIANT_1,
909
+ config: {
910
+ main_title: {
911
+ selectedVariants: {
912
+ Heading_Level: "H2",
913
+ },
914
+ },
915
+ },
916
+ },
917
+ ],
918
+ };