@levo-so/blocks 0.1.0 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (471) hide show
  1. package/package.json +5 -9
  2. package/src/blocks/about-us/about-us-1.schema.ts +563 -0
  3. package/src/blocks/about-us/about-us-1.tsx +53 -0
  4. package/src/blocks/blogs/blog-listing-1.schema.ts +419 -0
  5. package/src/blocks/blogs/blog-listing-1.tsx +79 -0
  6. package/src/blocks/blogs/blog-listing-2.schema.ts +608 -0
  7. package/src/blocks/blogs/blog-listing-2.tsx +83 -0
  8. package/src/blocks/blogs/blog-post-1.schema.ts +392 -0
  9. package/src/blocks/blogs/blog-post-1.tsx +52 -0
  10. package/src/blocks/blogs/blog-post-2.schema.ts +834 -0
  11. package/src/blocks/blogs/blog-post-2.tsx +131 -0
  12. package/src/blocks/cards/cards-10.schema.ts +433 -0
  13. package/src/blocks/cards/cards-10.tsx +46 -0
  14. package/src/blocks/cards/cards-11.schema.ts +440 -0
  15. package/src/blocks/cards/cards-11.tsx +50 -0
  16. package/src/blocks/cards/cards-12.schema.ts +578 -0
  17. package/src/blocks/cards/cards-12.tsx +54 -0
  18. package/src/blocks/cards/cards-2.schema.ts +293 -0
  19. package/src/blocks/cards/cards-2.tsx +42 -0
  20. package/src/blocks/cards/cards-3.schema.ts +365 -0
  21. package/src/blocks/cards/cards-3.tsx +49 -0
  22. package/src/blocks/cards/cards-4.schema.ts +677 -0
  23. package/src/blocks/cards/cards-4.tsx +50 -0
  24. package/src/blocks/cards/cards-5.schema.ts +264 -0
  25. package/src/blocks/cards/cards-5.tsx +34 -0
  26. package/src/blocks/cards/cards-6.schema.ts +639 -0
  27. package/src/blocks/cards/cards-6.tsx +136 -0
  28. package/src/blocks/cards/cards-7.schema.ts +1793 -0
  29. package/src/blocks/cards/cards-7.tsx +165 -0
  30. package/src/blocks/cards/cards-8.schema.ts +691 -0
  31. package/src/blocks/cards/cards-8.tsx +43 -0
  32. package/src/blocks/cards/cards-9.schema.ts +827 -0
  33. package/src/blocks/cards/cards-9.tsx +54 -0
  34. package/src/blocks/carousel/carousel-1.schema.ts +250 -0
  35. package/src/blocks/carousel/carousel-1.tsx +79 -0
  36. package/src/blocks/contact-us/contact-us-1.schema.ts +226 -0
  37. package/src/blocks/contact-us/contact-us-1.tsx +39 -0
  38. package/src/blocks/contact-us/contact-us-2.schema.ts +524 -0
  39. package/src/blocks/contact-us/contact-us-2.tsx +71 -0
  40. package/src/blocks/content/content-1.schema.ts +884 -0
  41. package/src/blocks/content/content-1.tsx +69 -0
  42. package/src/blocks/content/content-2.schema.ts +209 -0
  43. package/src/blocks/content/content-2.tsx +32 -0
  44. package/src/blocks/content/content-3.schema.ts +864 -0
  45. package/src/blocks/content/content-3.tsx +54 -0
  46. package/src/blocks/content/content-4.schema.ts +287 -0
  47. package/src/blocks/content/content-4.tsx +47 -0
  48. package/src/blocks/content/content-5.schema.ts +944 -0
  49. package/src/blocks/content/content-5.tsx +58 -0
  50. package/src/blocks/content/content-6.schema.ts +991 -0
  51. package/src/blocks/content/content-6.tsx +61 -0
  52. package/src/blocks/cta/cta-1.schema.ts +361 -0
  53. package/src/blocks/cta/cta-1.tsx +33 -0
  54. package/src/blocks/cta/cta-2.schema.ts +209 -0
  55. package/src/blocks/cta/cta-2.tsx +28 -0
  56. package/src/blocks/cta/cta-3.schema.ts +156 -0
  57. package/src/blocks/cta/cta-3.tsx +48 -0
  58. package/src/blocks/embed/embed-1.schema.ts +153 -0
  59. package/src/blocks/embed/embed-1.tsx +38 -0
  60. package/src/blocks/event/event-details.schema.ts +737 -0
  61. package/src/blocks/event/event-details.tsx +107 -0
  62. package/src/blocks/event/event-listing-2.schema.ts +496 -0
  63. package/src/blocks/event/event-listing-2.tsx +70 -0
  64. package/src/blocks/event/event-listing-3.schema.ts +605 -0
  65. package/src/blocks/event/event-listing-3.tsx +95 -0
  66. package/src/blocks/event/event-listing.schema.ts +1358 -0
  67. package/src/blocks/event/event-listing.tsx +90 -0
  68. package/src/blocks/faq/faq-1.schema.ts +357 -0
  69. package/src/blocks/faq/faq-1.tsx +65 -0
  70. package/src/blocks/faq/faq-2.schema.ts +356 -0
  71. package/src/blocks/faq/faq-2.tsx +84 -0
  72. package/src/blocks/faq/faq-3.schema.ts +475 -0
  73. package/src/blocks/faq/faq-3.tsx +70 -0
  74. package/src/blocks/features/features-1/features-1.schema.ts +165 -0
  75. package/src/blocks/features/features-1/features-1.tsx +48 -0
  76. package/src/blocks/features/features-1/variants/default.ts +197 -0
  77. package/{dist/blocks/features/features-1/variants/index.js → src/blocks/features/features-1/variants/index.ts} +7 -1
  78. package/src/blocks/features/features-1/variants/stylized-cards-v1.ts +138 -0
  79. package/src/blocks/features/features-1/variants/stylized-cards-v2.ts +487 -0
  80. package/src/blocks/features/features-2.schema.ts +338 -0
  81. package/src/blocks/features/features-2.tsx +66 -0
  82. package/src/blocks/features/features-3.schema.ts +438 -0
  83. package/src/blocks/features/features-3.tsx +56 -0
  84. package/src/blocks/features/features-4.schema.ts +631 -0
  85. package/src/blocks/features/features-4.tsx +75 -0
  86. package/src/blocks/features/features-5.schema.ts +747 -0
  87. package/src/blocks/features/features-5.tsx +49 -0
  88. package/src/blocks/features/features-6.schema.ts +849 -0
  89. package/src/blocks/features/features-6.tsx +125 -0
  90. package/src/blocks/footer/footer-1.schema.ts +589 -0
  91. package/src/blocks/footer/footer-1.tsx +90 -0
  92. package/src/blocks/footer/footer-2.schema.ts +898 -0
  93. package/src/blocks/footer/footer-2.tsx +77 -0
  94. package/src/blocks/footer/footer-3.schema.ts +487 -0
  95. package/src/blocks/footer/footer-3.tsx +100 -0
  96. package/src/blocks/footer/footer-4.schema.ts +644 -0
  97. package/src/blocks/footer/footer-4.tsx +97 -0
  98. package/src/blocks/footer/footer-5.schema.ts +425 -0
  99. package/src/blocks/footer/footer-5.tsx +91 -0
  100. package/src/blocks/hero/hero-1.schema.ts +766 -0
  101. package/src/blocks/hero/hero-1.tsx +52 -0
  102. package/src/blocks/hero/hero-2.schema.ts +316 -0
  103. package/src/blocks/hero/hero-2.tsx +49 -0
  104. package/src/blocks/hero/hero-3.schema.ts +415 -0
  105. package/src/blocks/hero/hero-3.tsx +50 -0
  106. package/src/blocks/hero/hero-4.schema.ts +325 -0
  107. package/src/blocks/hero/hero-4.tsx +89 -0
  108. package/src/blocks/hero/hero-5.schema.ts +192 -0
  109. package/src/blocks/hero/hero-5.tsx +86 -0
  110. package/src/blocks/hero/hero-6.schema.ts +703 -0
  111. package/src/blocks/hero/hero-6.tsx +62 -0
  112. package/src/blocks/hero/hero-7.schema.ts +508 -0
  113. package/src/blocks/hero/hero-7.tsx +115 -0
  114. package/src/blocks/hero/hero-8.schema.ts +372 -0
  115. package/src/blocks/hero/hero-8.tsx +113 -0
  116. package/src/blocks/hero/hero-9.schema.ts +379 -0
  117. package/src/blocks/hero/hero-9.tsx +49 -0
  118. package/src/blocks/index.ts +78 -0
  119. package/src/blocks/logos/logos-1.schema.ts +264 -0
  120. package/src/blocks/logos/logos-1.tsx +60 -0
  121. package/src/blocks/navbar/navbar-1.schema.ts +961 -0
  122. package/src/blocks/navbar/navbar-1.tsx +398 -0
  123. package/src/blocks/navbar/navbar-2.schema.ts +1226 -0
  124. package/src/blocks/navbar/navbar-2.tsx +417 -0
  125. package/src/blocks/pricing/pricing-1.schema.ts +1002 -0
  126. package/src/blocks/pricing/pricing-1.tsx +88 -0
  127. package/src/blocks/products/products-listing-1.schema.ts +274 -0
  128. package/src/blocks/products/products-listing-1.tsx +48 -0
  129. package/src/blocks/stats/stats-1.schema.ts +231 -0
  130. package/src/blocks/stats/stats-1.tsx +38 -0
  131. package/src/blocks/stats/stats-2.schema.ts +111 -0
  132. package/src/blocks/stats/stats-2.tsx +52 -0
  133. package/src/blocks/stats/variants/default.ts +190 -0
  134. package/src/blocks/stats/variants/hero.ts +153 -0
  135. package/{dist/blocks/stats/variants/index.js → src/blocks/stats/variants/index.ts} +1 -0
  136. package/src/blocks/team/team-1.schema.ts +516 -0
  137. package/src/blocks/team/team-1.tsx +80 -0
  138. package/src/blocks/team/team-2.schema.ts +2813 -0
  139. package/src/blocks/team/team-2.tsx +74 -0
  140. package/src/blocks/team/team-3.schema.ts +707 -0
  141. package/src/blocks/team/team-3.tsx +103 -0
  142. package/src/blocks/termsAndPrivacy/terms-and-conditions-1.schema.ts +168 -0
  143. package/src/blocks/termsAndPrivacy/terms-and-conditions-1.tsx +29 -0
  144. package/src/blocks/testimonial/testimonial-1.schema.ts +345 -0
  145. package/src/blocks/testimonial/testimonial-1.tsx +79 -0
  146. package/src/blocks/testimonial/testimonial-2.schema.ts +816 -0
  147. package/src/blocks/testimonial/testimonial-2.tsx +161 -0
  148. package/src/blocks/testimonial/testimonial-3.schema.ts +279 -0
  149. package/src/blocks/testimonial/testimonial-3.tsx +128 -0
  150. package/src/blocks/testimonial/testimonial-4.schema.ts +3373 -0
  151. package/src/blocks/testimonial/testimonial-4.tsx +202 -0
  152. package/src/blocks/testimonial/testimonial-5.schema.ts +434 -0
  153. package/src/blocks/testimonial/testimonial-5.tsx +106 -0
  154. package/src/blocks/testimonial/testimonial-6.schema.ts +709 -0
  155. package/src/blocks/testimonial/testimonial-6.tsx +128 -0
  156. package/{dist/index.js → src/index.ts} +5 -2
  157. package/{dist/schemas/blocks.js → src/schemas/blocks.ts} +75 -72
  158. package/src/schemas/categories.ts +134 -0
  159. package/src/styles.d.ts +4 -0
  160. package/dist/blocks/about-us/about-us-1.d.ts +0 -5
  161. package/dist/blocks/about-us/about-us-1.js +0 -5
  162. package/dist/blocks/about-us/about-us-1.schema.d.ts +0 -38
  163. package/dist/blocks/about-us/about-us-1.schema.js +0 -537
  164. package/dist/blocks/blogs/blog-listing-1.d.ts +0 -5
  165. package/dist/blocks/blogs/blog-listing-1.js +0 -12
  166. package/dist/blocks/blogs/blog-listing-1.schema.d.ts +0 -59
  167. package/dist/blocks/blogs/blog-listing-1.schema.js +0 -387
  168. package/dist/blocks/blogs/blog-listing-2.d.ts +0 -5
  169. package/dist/blocks/blogs/blog-listing-2.js +0 -9
  170. package/dist/blocks/blogs/blog-listing-2.schema.d.ts +0 -104
  171. package/dist/blocks/blogs/blog-listing-2.schema.js +0 -572
  172. package/dist/blocks/blogs/blog-post-1.d.ts +0 -6
  173. package/dist/blocks/blogs/blog-post-1.js +0 -8
  174. package/dist/blocks/blogs/blog-post-1.schema.d.ts +0 -48
  175. package/dist/blocks/blogs/blog-post-1.schema.js +0 -358
  176. package/dist/blocks/blogs/blog-post-2.d.ts +0 -6
  177. package/dist/blocks/blogs/blog-post-2.js +0 -8
  178. package/dist/blocks/blogs/blog-post-2.schema.d.ts +0 -74
  179. package/dist/blocks/blogs/blog-post-2.schema.js +0 -779
  180. package/dist/blocks/cards/cards-10.d.ts +0 -6
  181. package/dist/blocks/cards/cards-10.js +0 -4
  182. package/dist/blocks/cards/cards-10.schema.d.ts +0 -44
  183. package/dist/blocks/cards/cards-10.schema.js +0 -405
  184. package/dist/blocks/cards/cards-11.d.ts +0 -6
  185. package/dist/blocks/cards/cards-11.js +0 -4
  186. package/dist/blocks/cards/cards-11.schema.d.ts +0 -58
  187. package/dist/blocks/cards/cards-11.schema.js +0 -406
  188. package/dist/blocks/cards/cards-12.d.ts +0 -6
  189. package/dist/blocks/cards/cards-12.js +0 -4
  190. package/dist/blocks/cards/cards-12.schema.d.ts +0 -38
  191. package/dist/blocks/cards/cards-12.schema.js +0 -545
  192. package/dist/blocks/cards/cards-2.d.ts +0 -5
  193. package/dist/blocks/cards/cards-2.js +0 -4
  194. package/dist/blocks/cards/cards-2.schema.d.ts +0 -46
  195. package/dist/blocks/cards/cards-2.schema.js +0 -260
  196. package/dist/blocks/cards/cards-3.d.ts +0 -6
  197. package/dist/blocks/cards/cards-3.js +0 -5
  198. package/dist/blocks/cards/cards-3.schema.d.ts +0 -36
  199. package/dist/blocks/cards/cards-3.schema.js +0 -351
  200. package/dist/blocks/cards/cards-4.d.ts +0 -6
  201. package/dist/blocks/cards/cards-4.js +0 -4
  202. package/dist/blocks/cards/cards-4.schema.d.ts +0 -40
  203. package/dist/blocks/cards/cards-4.schema.js +0 -648
  204. package/dist/blocks/cards/cards-5.d.ts +0 -5
  205. package/dist/blocks/cards/cards-5.js +0 -4
  206. package/dist/blocks/cards/cards-5.schema.d.ts +0 -48
  207. package/dist/blocks/cards/cards-5.schema.js +0 -238
  208. package/dist/blocks/cards/cards-6.d.ts +0 -5
  209. package/dist/blocks/cards/cards-6.js +0 -45
  210. package/dist/blocks/cards/cards-6.schema.d.ts +0 -50
  211. package/dist/blocks/cards/cards-6.schema.js +0 -608
  212. package/dist/blocks/cards/cards-7.d.ts +0 -5
  213. package/dist/blocks/cards/cards-7.js +0 -45
  214. package/dist/blocks/cards/cards-7.schema.d.ts +0 -87
  215. package/dist/blocks/cards/cards-7.schema.js +0 -1732
  216. package/dist/blocks/cards/cards-8.d.ts +0 -6
  217. package/dist/blocks/cards/cards-8.js +0 -4
  218. package/dist/blocks/cards/cards-8.schema.d.ts +0 -40
  219. package/dist/blocks/cards/cards-8.schema.js +0 -660
  220. package/dist/blocks/cards/cards-9.d.ts +0 -5
  221. package/dist/blocks/cards/cards-9.js +0 -4
  222. package/dist/blocks/cards/cards-9.schema.d.ts +0 -55
  223. package/dist/blocks/cards/cards-9.schema.js +0 -798
  224. package/dist/blocks/carousel/carousel-1.d.ts +0 -5
  225. package/dist/blocks/carousel/carousel-1.js +0 -12
  226. package/dist/blocks/carousel/carousel-1.schema.d.ts +0 -51
  227. package/dist/blocks/carousel/carousel-1.schema.js +0 -236
  228. package/dist/blocks/contact-us/contact-us-1.d.ts +0 -5
  229. package/dist/blocks/contact-us/contact-us-1.js +0 -4
  230. package/dist/blocks/contact-us/contact-us-1.schema.d.ts +0 -31
  231. package/dist/blocks/contact-us/contact-us-1.schema.js +0 -202
  232. package/dist/blocks/contact-us/contact-us-2.d.ts +0 -5
  233. package/dist/blocks/contact-us/contact-us-2.js +0 -4
  234. package/dist/blocks/contact-us/contact-us-2.schema.d.ts +0 -59
  235. package/dist/blocks/contact-us/contact-us-2.schema.js +0 -512
  236. package/dist/blocks/content/content-1.d.ts +0 -6
  237. package/dist/blocks/content/content-1.js +0 -4
  238. package/dist/blocks/content/content-1.schema.d.ts +0 -56
  239. package/dist/blocks/content/content-1.schema.js +0 -807
  240. package/dist/blocks/content/content-2.d.ts +0 -5
  241. package/dist/blocks/content/content-2.js +0 -4
  242. package/dist/blocks/content/content-2.schema.d.ts +0 -78
  243. package/dist/blocks/content/content-2.schema.js +0 -200
  244. package/dist/blocks/content/content-3.d.ts +0 -6
  245. package/dist/blocks/content/content-3.js +0 -5
  246. package/dist/blocks/content/content-3.schema.d.ts +0 -23
  247. package/dist/blocks/content/content-3.schema.js +0 -850
  248. package/dist/blocks/content/content-4.d.ts +0 -6
  249. package/dist/blocks/content/content-4.js +0 -6
  250. package/dist/blocks/content/content-4.schema.d.ts +0 -33
  251. package/dist/blocks/content/content-4.schema.js +0 -252
  252. package/dist/blocks/content/content-5.d.ts +0 -6
  253. package/dist/blocks/content/content-5.js +0 -5
  254. package/dist/blocks/content/content-5.schema.d.ts +0 -37
  255. package/dist/blocks/content/content-5.schema.js +0 -932
  256. package/dist/blocks/content/content-6.d.ts +0 -6
  257. package/dist/blocks/content/content-6.js +0 -5
  258. package/dist/blocks/content/content-6.schema.d.ts +0 -41
  259. package/dist/blocks/content/content-6.schema.js +0 -976
  260. package/dist/blocks/cta/cta-1.d.ts +0 -5
  261. package/dist/blocks/cta/cta-1.js +0 -4
  262. package/dist/blocks/cta/cta-1.schema.d.ts +0 -40
  263. package/dist/blocks/cta/cta-1.schema.js +0 -339
  264. package/dist/blocks/cta/cta-2.d.ts +0 -5
  265. package/dist/blocks/cta/cta-2.js +0 -4
  266. package/dist/blocks/cta/cta-2.schema.d.ts +0 -45
  267. package/dist/blocks/cta/cta-2.schema.js +0 -183
  268. package/dist/blocks/cta/cta-3.d.ts +0 -5
  269. package/dist/blocks/cta/cta-3.js +0 -4
  270. package/dist/blocks/cta/cta-3.schema.d.ts +0 -34
  271. package/dist/blocks/cta/cta-3.schema.js +0 -137
  272. package/dist/blocks/embed/embed-1.d.ts +0 -5
  273. package/dist/blocks/embed/embed-1.js +0 -5
  274. package/dist/blocks/embed/embed-1.schema.d.ts +0 -13
  275. package/dist/blocks/embed/embed-1.schema.js +0 -146
  276. package/dist/blocks/event/event-details.d.ts +0 -5
  277. package/dist/blocks/event/event-details.js +0 -9
  278. package/dist/blocks/event/event-details.schema.d.ts +0 -112
  279. package/dist/blocks/event/event-details.schema.js +0 -685
  280. package/dist/blocks/event/event-listing-2.d.ts +0 -5
  281. package/dist/blocks/event/event-listing-2.js +0 -4
  282. package/dist/blocks/event/event-listing-2.schema.d.ts +0 -84
  283. package/dist/blocks/event/event-listing-2.schema.js +0 -455
  284. package/dist/blocks/event/event-listing-3.d.ts +0 -5
  285. package/dist/blocks/event/event-listing-3.js +0 -10
  286. package/dist/blocks/event/event-listing-3.schema.d.ts +0 -77
  287. package/dist/blocks/event/event-listing-3.schema.js +0 -570
  288. package/dist/blocks/event/event-listing.d.ts +0 -5
  289. package/dist/blocks/event/event-listing.js +0 -10
  290. package/dist/blocks/event/event-listing.schema.d.ts +0 -51
  291. package/dist/blocks/event/event-listing.schema.js +0 -1297
  292. package/dist/blocks/faq/faq-1.d.ts +0 -5
  293. package/dist/blocks/faq/faq-1.js +0 -4
  294. package/dist/blocks/faq/faq-1.schema.d.ts +0 -47
  295. package/dist/blocks/faq/faq-1.schema.js +0 -325
  296. package/dist/blocks/faq/faq-2.d.ts +0 -6
  297. package/dist/blocks/faq/faq-2.js +0 -19
  298. package/dist/blocks/faq/faq-2.schema.d.ts +0 -47
  299. package/dist/blocks/faq/faq-2.schema.js +0 -329
  300. package/dist/blocks/faq/faq-3.d.ts +0 -5
  301. package/dist/blocks/faq/faq-3.js +0 -4
  302. package/dist/blocks/faq/faq-3.schema.d.ts +0 -40
  303. package/dist/blocks/faq/faq-3.schema.js +0 -444
  304. package/dist/blocks/features/features-1/features-1.d.ts +0 -5
  305. package/dist/blocks/features/features-1/features-1.js +0 -4
  306. package/dist/blocks/features/features-1/features-1.schema.d.ts +0 -5
  307. package/dist/blocks/features/features-1/features-1.schema.js +0 -142
  308. package/dist/blocks/features/features-1/variants/default.d.ts +0 -37
  309. package/dist/blocks/features/features-1/variants/default.js +0 -185
  310. package/dist/blocks/features/features-1/variants/index.d.ts +0 -5
  311. package/dist/blocks/features/features-1/variants/stylized-cards-v1.d.ts +0 -3
  312. package/dist/blocks/features/features-1/variants/stylized-cards-v1.js +0 -132
  313. package/dist/blocks/features/features-1/variants/stylized-cards-v2.d.ts +0 -3
  314. package/dist/blocks/features/features-1/variants/stylized-cards-v2.js +0 -484
  315. package/dist/blocks/features/features-2.d.ts +0 -5
  316. package/dist/blocks/features/features-2.js +0 -8
  317. package/dist/blocks/features/features-2.schema.d.ts +0 -41
  318. package/dist/blocks/features/features-2.schema.js +0 -321
  319. package/dist/blocks/features/features-3.d.ts +0 -5
  320. package/dist/blocks/features/features-3.js +0 -4
  321. package/dist/blocks/features/features-3.schema.d.ts +0 -40
  322. package/dist/blocks/features/features-3.schema.js +0 -424
  323. package/dist/blocks/features/features-4.d.ts +0 -5
  324. package/dist/blocks/features/features-4.js +0 -4
  325. package/dist/blocks/features/features-4.schema.d.ts +0 -60
  326. package/dist/blocks/features/features-4.schema.js +0 -594
  327. package/dist/blocks/features/features-5.d.ts +0 -6
  328. package/dist/blocks/features/features-5.js +0 -5
  329. package/dist/blocks/features/features-5.schema.d.ts +0 -28
  330. package/dist/blocks/features/features-5.schema.js +0 -727
  331. package/dist/blocks/features/features-6.d.ts +0 -5
  332. package/dist/blocks/features/features-6.js +0 -31
  333. package/dist/blocks/features/features-6.schema.d.ts +0 -74
  334. package/dist/blocks/features/features-6.schema.js +0 -814
  335. package/dist/blocks/footer/footer-1.d.ts +0 -6
  336. package/dist/blocks/footer/footer-1.js +0 -5
  337. package/dist/blocks/footer/footer-1.schema.d.ts +0 -62
  338. package/dist/blocks/footer/footer-1.schema.js +0 -565
  339. package/dist/blocks/footer/footer-2.d.ts +0 -5
  340. package/dist/blocks/footer/footer-2.js +0 -4
  341. package/dist/blocks/footer/footer-2.schema.d.ts +0 -76
  342. package/dist/blocks/footer/footer-2.schema.js +0 -876
  343. package/dist/blocks/footer/footer-3.d.ts +0 -6
  344. package/dist/blocks/footer/footer-3.js +0 -15
  345. package/dist/blocks/footer/footer-3.schema.d.ts +0 -48
  346. package/dist/blocks/footer/footer-3.schema.js +0 -475
  347. package/dist/blocks/footer/footer-4.d.ts +0 -6
  348. package/dist/blocks/footer/footer-4.js +0 -5
  349. package/dist/blocks/footer/footer-4.schema.d.ts +0 -71
  350. package/dist/blocks/footer/footer-4.schema.js +0 -620
  351. package/dist/blocks/footer/footer-5.d.ts +0 -6
  352. package/dist/blocks/footer/footer-5.js +0 -5
  353. package/dist/blocks/footer/footer-5.schema.d.ts +0 -52
  354. package/dist/blocks/footer/footer-5.schema.js +0 -400
  355. package/dist/blocks/hero/hero-1.d.ts +0 -5
  356. package/dist/blocks/hero/hero-1.js +0 -4
  357. package/dist/blocks/hero/hero-1.schema.d.ts +0 -35
  358. package/dist/blocks/hero/hero-1.schema.js +0 -742
  359. package/dist/blocks/hero/hero-2.d.ts +0 -5
  360. package/dist/blocks/hero/hero-2.js +0 -4
  361. package/dist/blocks/hero/hero-2.schema.d.ts +0 -46
  362. package/dist/blocks/hero/hero-2.schema.js +0 -282
  363. package/dist/blocks/hero/hero-3.d.ts +0 -5
  364. package/dist/blocks/hero/hero-3.js +0 -4
  365. package/dist/blocks/hero/hero-3.schema.d.ts +0 -54
  366. package/dist/blocks/hero/hero-3.schema.js +0 -378
  367. package/dist/blocks/hero/hero-4.d.ts +0 -5
  368. package/dist/blocks/hero/hero-4.js +0 -30
  369. package/dist/blocks/hero/hero-4.schema.d.ts +0 -33
  370. package/dist/blocks/hero/hero-4.schema.js +0 -316
  371. package/dist/blocks/hero/hero-5.d.ts +0 -5
  372. package/dist/blocks/hero/hero-5.js +0 -30
  373. package/dist/blocks/hero/hero-5.schema.d.ts +0 -32
  374. package/dist/blocks/hero/hero-5.schema.js +0 -183
  375. package/dist/blocks/hero/hero-6.d.ts +0 -5
  376. package/dist/blocks/hero/hero-6.js +0 -8
  377. package/dist/blocks/hero/hero-6.schema.d.ts +0 -36
  378. package/dist/blocks/hero/hero-6.schema.js +0 -617
  379. package/dist/blocks/hero/hero-7.d.ts +0 -5
  380. package/dist/blocks/hero/hero-7.js +0 -40
  381. package/dist/blocks/hero/hero-7.schema.d.ts +0 -12
  382. package/dist/blocks/hero/hero-7.schema.js +0 -471
  383. package/dist/blocks/hero/hero-8.d.ts +0 -5
  384. package/dist/blocks/hero/hero-8.js +0 -39
  385. package/dist/blocks/hero/hero-8.schema.d.ts +0 -17
  386. package/dist/blocks/hero/hero-8.schema.js +0 -343
  387. package/dist/blocks/hero/hero-9.d.ts +0 -6
  388. package/dist/blocks/hero/hero-9.js +0 -4
  389. package/dist/blocks/hero/hero-9.schema.d.ts +0 -39
  390. package/dist/blocks/hero/hero-9.schema.js +0 -355
  391. package/dist/blocks/index.d.ts +0 -3
  392. package/dist/blocks/index.js +0 -74
  393. package/dist/blocks/logos/logos-1.d.ts +0 -5
  394. package/dist/blocks/logos/logos-1.js +0 -10
  395. package/dist/blocks/logos/logos-1.schema.d.ts +0 -34
  396. package/dist/blocks/logos/logos-1.schema.js +0 -239
  397. package/dist/blocks/navbar/navbar-1.d.ts +0 -6
  398. package/dist/blocks/navbar/navbar-1.js +0 -100
  399. package/dist/blocks/navbar/navbar-1.schema.d.ts +0 -117
  400. package/dist/blocks/navbar/navbar-1.schema.js +0 -938
  401. package/dist/blocks/navbar/navbar-2.d.ts +0 -6
  402. package/dist/blocks/navbar/navbar-2.js +0 -99
  403. package/dist/blocks/navbar/navbar-2.schema.d.ts +0 -134
  404. package/dist/blocks/navbar/navbar-2.schema.js +0 -1200
  405. package/dist/blocks/pricing/pricing-1.d.ts +0 -5
  406. package/dist/blocks/pricing/pricing-1.js +0 -4
  407. package/dist/blocks/pricing/pricing-1.schema.d.ts +0 -87
  408. package/dist/blocks/pricing/pricing-1.schema.js +0 -976
  409. package/dist/blocks/products/products-listing-1.d.ts +0 -5
  410. package/dist/blocks/products/products-listing-1.js +0 -4
  411. package/dist/blocks/products/products-listing-1.schema.d.ts +0 -36
  412. package/dist/blocks/products/products-listing-1.schema.js +0 -264
  413. package/dist/blocks/stats/stats-1.d.ts +0 -6
  414. package/dist/blocks/stats/stats-1.js +0 -6
  415. package/dist/blocks/stats/stats-1.schema.d.ts +0 -25
  416. package/dist/blocks/stats/stats-1.schema.js +0 -213
  417. package/dist/blocks/stats/stats-2.d.ts +0 -6
  418. package/dist/blocks/stats/stats-2.js +0 -6
  419. package/dist/blocks/stats/stats-2.schema.d.ts +0 -5
  420. package/dist/blocks/stats/stats-2.schema.js +0 -104
  421. package/dist/blocks/stats/variants/default.d.ts +0 -22
  422. package/dist/blocks/stats/variants/default.js +0 -185
  423. package/dist/blocks/stats/variants/hero.d.ts +0 -3
  424. package/dist/blocks/stats/variants/hero.js +0 -151
  425. package/dist/blocks/stats/variants/index.d.ts +0 -4
  426. package/dist/blocks/team/team-1.d.ts +0 -6
  427. package/dist/blocks/team/team-1.js +0 -6
  428. package/dist/blocks/team/team-1.schema.d.ts +0 -65
  429. package/dist/blocks/team/team-1.schema.js +0 -476
  430. package/dist/blocks/team/team-2.d.ts +0 -6
  431. package/dist/blocks/team/team-2.js +0 -6
  432. package/dist/blocks/team/team-2.schema.d.ts +0 -52
  433. package/dist/blocks/team/team-2.schema.js +0 -2732
  434. package/dist/blocks/team/team-3.d.ts +0 -5
  435. package/dist/blocks/team/team-3.js +0 -30
  436. package/dist/blocks/team/team-3.schema.d.ts +0 -32
  437. package/dist/blocks/team/team-3.schema.js +0 -679
  438. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.d.ts +0 -6
  439. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.js +0 -4
  440. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.schema.d.ts +0 -14
  441. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.schema.js +0 -154
  442. package/dist/blocks/testimonial/testimonial-1.d.ts +0 -5
  443. package/dist/blocks/testimonial/testimonial-1.js +0 -10
  444. package/dist/blocks/testimonial/testimonial-1.schema.d.ts +0 -16
  445. package/dist/blocks/testimonial/testimonial-1.schema.js +0 -314
  446. package/dist/blocks/testimonial/testimonial-2.d.ts +0 -5
  447. package/dist/blocks/testimonial/testimonial-2.js +0 -42
  448. package/dist/blocks/testimonial/testimonial-2.schema.d.ts +0 -54
  449. package/dist/blocks/testimonial/testimonial-2.schema.js +0 -771
  450. package/dist/blocks/testimonial/testimonial-3.d.ts +0 -5
  451. package/dist/blocks/testimonial/testimonial-3.js +0 -38
  452. package/dist/blocks/testimonial/testimonial-3.schema.d.ts +0 -56
  453. package/dist/blocks/testimonial/testimonial-3.schema.js +0 -260
  454. package/dist/blocks/testimonial/testimonial-4.d.ts +0 -5
  455. package/dist/blocks/testimonial/testimonial-4.js +0 -51
  456. package/dist/blocks/testimonial/testimonial-4.schema.d.ts +0 -145
  457. package/dist/blocks/testimonial/testimonial-4.schema.js +0 -3214
  458. package/dist/blocks/testimonial/testimonial-5.d.ts +0 -5
  459. package/dist/blocks/testimonial/testimonial-5.js +0 -31
  460. package/dist/blocks/testimonial/testimonial-5.schema.d.ts +0 -33
  461. package/dist/blocks/testimonial/testimonial-5.schema.js +0 -401
  462. package/dist/blocks/testimonial/testimonial-6.d.ts +0 -5
  463. package/dist/blocks/testimonial/testimonial-6.js +0 -39
  464. package/dist/blocks/testimonial/testimonial-6.schema.d.ts +0 -60
  465. package/dist/blocks/testimonial/testimonial-6.schema.js +0 -695
  466. package/dist/index.d.ts +0 -6
  467. package/dist/schemas/blocks.d.ts +0 -3
  468. package/dist/schemas/categories.d.ts +0 -3
  469. package/dist/schemas/categories.js +0 -129
  470. package/dist/schemas/index.d.ts +0 -3
  471. /package/{dist/schemas/index.js → src/schemas/index.ts} +0 -0
@@ -1,5 +0,0 @@
1
- import { type ILevoBlockBaseProps } from "@levo-so/studio";
2
- import type { ICarousel1Content } from "./carousel-1.schema";
3
- declare const Carousel1: React.FC<ILevoBlockBaseProps<ICarousel1Content>>;
4
- export default Carousel1;
5
- //# sourceMappingURL=carousel-1.d.ts.map
@@ -1,12 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import { Heading, Image, Container, Section, Box, Carousel, CarouselContent, CarouselItem, } from "@levo-so/studio";
3
- const Carousel1 = ({ content, }) => (_jsx(Section, { elementKey: "layout", children: _jsxs(Container, { elementKey: "container", children: [_jsx(Box, { elementKey: "header_wrapper", children: _jsx(Heading, { elementKey: "title" }) }), _jsx(Carousel, { elementKey: "carousel_1_levoGroup", "data-levo_group": true, opts: {
4
- watchDrag: false,
5
- watchResize: true,
6
- watchSlides: true,
7
- }, children: _jsx(CarouselContent, { children: (content.carousel_1 ?? []).map((_, index) => (_jsx(CarouselItem, { "data-levo_group_item": true, children: _jsx(Box, { elementKey: `carousel_1.${index}.card`, children: _jsx(Image, { alt: "carousel image", elementKey: `carousel_1.${index}.image`, width: 400, height: 300 }) }) }, `carousel-1-item-${index}`))) }) }), _jsx(Carousel, { elementKey: "carousel_2_levoGroup", "data-levo_group": true, opts: {
8
- watchDrag: false,
9
- watchResize: true,
10
- watchSlides: true,
11
- }, children: _jsx(CarouselContent, { children: (content.carousel_2 ?? []).map((_, index) => (_jsx(CarouselItem, { "data-levo_group_item": true, children: _jsx(Box, { elementKey: `carousel_2.${index}.card`, children: _jsx(Image, { alt: "carousel image", elementKey: `carousel_2.${index}.image`, width: 400, height: 300 }) }) }, `carousel-2-item-${index}`))) }) })] }) }));
12
- export default Carousel1;
@@ -1,51 +0,0 @@
1
- import type { IBlock } from "@levo-so/studio";
2
- declare const DEFAULT_CONTENT: {
3
- layout: null;
4
- container: null;
5
- header_wrapper: null;
6
- title: string;
7
- carousel_1_levoGroup: null;
8
- carousel_1: {
9
- card: null;
10
- image: {
11
- id: string;
12
- location: string;
13
- kind: string;
14
- mimetype: string;
15
- srcset: {
16
- "1080w": string;
17
- "1200w": string;
18
- "1920w": string;
19
- "320w": string;
20
- "640w": string;
21
- "750w": string;
22
- "828w": string;
23
- path: string;
24
- };
25
- };
26
- }[];
27
- carousel_2_levoGroup: null;
28
- carousel_2: {
29
- card: null;
30
- image: {
31
- id: string;
32
- location: string;
33
- kind: string;
34
- mimetype: string;
35
- srcset: {
36
- "1080w": string;
37
- "1200w": string;
38
- "1920w": string;
39
- "320w": string;
40
- "640w": string;
41
- "750w": string;
42
- "828w": string;
43
- path: string;
44
- };
45
- };
46
- }[];
47
- };
48
- export type ICarousel1Content = typeof DEFAULT_CONTENT;
49
- export declare const Carousel1: IBlock;
50
- export {};
51
- //# sourceMappingURL=carousel-1.schema.d.ts.map
@@ -1,236 +0,0 @@
1
- // Extract image object into a constant for reusability
2
- const CAROUSEL_IMAGE = {
3
- id: "7141014160938075687",
4
- location: "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH.png",
5
- kind: "image",
6
- mimetype: "image/png",
7
- srcset: {
8
- "1080w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1080w.webp",
9
- "1200w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1200w.webp",
10
- "1920w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1920w.webp",
11
- "320w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-320w.webp",
12
- "640w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-640w.webp",
13
- "750w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-750w.webp",
14
- "828w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-828w.webp",
15
- path: "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-640w.webp 640w, https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1080w.webp 1080w, https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1200w.webp 1200w, https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1920w.webp 1920w, https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-320w.webp 320w, https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-750w.webp 750w, https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-828w.webp 828w",
16
- },
17
- };
18
- // Array of carousel 1 content
19
- const CAROUSEL_1_CONTENT = [
20
- {
21
- card: null,
22
- image: CAROUSEL_IMAGE,
23
- },
24
- {
25
- card: null,
26
- image: CAROUSEL_IMAGE,
27
- },
28
- {
29
- card: null,
30
- image: CAROUSEL_IMAGE,
31
- },
32
- {
33
- card: null,
34
- image: CAROUSEL_IMAGE,
35
- },
36
- {
37
- card: null,
38
- image: CAROUSEL_IMAGE,
39
- },
40
- ];
41
- // Array of carousel 2 content
42
- const CAROUSEL_2_CONTENT = [
43
- {
44
- card: null,
45
- image: CAROUSEL_IMAGE,
46
- },
47
- {
48
- card: null,
49
- image: CAROUSEL_IMAGE,
50
- },
51
- {
52
- card: null,
53
- image: CAROUSEL_IMAGE,
54
- },
55
- {
56
- card: null,
57
- image: CAROUSEL_IMAGE,
58
- },
59
- {
60
- card: null,
61
- image: CAROUSEL_IMAGE,
62
- },
63
- ];
64
- const DEFAULT_CONTENT = {
65
- layout: null,
66
- container: null,
67
- header_wrapper: null,
68
- title: "Enterprise Portfolio Gallery",
69
- carousel_1_levoGroup: null,
70
- carousel_1: CAROUSEL_1_CONTENT,
71
- carousel_2_levoGroup: null,
72
- carousel_2: CAROUSEL_2_CONTENT,
73
- };
74
- // Carousel item field styles
75
- const CAROUSEL_ITEM_STYLE = {
76
- card: {
77
- display: "flex",
78
- "flex-direction": "column",
79
- "border-radius": "lg",
80
- overflow: "hidden",
81
- "box-shadow": "0 4px 6px -1px rgba(0, 0, 0, 0.1)",
82
- },
83
- image: {
84
- width: "100%",
85
- height: "18rem",
86
- "object-fit": "cover",
87
- },
88
- };
89
- const CAROUSEL_1_STYLES = Array(5).fill(CAROUSEL_ITEM_STYLE);
90
- const CAROUSEL_2_STYLES = Array(5).fill(CAROUSEL_ITEM_STYLE);
91
- export const Carousel1 = {
92
- category_id: "carousel",
93
- title: "Carousel 1",
94
- key: "carousel-1",
95
- version: "v1",
96
- prompt_description: "A dual-row carousel block displaying image galleries with smooth transitions and responsive design",
97
- content_schema: [
98
- {
99
- key: "layout",
100
- label: "Layout",
101
- field_interface: "LayoutWidget",
102
- },
103
- {
104
- key: "container",
105
- label: "Container",
106
- field_interface: "ContainerWidget",
107
- },
108
- {
109
- key: "header_wrapper",
110
- label: "Header Wrapper",
111
- field_interface: "BoxWidget",
112
- },
113
- {
114
- key: "title",
115
- label: "Title",
116
- field_interface: "HeadingWidget",
117
- },
118
- {
119
- key: "carousel_1_levoGroup",
120
- label: "Carousel 1 Levo Group",
121
- field_interface: "BoxWidget",
122
- },
123
- {
124
- key: "carousel_1",
125
- label: "Carousel 1",
126
- kind: "group",
127
- field_interface: "CarouselWidget",
128
- fields: [
129
- {
130
- key: "card",
131
- label: "Card",
132
- field_interface: "BoxWidget",
133
- },
134
- {
135
- key: "image",
136
- label: "Image",
137
- field_interface: "ImageWidget",
138
- },
139
- ],
140
- },
141
- {
142
- key: "carousel_2_levoGroup",
143
- label: "Carousel 2 Levo Group",
144
- field_interface: "BoxWidget",
145
- },
146
- {
147
- key: "carousel_2",
148
- label: "Carousel 2",
149
- kind: "group",
150
- field_interface: "CarouselWidget",
151
- fields: [
152
- {
153
- key: "card",
154
- label: "Card",
155
- field_interface: "BoxWidget",
156
- },
157
- {
158
- key: "image",
159
- label: "Image",
160
- field_interface: "ImageWidget",
161
- },
162
- ],
163
- },
164
- ],
165
- layouts: [
166
- {
167
- key: "default",
168
- title: "Default",
169
- styles: {
170
- layout: {
171
- "padding-top": "5xl",
172
- "padding-bottom": "5xl",
173
- },
174
- container: {
175
- "max-width": "72rem",
176
- "margin-left": "auto",
177
- "margin-right": "auto",
178
- "padding-left": "base",
179
- "padding-right": "base",
180
- },
181
- header_wrapper: {
182
- "text-align": "center",
183
- "margin-bottom": "4xl",
184
- },
185
- title: {
186
- "font-size": "3xl",
187
- "font-weight": "600",
188
- color: "text-1",
189
- "line-height": "1.15",
190
- "margin-bottom": "0",
191
- mobile: {
192
- "font-size": "2xl",
193
- },
194
- },
195
- carousel_1_levoGroup: {
196
- number_of_slides: 3.5,
197
- "margin-bottom": "3xl",
198
- tablet: {
199
- number_of_slides: 2.5,
200
- },
201
- mobile: {
202
- number_of_slides: 1.2,
203
- },
204
- },
205
- carousel_2_levoGroup: {
206
- number_of_slides: 3.5,
207
- tablet: {
208
- number_of_slides: 2.5,
209
- },
210
- mobile: {
211
- number_of_slides: 1.2,
212
- },
213
- },
214
- carousel_1: CAROUSEL_1_STYLES,
215
- carousel_2: CAROUSEL_2_STYLES,
216
- },
217
- content: DEFAULT_CONTENT,
218
- config: {
219
- carousel_1_levoGroup: {
220
- carousel: {
221
- loop: true,
222
- autoScroll: true,
223
- speed: 3,
224
- },
225
- },
226
- carousel_2_levoGroup: {
227
- carousel: {
228
- loop: true,
229
- autoScroll: true,
230
- speed: 2,
231
- },
232
- },
233
- },
234
- },
235
- ],
236
- };
@@ -1,5 +0,0 @@
1
- import type { ILevoBlockBaseProps } from "@levo-so/studio";
2
- import type { IContactUs1Content } from "./contact-us-1.schema";
3
- declare const ContactUs1: React.FC<ILevoBlockBaseProps<IContactUs1Content>>;
4
- export default ContactUs1;
5
- //# sourceMappingURL=contact-us-1.d.ts.map
@@ -1,4 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import { Box, Button, Heading, Media, Section, Typography, Container, } from "@levo-so/studio";
3
- const ContactUs1 = ({ content, }) => (_jsx(Section, { elementKey: "layout", children: _jsxs(Container, { elementKey: "container", children: [_jsxs(Box, { elementKey: "contentWrapper", children: [_jsxs(Box, { elementKey: "textWrapper", children: [_jsx(Heading, { elementKey: "title" }), _jsx(Typography, { elementKey: "description" })] }), _jsx(Box, { elementKey: "ctas_levoGroup", "data-levo_group": true, children: (content.ctas ?? []).map((_, index) => (_jsx(Button, { elementKey: `ctas.${index}.cta`, "data-levo_group_item": true }, `logos-1-cta-${index}`))) })] }), _jsx(Media, { alt: "media", elementKey: "media" })] }) }));
4
- export default ContactUs1;
@@ -1,31 +0,0 @@
1
- import type { IBlock } from "@levo-so/studio";
2
- declare const DEFAULT_CONTENT: {
3
- layout: null;
4
- container: null;
5
- contentWrapper: null;
6
- title: string;
7
- description: string;
8
- ctas: {
9
- cta: string;
10
- }[];
11
- media: {
12
- id: string;
13
- location: string;
14
- kind: string;
15
- mimetype: string;
16
- srcset: {
17
- "1080w": string;
18
- "1200w": string;
19
- "1920w": string;
20
- "320w": string;
21
- "640w": string;
22
- "750w": string;
23
- "828w": string;
24
- path: string;
25
- };
26
- };
27
- };
28
- export type IContactUs1Content = typeof DEFAULT_CONTENT;
29
- export declare const ContactUs1: IBlock;
30
- export {};
31
- //# sourceMappingURL=contact-us-1.schema.d.ts.map
@@ -1,202 +0,0 @@
1
- const DEFAULT_CONTENT = {
2
- layout: null,
3
- container: null,
4
- contentWrapper: null,
5
- title: "Get in touch",
6
- description: "Connect with us and let us know how we can help you.",
7
- ctas: [
8
- {
9
- cta: "Contact Us",
10
- },
11
- ],
12
- media: {
13
- id: "7141014160938075687",
14
- location: "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH.png",
15
- kind: "image",
16
- mimetype: "image/png",
17
- srcset: {
18
- "1080w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1080w.webp",
19
- "1200w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1200w.webp",
20
- "1920w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1920w.webp",
21
- "320w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-320w.webp",
22
- "640w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-640w.webp",
23
- "750w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-750w.webp",
24
- "828w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-828w.webp",
25
- path: "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-640w.webp 640w, https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1080w.webp 1080w, https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1200w.webp 1200w, https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1920w.webp 1920w, https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-320w.webp 320w, https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-750w.webp 750w, https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-828w.webp 828w",
26
- },
27
- },
28
- };
29
- export const ContactUs1 = {
30
- category_id: "contact-us",
31
- title: "Contact Us 1",
32
- key: "contact-us-1",
33
- version: "v1",
34
- prompt_description: "Two-column layout with bold headline, brief supporting text, and a call-to-action button on the left, paired with a large image on the right.",
35
- content_schema: [
36
- {
37
- key: "layout",
38
- label: "Layout",
39
- field_interface: "LayoutWidget",
40
- hint: {
41
- prompt_description: "Overall layout definition. Used to structure the block as a two-column split: left for text and call to action, right for visual. No content needed.",
42
- },
43
- },
44
- {
45
- key: "container",
46
- label: "Container",
47
- field_interface: "ContainerWidget",
48
- hint: {
49
- prompt_description: "Main outer container for spacing and alignment. No direct content—responsible for the block's padding, background, and width.",
50
- },
51
- },
52
- {
53
- key: "contentWrapper",
54
- label: "Content contentWrapper",
55
- field_interface: "BoxWidget",
56
- hint: {
57
- prompt_description: "Wrapper box for the main content (title, description, button) on the left side. Used for vertical and horizontal alignment. No direct visual/text content.",
58
- },
59
- },
60
- {
61
- key: "textWrapper",
62
- label: "Text Wrapper",
63
- field_interface: "BoxWidget",
64
- hint: {
65
- prompt_description: "Box to organize and group the title, description, and CTAs. No text content—used solely for grouping and alignment.",
66
- },
67
- },
68
- {
69
- key: "title",
70
- label: "Title",
71
- field_interface: "HeadingWidget",
72
- hint: {
73
- prompt_description: "Main headline positioned at the top left. Aim for a direct, inviting, action-oriented message encouraging users to make contact. Tone is clear, approachable, and encouraging.",
74
- min_characters: 8,
75
- max_characters: 28,
76
- },
77
- },
78
- {
79
- key: "description",
80
- label: "Description",
81
- field_interface: "TypographyWidget",
82
- hint: {
83
- prompt_description: "Short explanatory paragraph under the headline providing additional context or reason to get in touch. Tone is supportive, helpful, and concise.",
84
- min_characters: 30,
85
- max_characters: 90,
86
- },
87
- },
88
- {
89
- key: "ctas",
90
- label: "CTAs",
91
- field_interface: "BoxWidget",
92
- kind: "group",
93
- fields: [
94
- {
95
- key: "cta",
96
- label: "CTA",
97
- field_interface: "ButtonWidget",
98
- hint: {
99
- prompt_description: "Primary call-to-action button label for contacting the company/team. Should be short, clear, and action-driven.",
100
- min_characters: 4,
101
- max_characters: 22,
102
- },
103
- },
104
- ],
105
- hint: {
106
- prompt_description: "Group for one or more call-to-action buttons under the description. In this layout, typically only one prominent CTA is shown.",
107
- min_items: 1,
108
- max_items: 2,
109
- },
110
- },
111
- {
112
- key: "media",
113
- label: "Media",
114
- field_interface: "MediaWidget",
115
- hint: {
116
- prompt_description: "Prominent illustrative image displayed on the right side. Used to visually balance the block; should be inviting and align with a 'contact' or communication theme.",
117
- orientation: "landscape",
118
- size: "large",
119
- usecase: "hero",
120
- },
121
- },
122
- ],
123
- layouts: [
124
- {
125
- key: "default",
126
- title: "Default",
127
- styles: {
128
- layout: {
129
- "padding-left": "8xl",
130
- "padding-right": "8xl",
131
- "padding-top": "8xl",
132
- "padding-bottom": "8xl",
133
- tablet: {
134
- "padding-left": "4xl",
135
- "padding-right": "4xl",
136
- "padding-top": "4xl",
137
- "padding-bottom": "4xl",
138
- },
139
- mobile: {
140
- "padding-left": "lg",
141
- "padding-right": "lg",
142
- "padding-top": "lg",
143
- "padding-bottom": "lg",
144
- },
145
- },
146
- container: {
147
- display: "flex",
148
- "justify-content": "space-between",
149
- "border-radius": "3xl",
150
- tablet: {
151
- "flex-direction": "column",
152
- "column-gap": "none",
153
- "row-gap": "xl",
154
- "padding-top": "xl",
155
- },
156
- mobile: {
157
- "row-gap": "base",
158
- "padding-top": "base",
159
- },
160
- },
161
- media: {
162
- width: "50%",
163
- height: "100%",
164
- "border-radius": "3xl",
165
- tablet: {
166
- width: "100%",
167
- height: "auto",
168
- },
169
- },
170
- contentWrapper: {
171
- display: "flex",
172
- "flex-direction": "column",
173
- "align-items": "start",
174
- "justify-content": "center",
175
- "row-gap": "base",
176
- "padding-left": "5xl",
177
- tablet: {
178
- "padding-left": "xl",
179
- "padding-right": "xl",
180
- },
181
- mobile: {
182
- "padding-left": "base",
183
- "padding-right": "base",
184
- },
185
- },
186
- textWrapper: {
187
- display: "flex",
188
- "flex-direction": "column",
189
- "row-gap": "4xs",
190
- },
191
- title: {
192
- "font-size": "4xl",
193
- mobile: {
194
- "font-size": "2xl",
195
- },
196
- },
197
- },
198
- content: DEFAULT_CONTENT,
199
- config: {},
200
- },
201
- ],
202
- };
@@ -1,5 +0,0 @@
1
- import { type ILevoBlockBaseProps } from "@levo-so/studio";
2
- import type { IContactUs2Content } from "./contact-us-2.schema";
3
- declare const ContactUs2: React.FC<ILevoBlockBaseProps<IContactUs2Content>>;
4
- export default ContactUs2;
5
- //# sourceMappingURL=contact-us-2.d.ts.map
@@ -1,4 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import { Heading, Icon, Typography, Container, Section, Box, Media, Form, } from "@levo-so/studio";
3
- const ContactUs2 = ({ content, }) => (_jsx(Section, { elementKey: "layout", children: _jsxs(Container, { elementKey: "container", children: [_jsxs(Box, { elementKey: "layoutContentWrapper", children: [_jsx(Heading, { elementKey: "layoutTitle" }), _jsx(Typography, { elementKey: "layoutSubtitle" })] }), _jsxs(Box, { elementKey: "contactContainer", children: [_jsxs(Box, { elementKey: "contentContainer", children: [_jsx(Media, { alt: "header-media", elementKey: "headerMedia" }), _jsxs(Box, { elementKey: "textWrapper", children: [_jsx(Heading, { elementKey: "title" }), _jsx(Typography, { elementKey: "subtitle" })] }), _jsx(Box, { "data-levo_group": true, elementKey: "contact_options_levoGroup", children: (content?.contact_options ?? []).map((_, index) => (_jsxs(Box, { "data-levo_group_item": true, elementKey: `contact_options.${index}.wrapper`, children: [_jsx(Icon, { elementKey: `contact_options.${index}.icon` }), _jsxs(Box, { elementKey: `contact_options.${index}.text_box`, children: [_jsx(Typography, { elementKey: `contact_options.${index}.label` }), _jsx(Typography, { elementKey: `contact_options.${index}.value` }), _jsx(Box, { "data-levo_group": true, elementKey: `contact_options.${index}.icon_links_levoGroup`, children: (content?.contact_options?.[index]?.icon_links ?? []).map((_, linkIndex) => (_jsx(Box, { "data-levo_group_item": true, elementKey: `contact_options.${index}.icon_links.${linkIndex}.wrapper`, children: _jsx(Icon, { elementKey: `contact_options.${index}.icon_links.${linkIndex}.icon` }) }, linkIndex))) })] })] }, index))) })] }), _jsx(Form, { elementKey: "contact_form" })] })] }) }));
4
- export default ContactUs2;
@@ -1,59 +0,0 @@
1
- import type { IBlock } from "@levo-so/studio";
2
- declare const DEFAULT_CONTENT: {
3
- layout: null;
4
- container: null;
5
- layoutContentWrapper: null;
6
- layoutTitle: null;
7
- layoutSubtitle: null;
8
- contactContainer: null;
9
- contentContainer: null;
10
- headerMedia: null;
11
- textWrapper: null;
12
- title: string;
13
- subtitle: string;
14
- contact_options: ({
15
- wrapper: null;
16
- icon: {
17
- kind: string;
18
- data: {
19
- id: string;
20
- label: string;
21
- tags: string[];
22
- svgCode: string;
23
- };
24
- };
25
- text_box: null;
26
- label: string;
27
- value: string;
28
- icon_links?: undefined;
29
- } | {
30
- wrapper: null;
31
- icon: {
32
- kind: string;
33
- data: {
34
- id: string;
35
- label: string;
36
- tags: string[];
37
- svgCode: string;
38
- };
39
- };
40
- text_box: null;
41
- label: string;
42
- value: string;
43
- icon_links: {
44
- icon: {
45
- kind: string;
46
- data: {
47
- id: string;
48
- label: string;
49
- tags: string[];
50
- svgCode: string;
51
- };
52
- };
53
- }[];
54
- })[];
55
- };
56
- export type IContactUs2Content = typeof DEFAULT_CONTENT;
57
- export declare const ContactUs2: IBlock;
58
- export {};
59
- //# sourceMappingURL=contact-us-2.schema.d.ts.map