@levo-so/blocks 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (475) hide show
  1. package/package.json +5 -9
  2. package/src/blocks/about-us/about-us-1.schema.ts +563 -0
  3. package/src/blocks/about-us/about-us-1.tsx +53 -0
  4. package/src/blocks/blogs/blog-listing-1.schema.ts +419 -0
  5. package/src/blocks/blogs/blog-listing-1.tsx +79 -0
  6. package/src/blocks/blogs/blog-listing-2.schema.ts +608 -0
  7. package/src/blocks/blogs/blog-listing-2.tsx +83 -0
  8. package/src/blocks/blogs/blog-post-1.schema.ts +392 -0
  9. package/src/blocks/blogs/blog-post-1.tsx +52 -0
  10. package/src/blocks/blogs/blog-post-2.schema.ts +834 -0
  11. package/src/blocks/blogs/blog-post-2.tsx +131 -0
  12. package/src/blocks/cards/cards-10.schema.ts +433 -0
  13. package/src/blocks/cards/cards-10.tsx +46 -0
  14. package/src/blocks/cards/cards-11.schema.ts +440 -0
  15. package/src/blocks/cards/cards-11.tsx +50 -0
  16. package/src/blocks/cards/cards-12.schema.ts +578 -0
  17. package/src/blocks/cards/cards-12.tsx +54 -0
  18. package/src/blocks/cards/cards-2.schema.ts +293 -0
  19. package/src/blocks/cards/cards-2.tsx +42 -0
  20. package/src/blocks/cards/cards-3.schema.ts +365 -0
  21. package/src/blocks/cards/cards-3.tsx +49 -0
  22. package/src/blocks/cards/cards-4.schema.ts +677 -0
  23. package/src/blocks/cards/cards-4.tsx +50 -0
  24. package/src/blocks/cards/cards-5.schema.ts +264 -0
  25. package/src/blocks/cards/cards-5.tsx +34 -0
  26. package/src/blocks/cards/cards-6.schema.ts +639 -0
  27. package/src/blocks/cards/cards-6.tsx +136 -0
  28. package/src/blocks/cards/cards-7.schema.ts +1793 -0
  29. package/src/blocks/cards/cards-7.tsx +165 -0
  30. package/src/blocks/cards/cards-8.schema.ts +691 -0
  31. package/src/blocks/cards/cards-8.tsx +43 -0
  32. package/src/blocks/cards/cards-9.schema.ts +827 -0
  33. package/src/blocks/cards/cards-9.tsx +54 -0
  34. package/src/blocks/carousel/carousel-1.schema.ts +250 -0
  35. package/src/blocks/carousel/carousel-1.tsx +79 -0
  36. package/src/blocks/contact-us/contact-us-1.schema.ts +226 -0
  37. package/src/blocks/contact-us/contact-us-1.tsx +39 -0
  38. package/src/blocks/contact-us/contact-us-2.schema.ts +524 -0
  39. package/src/blocks/contact-us/contact-us-2.tsx +71 -0
  40. package/src/blocks/content/content-1.schema.ts +884 -0
  41. package/src/blocks/content/content-1.tsx +69 -0
  42. package/src/blocks/content/content-2.schema.ts +209 -0
  43. package/src/blocks/content/content-2.tsx +32 -0
  44. package/src/blocks/content/content-3.schema.ts +864 -0
  45. package/src/blocks/content/content-3.tsx +54 -0
  46. package/src/blocks/content/content-4.schema.ts +287 -0
  47. package/src/blocks/content/content-4.tsx +47 -0
  48. package/src/blocks/content/content-5.schema.ts +944 -0
  49. package/src/blocks/content/content-5.tsx +58 -0
  50. package/src/blocks/content/content-6.schema.ts +991 -0
  51. package/src/blocks/content/content-6.tsx +61 -0
  52. package/src/blocks/cta/cta-1.schema.ts +361 -0
  53. package/src/blocks/cta/cta-1.tsx +33 -0
  54. package/src/blocks/cta/cta-2.schema.ts +209 -0
  55. package/src/blocks/cta/cta-2.tsx +28 -0
  56. package/src/blocks/cta/cta-3.schema.ts +156 -0
  57. package/src/blocks/cta/cta-3.tsx +48 -0
  58. package/src/blocks/embed/embed-1.schema.ts +153 -0
  59. package/src/blocks/embed/embed-1.tsx +38 -0
  60. package/src/blocks/event/event-details.schema.ts +737 -0
  61. package/src/blocks/event/event-details.tsx +107 -0
  62. package/src/blocks/event/event-listing-2.schema.ts +496 -0
  63. package/src/blocks/event/event-listing-2.tsx +70 -0
  64. package/src/blocks/event/event-listing-3.schema.ts +605 -0
  65. package/src/blocks/event/event-listing-3.tsx +95 -0
  66. package/src/blocks/event/event-listing.schema.ts +1358 -0
  67. package/src/blocks/event/event-listing.tsx +90 -0
  68. package/src/blocks/faq/faq-1.schema.ts +357 -0
  69. package/src/blocks/faq/faq-1.tsx +65 -0
  70. package/src/blocks/faq/faq-2.schema.ts +356 -0
  71. package/src/blocks/faq/faq-2.tsx +84 -0
  72. package/src/blocks/faq/faq-3.schema.ts +475 -0
  73. package/src/blocks/faq/faq-3.tsx +70 -0
  74. package/src/blocks/features/features-1/features-1.schema.ts +165 -0
  75. package/src/blocks/features/features-1/features-1.tsx +48 -0
  76. package/src/blocks/features/features-1/variants/default.ts +197 -0
  77. package/{dist/blocks/features/features-1/variants/index.js → src/blocks/features/features-1/variants/index.ts} +7 -1
  78. package/src/blocks/features/features-1/variants/stylized-cards-v1.ts +138 -0
  79. package/src/blocks/features/features-1/variants/stylized-cards-v2.ts +487 -0
  80. package/src/blocks/features/features-2.schema.ts +338 -0
  81. package/src/blocks/features/features-2.tsx +66 -0
  82. package/src/blocks/features/features-3.schema.ts +438 -0
  83. package/src/blocks/features/features-3.tsx +56 -0
  84. package/src/blocks/features/features-4.schema.ts +631 -0
  85. package/src/blocks/features/features-4.tsx +75 -0
  86. package/src/blocks/features/features-5.schema.ts +747 -0
  87. package/src/blocks/features/features-5.tsx +49 -0
  88. package/src/blocks/features/features-6.schema.ts +849 -0
  89. package/src/blocks/features/features-6.tsx +125 -0
  90. package/src/blocks/footer/footer-1.schema.ts +589 -0
  91. package/src/blocks/footer/footer-1.tsx +90 -0
  92. package/src/blocks/footer/footer-2.schema.ts +898 -0
  93. package/src/blocks/footer/footer-2.tsx +77 -0
  94. package/src/blocks/footer/footer-3.schema.ts +487 -0
  95. package/src/blocks/footer/footer-3.tsx +100 -0
  96. package/src/blocks/footer/footer-4.schema.ts +644 -0
  97. package/src/blocks/footer/footer-4.tsx +97 -0
  98. package/src/blocks/footer/footer-5.schema.ts +425 -0
  99. package/src/blocks/footer/footer-5.tsx +91 -0
  100. package/src/blocks/hero/hero-1.schema.ts +766 -0
  101. package/src/blocks/hero/hero-1.tsx +52 -0
  102. package/src/blocks/hero/hero-2.schema.ts +316 -0
  103. package/src/blocks/hero/hero-2.tsx +49 -0
  104. package/src/blocks/hero/hero-3.schema.ts +415 -0
  105. package/src/blocks/hero/hero-3.tsx +50 -0
  106. package/src/blocks/hero/hero-4.schema.ts +325 -0
  107. package/src/blocks/hero/hero-4.tsx +89 -0
  108. package/src/blocks/hero/hero-5.schema.ts +192 -0
  109. package/src/blocks/hero/hero-5.tsx +86 -0
  110. package/src/blocks/hero/hero-6.schema.ts +703 -0
  111. package/src/blocks/hero/hero-6.tsx +62 -0
  112. package/src/blocks/hero/hero-7.schema.ts +508 -0
  113. package/src/blocks/hero/hero-7.tsx +115 -0
  114. package/src/blocks/hero/hero-8.schema.ts +372 -0
  115. package/src/blocks/hero/hero-8.tsx +113 -0
  116. package/src/blocks/hero/hero-9.schema.ts +379 -0
  117. package/src/blocks/hero/hero-9.tsx +49 -0
  118. package/src/blocks/index.ts +78 -0
  119. package/src/blocks/logos/logos-1.schema.ts +264 -0
  120. package/src/blocks/logos/logos-1.tsx +60 -0
  121. package/src/blocks/navbar/navbar-1.schema.ts +961 -0
  122. package/src/blocks/navbar/navbar-1.tsx +398 -0
  123. package/src/blocks/navbar/navbar-2.schema.ts +1226 -0
  124. package/src/blocks/navbar/navbar-2.tsx +417 -0
  125. package/src/blocks/pricing/pricing-1.schema.ts +1002 -0
  126. package/src/blocks/pricing/pricing-1.tsx +88 -0
  127. package/src/blocks/products/products-listing-1.schema.ts +274 -0
  128. package/src/blocks/products/products-listing-1.tsx +48 -0
  129. package/src/blocks/stats/stats-1.schema.ts +231 -0
  130. package/src/blocks/stats/stats-1.tsx +38 -0
  131. package/src/blocks/stats/stats-2.schema.ts +111 -0
  132. package/src/blocks/stats/stats-2.tsx +52 -0
  133. package/src/blocks/stats/variants/default.ts +190 -0
  134. package/src/blocks/stats/variants/hero.ts +153 -0
  135. package/{dist/blocks/stats/variants/index.js → src/blocks/stats/variants/index.ts} +1 -0
  136. package/src/blocks/team/team-1.schema.ts +516 -0
  137. package/src/blocks/team/team-1.tsx +80 -0
  138. package/src/blocks/team/team-2.schema.ts +2813 -0
  139. package/src/blocks/team/team-2.tsx +74 -0
  140. package/src/blocks/team/team-3.schema.ts +707 -0
  141. package/src/blocks/team/team-3.tsx +103 -0
  142. package/src/blocks/termsAndPrivacy/terms-and-conditions-1.schema.ts +168 -0
  143. package/src/blocks/termsAndPrivacy/terms-and-conditions-1.tsx +29 -0
  144. package/src/blocks/testimonial/testimonial-1.schema.ts +345 -0
  145. package/src/blocks/testimonial/testimonial-1.tsx +79 -0
  146. package/src/blocks/testimonial/testimonial-2.schema.ts +816 -0
  147. package/src/blocks/testimonial/testimonial-2.tsx +161 -0
  148. package/src/blocks/testimonial/testimonial-3.schema.ts +279 -0
  149. package/src/blocks/testimonial/testimonial-3.tsx +128 -0
  150. package/src/blocks/testimonial/testimonial-4.schema.ts +3373 -0
  151. package/src/blocks/testimonial/testimonial-4.tsx +202 -0
  152. package/src/blocks/testimonial/testimonial-5.schema.ts +434 -0
  153. package/src/blocks/testimonial/testimonial-5.tsx +106 -0
  154. package/src/blocks/testimonial/testimonial-6.schema.ts +709 -0
  155. package/src/blocks/testimonial/testimonial-6.tsx +128 -0
  156. package/{dist/index.js → src/index.ts} +5 -2
  157. package/{dist/schemas/blocks.js → src/schemas/blocks.ts} +75 -72
  158. package/src/schemas/categories.ts +134 -0
  159. package/src/styles.d.ts +4 -0
  160. package/dist/blocks/about-us/about-us-1.d.ts +0 -5
  161. package/dist/blocks/about-us/about-us-1.js +0 -5
  162. package/dist/blocks/about-us/about-us-1.schema.d.ts +0 -38
  163. package/dist/blocks/about-us/about-us-1.schema.js +0 -537
  164. package/dist/blocks/blogs/blog-listing-1.d.ts +0 -5
  165. package/dist/blocks/blogs/blog-listing-1.js +0 -12
  166. package/dist/blocks/blogs/blog-listing-1.schema.d.ts +0 -59
  167. package/dist/blocks/blogs/blog-listing-1.schema.js +0 -387
  168. package/dist/blocks/blogs/blog-listing-2.d.ts +0 -5
  169. package/dist/blocks/blogs/blog-listing-2.js +0 -9
  170. package/dist/blocks/blogs/blog-listing-2.schema.d.ts +0 -104
  171. package/dist/blocks/blogs/blog-listing-2.schema.js +0 -572
  172. package/dist/blocks/blogs/blog-post-1.d.ts +0 -6
  173. package/dist/blocks/blogs/blog-post-1.js +0 -8
  174. package/dist/blocks/blogs/blog-post-1.schema.d.ts +0 -48
  175. package/dist/blocks/blogs/blog-post-1.schema.js +0 -358
  176. package/dist/blocks/blogs/blog-post-2.d.ts +0 -6
  177. package/dist/blocks/blogs/blog-post-2.js +0 -8
  178. package/dist/blocks/blogs/blog-post-2.schema.d.ts +0 -74
  179. package/dist/blocks/blogs/blog-post-2.schema.js +0 -779
  180. package/dist/blocks/cards/cards-10.d.ts +0 -6
  181. package/dist/blocks/cards/cards-10.js +0 -4
  182. package/dist/blocks/cards/cards-10.schema.d.ts +0 -44
  183. package/dist/blocks/cards/cards-10.schema.js +0 -405
  184. package/dist/blocks/cards/cards-11.d.ts +0 -6
  185. package/dist/blocks/cards/cards-11.js +0 -4
  186. package/dist/blocks/cards/cards-11.schema.d.ts +0 -58
  187. package/dist/blocks/cards/cards-11.schema.js +0 -406
  188. package/dist/blocks/cards/cards-12.d.ts +0 -6
  189. package/dist/blocks/cards/cards-12.js +0 -4
  190. package/dist/blocks/cards/cards-12.schema.d.ts +0 -38
  191. package/dist/blocks/cards/cards-12.schema.js +0 -545
  192. package/dist/blocks/cards/cards-2.d.ts +0 -5
  193. package/dist/blocks/cards/cards-2.js +0 -4
  194. package/dist/blocks/cards/cards-2.schema.d.ts +0 -46
  195. package/dist/blocks/cards/cards-2.schema.js +0 -260
  196. package/dist/blocks/cards/cards-3.d.ts +0 -6
  197. package/dist/blocks/cards/cards-3.js +0 -5
  198. package/dist/blocks/cards/cards-3.schema.d.ts +0 -36
  199. package/dist/blocks/cards/cards-3.schema.js +0 -351
  200. package/dist/blocks/cards/cards-4.d.ts +0 -6
  201. package/dist/blocks/cards/cards-4.js +0 -4
  202. package/dist/blocks/cards/cards-4.schema.d.ts +0 -40
  203. package/dist/blocks/cards/cards-4.schema.js +0 -648
  204. package/dist/blocks/cards/cards-5.d.ts +0 -5
  205. package/dist/blocks/cards/cards-5.js +0 -4
  206. package/dist/blocks/cards/cards-5.schema.d.ts +0 -48
  207. package/dist/blocks/cards/cards-5.schema.js +0 -238
  208. package/dist/blocks/cards/cards-6.d.ts +0 -5
  209. package/dist/blocks/cards/cards-6.js +0 -45
  210. package/dist/blocks/cards/cards-6.schema.d.ts +0 -50
  211. package/dist/blocks/cards/cards-6.schema.js +0 -608
  212. package/dist/blocks/cards/cards-7.d.ts +0 -5
  213. package/dist/blocks/cards/cards-7.js +0 -45
  214. package/dist/blocks/cards/cards-7.schema.d.ts +0 -87
  215. package/dist/blocks/cards/cards-7.schema.js +0 -1732
  216. package/dist/blocks/cards/cards-8.d.ts +0 -6
  217. package/dist/blocks/cards/cards-8.js +0 -4
  218. package/dist/blocks/cards/cards-8.schema.d.ts +0 -40
  219. package/dist/blocks/cards/cards-8.schema.js +0 -660
  220. package/dist/blocks/cards/cards-9.d.ts +0 -5
  221. package/dist/blocks/cards/cards-9.js +0 -4
  222. package/dist/blocks/cards/cards-9.schema.d.ts +0 -55
  223. package/dist/blocks/cards/cards-9.schema.js +0 -798
  224. package/dist/blocks/carousel/carousel-1.d.ts +0 -5
  225. package/dist/blocks/carousel/carousel-1.js +0 -12
  226. package/dist/blocks/carousel/carousel-1.schema.d.ts +0 -51
  227. package/dist/blocks/carousel/carousel-1.schema.js +0 -236
  228. package/dist/blocks/contact-us/contact-us-1.d.ts +0 -5
  229. package/dist/blocks/contact-us/contact-us-1.js +0 -4
  230. package/dist/blocks/contact-us/contact-us-1.schema.d.ts +0 -31
  231. package/dist/blocks/contact-us/contact-us-1.schema.js +0 -202
  232. package/dist/blocks/contact-us/contact-us-2.d.ts +0 -5
  233. package/dist/blocks/contact-us/contact-us-2.js +0 -4
  234. package/dist/blocks/contact-us/contact-us-2.schema.d.ts +0 -59
  235. package/dist/blocks/contact-us/contact-us-2.schema.js +0 -512
  236. package/dist/blocks/content/content-1.d.ts +0 -6
  237. package/dist/blocks/content/content-1.js +0 -4
  238. package/dist/blocks/content/content-1.schema.d.ts +0 -56
  239. package/dist/blocks/content/content-1.schema.js +0 -807
  240. package/dist/blocks/content/content-2.d.ts +0 -5
  241. package/dist/blocks/content/content-2.js +0 -4
  242. package/dist/blocks/content/content-2.schema.d.ts +0 -78
  243. package/dist/blocks/content/content-2.schema.js +0 -200
  244. package/dist/blocks/content/content-3.d.ts +0 -6
  245. package/dist/blocks/content/content-3.js +0 -5
  246. package/dist/blocks/content/content-3.schema.d.ts +0 -23
  247. package/dist/blocks/content/content-3.schema.js +0 -850
  248. package/dist/blocks/content/content-4.d.ts +0 -6
  249. package/dist/blocks/content/content-4.js +0 -6
  250. package/dist/blocks/content/content-4.schema.d.ts +0 -33
  251. package/dist/blocks/content/content-4.schema.js +0 -252
  252. package/dist/blocks/content/content-5.d.ts +0 -6
  253. package/dist/blocks/content/content-5.js +0 -5
  254. package/dist/blocks/content/content-5.schema.d.ts +0 -37
  255. package/dist/blocks/content/content-5.schema.js +0 -932
  256. package/dist/blocks/content/content-6.d.ts +0 -6
  257. package/dist/blocks/content/content-6.js +0 -5
  258. package/dist/blocks/content/content-6.schema.d.ts +0 -41
  259. package/dist/blocks/content/content-6.schema.js +0 -976
  260. package/dist/blocks/cta/cta-1.d.ts +0 -5
  261. package/dist/blocks/cta/cta-1.js +0 -4
  262. package/dist/blocks/cta/cta-1.schema.d.ts +0 -40
  263. package/dist/blocks/cta/cta-1.schema.js +0 -339
  264. package/dist/blocks/cta/cta-2.d.ts +0 -5
  265. package/dist/blocks/cta/cta-2.js +0 -4
  266. package/dist/blocks/cta/cta-2.schema.d.ts +0 -45
  267. package/dist/blocks/cta/cta-2.schema.js +0 -183
  268. package/dist/blocks/cta/cta-3.d.ts +0 -5
  269. package/dist/blocks/cta/cta-3.js +0 -4
  270. package/dist/blocks/cta/cta-3.schema.d.ts +0 -34
  271. package/dist/blocks/cta/cta-3.schema.js +0 -137
  272. package/dist/blocks/embed/embed-1.d.ts +0 -5
  273. package/dist/blocks/embed/embed-1.js +0 -5
  274. package/dist/blocks/embed/embed-1.schema.d.ts +0 -13
  275. package/dist/blocks/embed/embed-1.schema.js +0 -146
  276. package/dist/blocks/event/event-details.d.ts +0 -5
  277. package/dist/blocks/event/event-details.js +0 -9
  278. package/dist/blocks/event/event-details.schema.d.ts +0 -112
  279. package/dist/blocks/event/event-details.schema.js +0 -685
  280. package/dist/blocks/event/event-listing-2.d.ts +0 -5
  281. package/dist/blocks/event/event-listing-2.js +0 -4
  282. package/dist/blocks/event/event-listing-2.schema.d.ts +0 -84
  283. package/dist/blocks/event/event-listing-2.schema.js +0 -455
  284. package/dist/blocks/event/event-listing-3.d.ts +0 -5
  285. package/dist/blocks/event/event-listing-3.js +0 -10
  286. package/dist/blocks/event/event-listing-3.schema.d.ts +0 -77
  287. package/dist/blocks/event/event-listing-3.schema.js +0 -570
  288. package/dist/blocks/event/event-listing.d.ts +0 -5
  289. package/dist/blocks/event/event-listing.js +0 -10
  290. package/dist/blocks/event/event-listing.schema.d.ts +0 -51
  291. package/dist/blocks/event/event-listing.schema.js +0 -1297
  292. package/dist/blocks/faq/faq-1.d.ts +0 -5
  293. package/dist/blocks/faq/faq-1.js +0 -4
  294. package/dist/blocks/faq/faq-1.schema.d.ts +0 -47
  295. package/dist/blocks/faq/faq-1.schema.js +0 -325
  296. package/dist/blocks/faq/faq-2.d.ts +0 -6
  297. package/dist/blocks/faq/faq-2.js +0 -19
  298. package/dist/blocks/faq/faq-2.schema.d.ts +0 -47
  299. package/dist/blocks/faq/faq-2.schema.js +0 -329
  300. package/dist/blocks/faq/faq-3.d.ts +0 -5
  301. package/dist/blocks/faq/faq-3.js +0 -4
  302. package/dist/blocks/faq/faq-3.schema.d.ts +0 -40
  303. package/dist/blocks/faq/faq-3.schema.js +0 -444
  304. package/dist/blocks/features/features-1/features-1.d.ts +0 -5
  305. package/dist/blocks/features/features-1/features-1.js +0 -4
  306. package/dist/blocks/features/features-1/features-1.schema.d.ts +0 -5
  307. package/dist/blocks/features/features-1/features-1.schema.js +0 -142
  308. package/dist/blocks/features/features-1/variants/default.d.ts +0 -37
  309. package/dist/blocks/features/features-1/variants/default.js +0 -185
  310. package/dist/blocks/features/features-1/variants/index.d.ts +0 -5
  311. package/dist/blocks/features/features-1/variants/stylized-cards-v1.d.ts +0 -3
  312. package/dist/blocks/features/features-1/variants/stylized-cards-v1.js +0 -132
  313. package/dist/blocks/features/features-1/variants/stylized-cards-v2.d.ts +0 -3
  314. package/dist/blocks/features/features-1/variants/stylized-cards-v2.js +0 -484
  315. package/dist/blocks/features/features-2.d.ts +0 -5
  316. package/dist/blocks/features/features-2.js +0 -8
  317. package/dist/blocks/features/features-2.schema.d.ts +0 -41
  318. package/dist/blocks/features/features-2.schema.js +0 -321
  319. package/dist/blocks/features/features-3.d.ts +0 -5
  320. package/dist/blocks/features/features-3.js +0 -4
  321. package/dist/blocks/features/features-3.schema.d.ts +0 -40
  322. package/dist/blocks/features/features-3.schema.js +0 -424
  323. package/dist/blocks/features/features-4.d.ts +0 -5
  324. package/dist/blocks/features/features-4.js +0 -4
  325. package/dist/blocks/features/features-4.schema.d.ts +0 -60
  326. package/dist/blocks/features/features-4.schema.js +0 -594
  327. package/dist/blocks/features/features-5.d.ts +0 -6
  328. package/dist/blocks/features/features-5.js +0 -5
  329. package/dist/blocks/features/features-5.schema.d.ts +0 -28
  330. package/dist/blocks/features/features-5.schema.js +0 -727
  331. package/dist/blocks/features/features-6.d.ts +0 -5
  332. package/dist/blocks/features/features-6.js +0 -31
  333. package/dist/blocks/features/features-6.schema.d.ts +0 -74
  334. package/dist/blocks/features/features-6.schema.js +0 -814
  335. package/dist/blocks/footer/footer-1.d.ts +0 -6
  336. package/dist/blocks/footer/footer-1.js +0 -5
  337. package/dist/blocks/footer/footer-1.schema.d.ts +0 -62
  338. package/dist/blocks/footer/footer-1.schema.js +0 -565
  339. package/dist/blocks/footer/footer-2.d.ts +0 -5
  340. package/dist/blocks/footer/footer-2.js +0 -4
  341. package/dist/blocks/footer/footer-2.schema.d.ts +0 -76
  342. package/dist/blocks/footer/footer-2.schema.js +0 -876
  343. package/dist/blocks/footer/footer-3.d.ts +0 -6
  344. package/dist/blocks/footer/footer-3.js +0 -15
  345. package/dist/blocks/footer/footer-3.schema.d.ts +0 -48
  346. package/dist/blocks/footer/footer-3.schema.js +0 -475
  347. package/dist/blocks/footer/footer-4.d.ts +0 -6
  348. package/dist/blocks/footer/footer-4.js +0 -5
  349. package/dist/blocks/footer/footer-4.schema.d.ts +0 -71
  350. package/dist/blocks/footer/footer-4.schema.js +0 -620
  351. package/dist/blocks/footer/footer-5.d.ts +0 -6
  352. package/dist/blocks/footer/footer-5.js +0 -5
  353. package/dist/blocks/footer/footer-5.schema.d.ts +0 -52
  354. package/dist/blocks/footer/footer-5.schema.js +0 -400
  355. package/dist/blocks/hero/hero-1.d.ts +0 -5
  356. package/dist/blocks/hero/hero-1.js +0 -4
  357. package/dist/blocks/hero/hero-1.schema.d.ts +0 -35
  358. package/dist/blocks/hero/hero-1.schema.js +0 -742
  359. package/dist/blocks/hero/hero-2.d.ts +0 -5
  360. package/dist/blocks/hero/hero-2.js +0 -4
  361. package/dist/blocks/hero/hero-2.schema.d.ts +0 -46
  362. package/dist/blocks/hero/hero-2.schema.js +0 -282
  363. package/dist/blocks/hero/hero-3.d.ts +0 -5
  364. package/dist/blocks/hero/hero-3.js +0 -4
  365. package/dist/blocks/hero/hero-3.schema.d.ts +0 -54
  366. package/dist/blocks/hero/hero-3.schema.js +0 -378
  367. package/dist/blocks/hero/hero-4.d.ts +0 -5
  368. package/dist/blocks/hero/hero-4.js +0 -30
  369. package/dist/blocks/hero/hero-4.schema.d.ts +0 -33
  370. package/dist/blocks/hero/hero-4.schema.js +0 -316
  371. package/dist/blocks/hero/hero-5.d.ts +0 -5
  372. package/dist/blocks/hero/hero-5.js +0 -30
  373. package/dist/blocks/hero/hero-5.schema.d.ts +0 -32
  374. package/dist/blocks/hero/hero-5.schema.js +0 -183
  375. package/dist/blocks/hero/hero-6.d.ts +0 -5
  376. package/dist/blocks/hero/hero-6.js +0 -8
  377. package/dist/blocks/hero/hero-6.schema.d.ts +0 -36
  378. package/dist/blocks/hero/hero-6.schema.js +0 -617
  379. package/dist/blocks/hero/hero-7.d.ts +0 -5
  380. package/dist/blocks/hero/hero-7.js +0 -40
  381. package/dist/blocks/hero/hero-7.schema.d.ts +0 -12
  382. package/dist/blocks/hero/hero-7.schema.js +0 -471
  383. package/dist/blocks/hero/hero-8.d.ts +0 -5
  384. package/dist/blocks/hero/hero-8.js +0 -39
  385. package/dist/blocks/hero/hero-8.schema.d.ts +0 -17
  386. package/dist/blocks/hero/hero-8.schema.js +0 -343
  387. package/dist/blocks/hero/hero-9.d.ts +0 -6
  388. package/dist/blocks/hero/hero-9.js +0 -4
  389. package/dist/blocks/hero/hero-9.schema.d.ts +0 -39
  390. package/dist/blocks/hero/hero-9.schema.js +0 -355
  391. package/dist/blocks/index.d.ts +0 -3
  392. package/dist/blocks/index.js +0 -74
  393. package/dist/blocks/logos/logos-1.d.ts +0 -5
  394. package/dist/blocks/logos/logos-1.js +0 -10
  395. package/dist/blocks/logos/logos-1.schema.d.ts +0 -34
  396. package/dist/blocks/logos/logos-1.schema.js +0 -239
  397. package/dist/blocks/navbar/navbar-1.d.ts +0 -6
  398. package/dist/blocks/navbar/navbar-1.js +0 -100
  399. package/dist/blocks/navbar/navbar-1.schema.d.ts +0 -117
  400. package/dist/blocks/navbar/navbar-1.schema.js +0 -938
  401. package/dist/blocks/navbar/navbar-2.d.ts +0 -6
  402. package/dist/blocks/navbar/navbar-2.js +0 -99
  403. package/dist/blocks/navbar/navbar-2.schema.d.ts +0 -134
  404. package/dist/blocks/navbar/navbar-2.schema.js +0 -1200
  405. package/dist/blocks/pricing/pricing-1.d.ts +0 -5
  406. package/dist/blocks/pricing/pricing-1.js +0 -4
  407. package/dist/blocks/pricing/pricing-1.schema.d.ts +0 -87
  408. package/dist/blocks/pricing/pricing-1.schema.js +0 -976
  409. package/dist/blocks/products/products-listing-1.d.ts +0 -5
  410. package/dist/blocks/products/products-listing-1.js +0 -4
  411. package/dist/blocks/products/products-listing-1.schema.d.ts +0 -36
  412. package/dist/blocks/products/products-listing-1.schema.js +0 -264
  413. package/dist/blocks/stats/stats-1.d.ts +0 -6
  414. package/dist/blocks/stats/stats-1.js +0 -6
  415. package/dist/blocks/stats/stats-1.schema.d.ts +0 -25
  416. package/dist/blocks/stats/stats-1.schema.js +0 -213
  417. package/dist/blocks/stats/stats-2.d.ts +0 -6
  418. package/dist/blocks/stats/stats-2.js +0 -6
  419. package/dist/blocks/stats/stats-2.schema.d.ts +0 -5
  420. package/dist/blocks/stats/stats-2.schema.js +0 -104
  421. package/dist/blocks/stats/variants/default.d.ts +0 -22
  422. package/dist/blocks/stats/variants/default.js +0 -185
  423. package/dist/blocks/stats/variants/hero.d.ts +0 -3
  424. package/dist/blocks/stats/variants/hero.js +0 -151
  425. package/dist/blocks/stats/variants/index.d.ts +0 -4
  426. package/dist/blocks/team/team-1.d.ts +0 -6
  427. package/dist/blocks/team/team-1.js +0 -6
  428. package/dist/blocks/team/team-1.schema.d.ts +0 -65
  429. package/dist/blocks/team/team-1.schema.js +0 -476
  430. package/dist/blocks/team/team-2.d.ts +0 -6
  431. package/dist/blocks/team/team-2.js +0 -6
  432. package/dist/blocks/team/team-2.schema.d.ts +0 -52
  433. package/dist/blocks/team/team-2.schema.js +0 -2732
  434. package/dist/blocks/team/team-3.d.ts +0 -5
  435. package/dist/blocks/team/team-3.js +0 -30
  436. package/dist/blocks/team/team-3.schema.d.ts +0 -32
  437. package/dist/blocks/team/team-3.schema.js +0 -679
  438. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.d.ts +0 -6
  439. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.js +0 -4
  440. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.schema.d.ts +0 -14
  441. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.schema.js +0 -154
  442. package/dist/blocks/testimonial/testimonial-1.d.ts +0 -5
  443. package/dist/blocks/testimonial/testimonial-1.js +0 -10
  444. package/dist/blocks/testimonial/testimonial-1.schema.d.ts +0 -16
  445. package/dist/blocks/testimonial/testimonial-1.schema.js +0 -314
  446. package/dist/blocks/testimonial/testimonial-2.d.ts +0 -5
  447. package/dist/blocks/testimonial/testimonial-2.js +0 -42
  448. package/dist/blocks/testimonial/testimonial-2.schema.d.ts +0 -54
  449. package/dist/blocks/testimonial/testimonial-2.schema.js +0 -771
  450. package/dist/blocks/testimonial/testimonial-3.d.ts +0 -5
  451. package/dist/blocks/testimonial/testimonial-3.js +0 -38
  452. package/dist/blocks/testimonial/testimonial-3.schema.d.ts +0 -56
  453. package/dist/blocks/testimonial/testimonial-3.schema.js +0 -260
  454. package/dist/blocks/testimonial/testimonial-4.d.ts +0 -5
  455. package/dist/blocks/testimonial/testimonial-4.js +0 -51
  456. package/dist/blocks/testimonial/testimonial-4.schema.d.ts +0 -145
  457. package/dist/blocks/testimonial/testimonial-4.schema.js +0 -3214
  458. package/dist/blocks/testimonial/testimonial-5.d.ts +0 -5
  459. package/dist/blocks/testimonial/testimonial-5.js +0 -31
  460. package/dist/blocks/testimonial/testimonial-5.schema.d.ts +0 -33
  461. package/dist/blocks/testimonial/testimonial-5.schema.js +0 -401
  462. package/dist/blocks/testimonial/testimonial-6.d.ts +0 -5
  463. package/dist/blocks/testimonial/testimonial-6.js +0 -39
  464. package/dist/blocks/testimonial/testimonial-6.schema.d.ts +0 -60
  465. package/dist/blocks/testimonial/testimonial-6.schema.js +0 -695
  466. package/dist/blocks.d.ts +0 -3
  467. package/dist/blocks.js +0 -74
  468. package/dist/index.d.ts +0 -6
  469. package/dist/schemas/blocks.d.ts +0 -3
  470. package/dist/schemas/categories.d.ts +0 -3
  471. package/dist/schemas/categories.js +0 -129
  472. package/dist/schemas/index.d.ts +0 -3
  473. package/dist/schemas.d.ts +0 -3
  474. package/dist/schemas.js +0 -2
  475. /package/{dist/schemas/index.js → src/schemas/index.ts} +0 -0
@@ -0,0 +1,884 @@
1
+ import type { IBlock } from "@levo-so/studio";
2
+
3
+ const DEFAULT_CONTENT = {
4
+ layout: null,
5
+ container: null,
6
+ header_wrapper: null,
7
+ header_content: null,
8
+ title: "Career Platform Overview",
9
+ description:
10
+ "<p>A fair platform for every student. Our AI-powered network matches college students and freshers with top employers based on skills and interests. Get your first job and kickstart your career with equal opportunity.</p>",
11
+ sections: [
12
+ {
13
+ section: null,
14
+ container: null,
15
+ content_wrapper: null,
16
+ section_content: null,
17
+ tag: "Colleges",
18
+ text_content: null,
19
+ title: "Connect with Verified Employers Instantly",
20
+ description:
21
+ "<p>Provide your students an upskilling platform and diverse job board to increase their hiring opportunities.</p>",
22
+ button: "Learn More",
23
+ image_wrapper: null,
24
+ image_desktop: {
25
+ id: "VbX6m3WedsSB",
26
+ kind: "image",
27
+ location:
28
+ "https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri.webp",
29
+ srcset: {
30
+ "1080w":
31
+ "https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-1080w.webp",
32
+ "1200w":
33
+ "https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-1200w.webp",
34
+ "1920w":
35
+ "https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-1920w.webp",
36
+ "320w":
37
+ "https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-320w.webp",
38
+ "640w":
39
+ "https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-640w.webp",
40
+ "750w":
41
+ "https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-750w.webp",
42
+ "828w":
43
+ "https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-828w.webp",
44
+ path: "https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-320w.webp 320w, https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-640w.webp 640w, https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-828w.webp 828w, https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-750w.webp 750w, https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-1200w.webp 1200w, https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-1080w.webp 1080w, https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-1920w.webp 1920w",
45
+ },
46
+ },
47
+ image_mobile: {
48
+ id: "7141014160938075687",
49
+ location:
50
+ "https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH.png",
51
+ kind: "image",
52
+ mimetype: "image/png",
53
+ srcset: {
54
+ "1080w":
55
+ "https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-1080w.webp",
56
+ "1200w":
57
+ "https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-1200w.webp",
58
+ "1920w":
59
+ "https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-1920w.webp",
60
+ "320w":
61
+ "https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-320w.webp",
62
+ "640w":
63
+ "https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-640w.webp",
64
+ "750w":
65
+ "https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-750w.webp",
66
+ "828w":
67
+ "https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-828w.webp",
68
+ path: "https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-640w.webp 640w, https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-1080w.webp 1080w, https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-1200w.webp 1200w, https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-1920w.webp 1920w, https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-320w.webp 320w, https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-750w.webp 750w, https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-828w.webp 828w",
69
+ },
70
+ },
71
+ },
72
+ {
73
+ section: null,
74
+ container: null,
75
+ content_wrapper: null,
76
+ section_content: null,
77
+ tag: "Colleges",
78
+ text_content: null,
79
+ title: "Connect with Verified Employers Instantly",
80
+ description:
81
+ "<p>Provide your students an upskilling platform and diverse job board to increase their hiring opportunities.</p>",
82
+ button: "Learn More",
83
+ image_wrapper: null,
84
+ image_desktop: {
85
+ id: "VbX6m3WedsSB",
86
+ kind: "image",
87
+ location:
88
+ "https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri.webp",
89
+ srcset: {
90
+ "1080w":
91
+ "https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-1080w.webp",
92
+ "1200w":
93
+ "https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-1200w.webp",
94
+ "1920w":
95
+ "https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-1920w.webp",
96
+ "320w":
97
+ "https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-320w.webp",
98
+ "640w":
99
+ "https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-640w.webp",
100
+ "750w":
101
+ "https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-750w.webp",
102
+ "828w":
103
+ "https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-828w.webp",
104
+ path: "https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-320w.webp 320w, https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-640w.webp 640w, https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-828w.webp 828w, https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-750w.webp 750w, https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-1200w.webp 1200w, https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-1080w.webp 1080w, https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-1920w.webp 1920w",
105
+ },
106
+ },
107
+ image_mobile: {
108
+ id: "7141014160938075687",
109
+ location:
110
+ "https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH.png",
111
+ kind: "image",
112
+ mimetype: "image/png",
113
+ srcset: {
114
+ "1080w":
115
+ "https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-1080w.webp",
116
+ "1200w":
117
+ "https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-1200w.webp",
118
+ "1920w":
119
+ "https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-1920w.webp",
120
+ "320w":
121
+ "https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-320w.webp",
122
+ "640w":
123
+ "https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-640w.webp",
124
+ "750w":
125
+ "https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-750w.webp",
126
+ "828w":
127
+ "https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-828w.webp",
128
+ path: "https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-640w.webp 640w, https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-1080w.webp 1080w, https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-1200w.webp 1200w, https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-1920w.webp 1920w, https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-320w.webp 320w, https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-750w.webp 750w, https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-828w.webp 828w",
129
+ },
130
+ },
131
+ },
132
+ {
133
+ section: null,
134
+ container: null,
135
+ content_wrapper: null,
136
+ section_content: null,
137
+ tag: "Colleges",
138
+ text_content: null,
139
+ title: "Connect with Verified Employers Instantly",
140
+ description:
141
+ "<p>Provide your students an upskilling platform and diverse job board to increase their hiring opportunities.</p>",
142
+ button: "Learn More",
143
+ image_wrapper: null,
144
+ image_desktop: {
145
+ id: "VbX6m3WedsSB",
146
+ kind: "image",
147
+ location:
148
+ "https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri.webp",
149
+ srcset: {
150
+ "1080w":
151
+ "https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-1080w.webp",
152
+ "1200w":
153
+ "https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-1200w.webp",
154
+ "1920w":
155
+ "https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-1920w.webp",
156
+ "320w":
157
+ "https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-320w.webp",
158
+ "640w":
159
+ "https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-640w.webp",
160
+ "750w":
161
+ "https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-750w.webp",
162
+ "828w":
163
+ "https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-828w.webp",
164
+ path: "https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-320w.webp 320w, https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-640w.webp 640w, https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-828w.webp 828w, https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-750w.webp 750w, https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-1200w.webp 1200w, https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-1080w.webp 1080w, https://space.levo.in.net/WZZKMUBH/image-JtayEtmtSQji-1920w-Ncz6XHJr6Lri-1920w.webp 1920w",
165
+ },
166
+ },
167
+ image_mobile: {
168
+ id: "7141014160938075687",
169
+ location:
170
+ "https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH.png",
171
+ kind: "image",
172
+ mimetype: "image/png",
173
+ srcset: {
174
+ "1080w":
175
+ "https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-1080w.webp",
176
+ "1200w":
177
+ "https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-1200w.webp",
178
+ "1920w":
179
+ "https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-1920w.webp",
180
+ "320w":
181
+ "https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-320w.webp",
182
+ "640w":
183
+ "https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-640w.webp",
184
+ "750w":
185
+ "https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-750w.webp",
186
+ "828w":
187
+ "https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-828w.webp",
188
+ path: "https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-640w.webp 640w, https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-1080w.webp 1080w, https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-1200w.webp 1200w, https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-1920w.webp 1920w, https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-320w.webp 320w, https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-750w.webp 750w, https://static.levocdn.com/WLZ1TXTD/defaultblue-tryFJ012mgyH-828w.webp 828w",
189
+ },
190
+ },
191
+ },
192
+ ],
193
+ };
194
+
195
+ export type IContent1Content = typeof DEFAULT_CONTENT;
196
+
197
+ export const Content1: IBlock = {
198
+ category_id: "content",
199
+ title: "Content 1",
200
+ key: "content-1",
201
+ version: "v1",
202
+ prompt_description:
203
+ "Centered headline and description at the top, followed by a split section: large bold heading, supporting text, and button on the left, with a feature graphic or screenshot on the right.",
204
+ content_schema: [
205
+ {
206
+ key: "layout",
207
+ label: "Layout",
208
+ field_interface: "LayoutWidget",
209
+ hint: {
210
+ prompt_description:
211
+ "Provides the overall page layout. Typically, this widget manages spacing and positions for all other content blocks, ensuring proper alignment and whitespace.",
212
+ },
213
+ },
214
+ {
215
+ key: "container",
216
+ label: "Container",
217
+ field_interface: "ContainerWidget",
218
+ hint: {
219
+ prompt_description:
220
+ "Acts as the primary content container, constraining content width and maintaining central alignment for desktop and mobile views.",
221
+ },
222
+ },
223
+ {
224
+ key: "header_wrapper",
225
+ label: "Header Wrapper",
226
+ field_interface: "BoxWidget",
227
+ hint: {
228
+ prompt_description:
229
+ "A wrapper for the header section to apply spacing, background, or layout organization around the main heading and description.",
230
+ },
231
+ },
232
+ {
233
+ key: "header_content",
234
+ label: "Header Content",
235
+ field_interface: "BoxWidget",
236
+ hint: {
237
+ prompt_description:
238
+ "Groups the header title and introductory description, ensuring cohesive vertical alignment and consistent padding.",
239
+ },
240
+ },
241
+ {
242
+ key: "title",
243
+ label: "Title",
244
+ field_interface: "HeadingWidget",
245
+ hint: {
246
+ prompt_description:
247
+ "Main headline introducing the platform. Should be bold, clear, and inviting, conveying the overall purpose in a single line. Tone: aspirational, professional, inclusive.",
248
+ min_characters: 20,
249
+ max_characters: 48,
250
+ },
251
+ },
252
+ {
253
+ key: "description",
254
+ label: "Description",
255
+ field_interface: "TypographyWidget",
256
+ hint: {
257
+ prompt_description:
258
+ "Introductory paragraph explaining the platform’s value proposition for students. Tone: clear, supportive, professional. Should summarize the main features and mission in 1-3 sentences.",
259
+ min_characters: 100,
260
+ max_characters: 240,
261
+ },
262
+ },
263
+ {
264
+ key: "sections",
265
+ label: "Sections",
266
+ kind: "group",
267
+ field_interface: "BoxWidget",
268
+ fields: [
269
+ {
270
+ key: "section",
271
+ label: "Section",
272
+ field_interface: "BoxWidget",
273
+ hint: {
274
+ prompt_description:
275
+ "A single horizontal or vertical section grouping related content and visual elements, such as an info card and an illustration or call-to-action.",
276
+ },
277
+ },
278
+ {
279
+ key: "container",
280
+ label: "Container",
281
+ field_interface: "LayoutWidget",
282
+ hint: {
283
+ prompt_description:
284
+ "Positions this section within the larger layout grid and manages its spacing and alignment.",
285
+ },
286
+ },
287
+ {
288
+ key: "content_wrapper",
289
+ label: "Content Wrapper",
290
+ field_interface: "BoxWidget",
291
+ hint: {
292
+ prompt_description:
293
+ "Encloses the main content portion (left side: tag, title, description, CTA), arranging them vertically for clarity and balance.",
294
+ },
295
+ },
296
+ {
297
+ key: "section_content",
298
+ label: "Section Content",
299
+ field_interface: "BoxWidget",
300
+ hint: {
301
+ prompt_description:
302
+ "Contains both content and accompanying media (e.g., image), ensuring side-by-side or top-bottom stacking as per device.",
303
+ },
304
+ },
305
+ {
306
+ key: "tag",
307
+ label: "Tag",
308
+ field_interface: "TypographyWidget",
309
+ hint: {
310
+ prompt_description:
311
+ "A small label (e.g., 'Colleges') above the section headline, used for categorization or highlighting key audiences. Tone: neutral, informative.",
312
+ min_characters: 4,
313
+ max_characters: 18,
314
+ },
315
+ },
316
+ {
317
+ key: "text_content",
318
+ label: "Text Content",
319
+ field_interface: "BoxWidget",
320
+ hint: {
321
+ prompt_description:
322
+ "Groups the textual components (tag, title, description, button) for precise alignment within the section.",
323
+ },
324
+ },
325
+ {
326
+ key: "title",
327
+ label: "Title",
328
+ field_interface: "HeadingWidget",
329
+ hint: {
330
+ prompt_description:
331
+ "Section headline describing the specific feature or action promoted on this card. Should be persuasive and concise. Tone: energetic, action-oriented.",
332
+ min_characters: 36,
333
+ max_characters: 64,
334
+ },
335
+ },
336
+ {
337
+ key: "description",
338
+ label: "description",
339
+ field_interface: "TypographyWidget",
340
+ hint: {
341
+ prompt_description:
342
+ "A short explanatory paragraph elaborating on the section headline, highlighting benefits and actions for the user. Tone: helpful, encouraging.",
343
+ min_characters: 60,
344
+ max_characters: 160,
345
+ },
346
+ },
347
+ {
348
+ key: "button",
349
+ label: "Button",
350
+ field_interface: "ButtonWidget",
351
+ hint: {
352
+ prompt_description:
353
+ "Primary call-to-action. The button label should encourage deeper engagement or next steps (e.g., 'Learn More'). Tone: direct, concise.",
354
+ min_characters: 6,
355
+ max_characters: 24,
356
+ },
357
+ },
358
+ {
359
+ key: "image_wrapper",
360
+ label: "Image Wrapper",
361
+ field_interface: "BoxWidget",
362
+ hint: {
363
+ prompt_description:
364
+ "Holds the visual card or illustration. Used to control sizing and positioning for images relative to text.",
365
+ },
366
+ },
367
+ {
368
+ key: "image_desktop",
369
+ label: "Image Desktop",
370
+ field_interface: "MediaWidget",
371
+ hint: {
372
+ prompt_description:
373
+ "Main visual illustrating the section’s message for desktop screens. Should clearly show relevant UI mockups, platform features, or value props. Typically landscape, large, and content-rich.",
374
+ orientation: "landscape",
375
+ size: "large",
376
+ usecase: "other",
377
+ },
378
+ },
379
+ {
380
+ key: "image_mobile",
381
+ label: "Image Mobile",
382
+ field_interface: "MediaWidget",
383
+ hint: {
384
+ prompt_description:
385
+ "Mobile-optimized version of the above visual. Should fit smaller screens while maintaining clarity and brand alignment. Landscape or square aspect ratio, medium to large size.",
386
+ orientation: "landscape",
387
+ size: "medium",
388
+ usecase: "other",
389
+ },
390
+ },
391
+ ],
392
+ hint: {
393
+ prompt_description:
394
+ "Repeating sections used to showcase platform features or CTAs with supporting visuals and text. Each card includes a tag, headline, description, action button, and accompanying illustration. Design supports multiple (3 visible) sections.",
395
+ min_items: 1,
396
+ max_items: 6,
397
+ },
398
+ },
399
+ ],
400
+ layouts: [
401
+ {
402
+ key: "default",
403
+ title: "default",
404
+ styles: {
405
+ layout: {
406
+ width: "100%",
407
+ "padding-top": "9xl",
408
+ "padding-bottom": "0",
409
+ "media:max:768px": {
410
+ "padding-top": "7xl",
411
+ "padding-bottom": "0",
412
+ },
413
+ },
414
+ container: {
415
+ width: "100%",
416
+ "margin-left": "auto",
417
+ "margin-right": "auto",
418
+ "padding-right": "3xl",
419
+ "padding-left": "3xl",
420
+ },
421
+ header_wrapper: {
422
+ display: "flex",
423
+ width: "100%",
424
+ "flex-direction": "column",
425
+ },
426
+ header_content: {
427
+ "margin-left": "auto",
428
+ "margin-right": "auto",
429
+ "margin-bottom": "base",
430
+ display: "flex",
431
+ "max-width": "768px",
432
+ "flex-direction": "column",
433
+ "align-items": "center",
434
+ "justify-content": "center",
435
+ "row-gap": "xl",
436
+ "media:min:768px": {
437
+ "margin-bottom": "3xl",
438
+ },
439
+ "media:min:1024px": {
440
+ "margin-bottom": "8xl",
441
+ },
442
+ },
443
+ title: {
444
+ "margin-left": "auto",
445
+ "margin-right": "auto",
446
+ "max-width": "768px",
447
+ "text-align": "center",
448
+ "font-size": "4xl",
449
+ "font-weight": 800,
450
+ color: "text1",
451
+ "media:min:1024px": {
452
+ "font-size": "5xl",
453
+ },
454
+ },
455
+ description: {
456
+ "margin-left": "auto",
457
+ "margin-right": "auto",
458
+ "max-width": "3xl",
459
+ "padding-left": "base",
460
+ "padding-right": "base",
461
+ "text-align": "center",
462
+ "font-size": "base",
463
+ "font-weight": 400,
464
+ "line-height": 1.5,
465
+ color: "text2",
466
+ },
467
+ sections_levoGroup: {
468
+ "margin-top": "3xl",
469
+ display: "flex",
470
+ width: "100%",
471
+ "flex-direction": "column",
472
+ "row-gap": "5xl",
473
+ "media:min:768px": {
474
+ "margin-top": "3xl",
475
+ "row-gap": "0",
476
+ },
477
+ },
478
+ sections: [
479
+ {
480
+ section: {
481
+ "padding-left": "9xl",
482
+ "padding-right": "9xl",
483
+ "padding-top": "9xl",
484
+ "padding-bottom": "9xl",
485
+ "media:max:768px": {
486
+ "padding-left": "3xl",
487
+ "padding-right": "3xl",
488
+ "padding-top": "3xl",
489
+ "padding-bottom": "3xl",
490
+ },
491
+ "media:max:480px": {
492
+ "padding-left": "base",
493
+ "padding-right": "base",
494
+ "padding-top": "base",
495
+ "padding-bottom": "base",
496
+ },
497
+ },
498
+ container: {
499
+ width: "100%",
500
+ "margin-left": "auto",
501
+ "margin-right": "auto",
502
+ "padding-right": "3xl",
503
+ "padding-left": "3xl",
504
+ display: "flex",
505
+ "align-items": "center",
506
+ "column-gap": "sm",
507
+ "row-gap": "sm",
508
+ "flex-direction": "row",
509
+ "media:min:1536px": {
510
+ "padding-right": "12xl",
511
+ "padding-left": "12xl",
512
+ },
513
+ "media:min:768px": {
514
+ "column-gap": "12xl",
515
+ "row-gap": "12xl",
516
+ "padding-left": "10xl",
517
+ "padding-right": "10xl",
518
+ },
519
+ "media:max:480px": {
520
+ "flex-direction": "column-reverse",
521
+ },
522
+ },
523
+ content_wrapper: {
524
+ width: "100%",
525
+ "max-width": "50%",
526
+ flex: "1",
527
+ },
528
+ section_content: {
529
+ "margin-top": "sm",
530
+ "margin-bottom": "sm",
531
+ display: "flex",
532
+ "flex-direction": "column",
533
+ "column-gap": "base",
534
+ "row-gap": "base",
535
+ "media:min:768px": {
536
+ display: "flex",
537
+ "max-width": "448px",
538
+ "column-gap": "3xl",
539
+ "row-gap": "3xl",
540
+ },
541
+ },
542
+ tag: {
543
+ "max-width": "max-content",
544
+ "border-radius": "lg",
545
+ border: "1px solid",
546
+ "border-color": "border",
547
+ "background-color": "background-1",
548
+ "padding-left": "base",
549
+ "padding-right": "base",
550
+ "padding-top": "2xs",
551
+ "padding-bottom": "2xs",
552
+ "font-size": "xs",
553
+ "font-weight": 600,
554
+ color: "text-1",
555
+ },
556
+ text_content: {
557
+ display: "flex",
558
+ "flex-direction": "column",
559
+ "column-gap": "2xs",
560
+ "row-gap": "2xs",
561
+ },
562
+ title: {
563
+ "font-size": "2xl",
564
+ "font-weight": 700,
565
+ color: "text-1",
566
+ "media:min:1024px": {
567
+ "font-size": "4xl",
568
+ },
569
+ },
570
+ description: {
571
+ "font-size": "base",
572
+ "font-weight": 400,
573
+ color: "text-2",
574
+ },
575
+ button: {
576
+ "max-width": "max-content",
577
+ "border-radius": "3xl",
578
+ "padding-left": "xl",
579
+ "padding-right": "xl",
580
+ "padding-top": "base",
581
+ "padding-bottom": "base",
582
+ "font-size": "sm",
583
+ "font-weight": 600,
584
+ },
585
+ image_wrapper: {
586
+ width: "100%",
587
+ "max-width": "50%",
588
+ height: "100%",
589
+ flex: "1",
590
+ },
591
+ image_desktop: {
592
+ height: "100%",
593
+ width: "100%",
594
+ "border-radius": "xl",
595
+ "object-fit": "cover",
596
+ display: "none",
597
+ "media:min:640px": {
598
+ display: "block",
599
+ },
600
+ },
601
+ image_mobile: {
602
+ height: "100%",
603
+ width: "100%",
604
+ "border-radius": "xl",
605
+ "object-fit": "cover",
606
+ display: "block",
607
+ "media:min:640px": {
608
+ display: "none",
609
+ },
610
+ },
611
+ },
612
+ {
613
+ section: {
614
+ "padding-left": "9xl",
615
+ "padding-right": "9xl",
616
+ "padding-top": "9xl",
617
+ "padding-bottom": "9xl",
618
+ "media:max:768px": {
619
+ "padding-left": "3xl",
620
+ "padding-right": "3xl",
621
+ "padding-top": "3xl",
622
+ "padding-bottom": "3xl",
623
+ },
624
+ "media:max:480px": {
625
+ "padding-left": "base",
626
+ "padding-right": "base",
627
+ "padding-top": "base",
628
+ "padding-bottom": "base",
629
+ },
630
+ },
631
+ container: {
632
+ width: "100%",
633
+ "margin-left": "auto",
634
+ "margin-right": "auto",
635
+ "padding-right": "3xl",
636
+ "padding-left": "3xl",
637
+ display: "flex",
638
+ "align-items": "center",
639
+ "column-gap": "sm",
640
+ "row-gap": "sm",
641
+ "flex-direction": "row-reverse",
642
+ "media:min:1536px": {
643
+ "padding-right": "12xl",
644
+ "padding-left": "12xl",
645
+ },
646
+ "media:min:768px": {
647
+ "column-gap": "12xl",
648
+ "row-gap": "12xl",
649
+ "padding-left": "10xl",
650
+ "padding-right": "10xl",
651
+ },
652
+ "media:max:480px": {
653
+ "flex-direction": "column-reverse",
654
+ },
655
+ },
656
+ content_wrapper: {
657
+ width: "100%",
658
+ "max-width": "50%",
659
+ flex: "1",
660
+ },
661
+ section_content: {
662
+ "margin-top": "sm",
663
+ "margin-bottom": "sm",
664
+ display: "flex",
665
+ "flex-direction": "column",
666
+ "column-gap": "base",
667
+ "row-gap": "base",
668
+ "media:min:768px": {
669
+ display: "flex",
670
+ "max-width": "448px",
671
+ "column-gap": "3xl",
672
+ "row-gap": "3xl",
673
+ },
674
+ },
675
+ tag: {
676
+ "max-width": "max-content",
677
+ "border-radius": "lg",
678
+ border: "1px solid",
679
+ "border-color": "border",
680
+ "background-color": "background-1",
681
+ "padding-left": "base",
682
+ "padding-right": "base",
683
+ "padding-top": "2xs",
684
+ "padding-bottom": "2xs",
685
+ "font-size": "xs",
686
+ "font-weight": 600,
687
+ color: "text-1",
688
+ },
689
+ text_content: {
690
+ display: "flex",
691
+ "flex-direction": "column",
692
+ "column-gap": "2xs",
693
+ "row-gap": "2xs",
694
+ },
695
+ title: {
696
+ "font-size": "2xl",
697
+ "font-weight": 700,
698
+ color: "text-1",
699
+ "media:min:1024px": {
700
+ "font-size": "4xl",
701
+ },
702
+ },
703
+ description: {
704
+ "font-size": "base",
705
+ "font-weight": 400,
706
+ color: "text-2",
707
+ },
708
+ button: {
709
+ "max-width": "max-content",
710
+ "border-radius": "3xl",
711
+ "padding-left": "xl",
712
+ "padding-right": "xl",
713
+ "padding-top": "base",
714
+ "padding-bottom": "base",
715
+ "font-size": "sm",
716
+ "font-weight": 600,
717
+ },
718
+ image_wrapper: {
719
+ width: "100%",
720
+ "max-width": "50%",
721
+ height: "100%",
722
+ flex: "1",
723
+ },
724
+ image_desktop: {
725
+ height: "100%",
726
+ width: "100%",
727
+ "border-radius": "xl",
728
+ "object-fit": "cover",
729
+ display: "none",
730
+ "media:min:640px": {
731
+ display: "block",
732
+ },
733
+ },
734
+ image_mobile: {
735
+ height: "100%",
736
+ width: "100%",
737
+ "border-radius": "xl",
738
+ "object-fit": "cover",
739
+ display: "block",
740
+ "media:min:640px": {
741
+ display: "none",
742
+ },
743
+ },
744
+ },
745
+ {
746
+ section: {
747
+ "padding-left": "9xl",
748
+ "padding-right": "9xl",
749
+ "padding-top": "9xl",
750
+ "padding-bottom": "9xl",
751
+ "media:max:768px": {
752
+ "padding-left": "3xl",
753
+ "padding-right": "3xl",
754
+ "padding-top": "3xl",
755
+ "padding-bottom": "3xl",
756
+ },
757
+ "media:max:480px": {
758
+ "padding-left": "base",
759
+ "padding-right": "base",
760
+ "padding-top": "base",
761
+ "padding-bottom": "base",
762
+ },
763
+ },
764
+ container: {
765
+ width: "100%",
766
+ "margin-left": "auto",
767
+ "margin-right": "auto",
768
+ "padding-right": "3xl",
769
+ "padding-left": "3xl",
770
+ display: "flex",
771
+ "align-items": "center",
772
+ "column-gap": "sm",
773
+ "row-gap": "sm",
774
+ "flex-direction": "row",
775
+ "media:min:1536px": {
776
+ "padding-right": "12xl",
777
+ "padding-left": "12xl",
778
+ },
779
+ "media:min:768px": {
780
+ "column-gap": "12xl",
781
+ "row-gap": "12xl",
782
+ "padding-left": "10xl",
783
+ "padding-right": "10xl",
784
+ },
785
+ "media:max:480px": {
786
+ "flex-direction": "column-reverse",
787
+ },
788
+ },
789
+ content_wrapper: {
790
+ width: "100%",
791
+ "max-width": "50%",
792
+ flex: "1",
793
+ },
794
+ section_content: {
795
+ "margin-top": "sm",
796
+ "margin-bottom": "sm",
797
+ display: "flex",
798
+ "flex-direction": "column",
799
+ "column-gap": "base",
800
+ "row-gap": "base",
801
+ "media:min:768px": {
802
+ display: "flex",
803
+ "max-width": "448px",
804
+ "column-gap": "3xl",
805
+ "row-gap": "3xl",
806
+ },
807
+ },
808
+ tag: {
809
+ "max-width": "max-content",
810
+ "border-radius": "lg",
811
+ border: "1px solid",
812
+ "border-color": "border",
813
+ "background-color": "background-1",
814
+ "padding-left": "base",
815
+ "padding-right": "base",
816
+ "padding-top": "2xs",
817
+ "padding-bottom": "2xs",
818
+ "font-size": "xs",
819
+ "font-weight": 600,
820
+ color: "text-1",
821
+ },
822
+ text_content: {
823
+ display: "flex",
824
+ "flex-direction": "column",
825
+ "column-gap": "2xs",
826
+ "row-gap": "2xs",
827
+ },
828
+ title: {
829
+ "font-size": "2xl",
830
+ "font-weight": 700,
831
+ color: "text-1",
832
+ "media:min:1024px": {
833
+ "font-size": "4xl",
834
+ },
835
+ },
836
+ description: {
837
+ "font-size": "base",
838
+ "font-weight": 400,
839
+ color: "text-2",
840
+ },
841
+ button: {
842
+ "max-width": "max-content",
843
+ "border-radius": "3xl",
844
+ "padding-left": "xl",
845
+ "padding-right": "xl",
846
+ "padding-top": "base",
847
+ "padding-bottom": "base",
848
+ "font-size": "sm",
849
+ "font-weight": 600,
850
+ },
851
+ image_wrapper: {
852
+ width: "100%",
853
+ "max-width": "50%",
854
+ height: "100%",
855
+ flex: "1",
856
+ },
857
+ image_desktop: {
858
+ height: "100%",
859
+ width: "100%",
860
+ "border-radius": "xl",
861
+ "object-fit": "cover",
862
+ display: "none",
863
+ "media:min:640px": {
864
+ display: "block",
865
+ },
866
+ },
867
+ image_mobile: {
868
+ height: "100%",
869
+ width: "100%",
870
+ "border-radius": "xl",
871
+ "object-fit": "cover",
872
+ display: "block",
873
+ "media:min:640px": {
874
+ display: "none",
875
+ },
876
+ },
877
+ },
878
+ ],
879
+ },
880
+ content: DEFAULT_CONTENT,
881
+ config: {},
882
+ },
883
+ ],
884
+ };