@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,6 +0,0 @@
1
- import React from "react";
2
- import { type ILevoBlockBaseProps } from "@levo-so/studio";
3
- import { type IFooter3Content } from "./footer-3.schema";
4
- declare const Footer3: React.FC<ILevoBlockBaseProps<IFooter3Content>>;
5
- export default Footer3;
6
- //# sourceMappingURL=footer-3.d.ts.map
@@ -1,15 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import React from "react";
3
- import { Box, Container, Icon, Section, Typography, } from "@levo-so/studio";
4
- const Footer3 = ({ content, }) => (_jsx(Section, { elementKey: "layout", children: _jsxs(Container, { elementKey: "container", children: [_jsx(Box, { elementKey: "mainFooterWrapper", children: _jsx(Box, { elementKey: "links_levoGroup", "data-levo_group": true, children: (content?.links ?? [])?.map((section, sectionIndex) => (_jsxs(Box, { elementKey: `links.${sectionIndex}`, "data-levo_group_item": true, children: [_jsx(Typography, { elementKey: `links.${sectionIndex}.category` }), _jsx(Box, { elementKey: `links.${sectionIndex}.links_levoGroup`, "data-levo_group": true, children: (section?.links ?? [])?.map((link, linkIndex) => {
5
- // Check if this is a contact item (has icon and contactWrapper)
6
- const isContactItem = "icon" in link && "contactWrapper" in link;
7
- if (isContactItem) {
8
- return (_jsxs(Box, { elementKey: `links.${sectionIndex}.links.${linkIndex}.contactWrapper`, "data-levo_group_item": true, children: [_jsx(Icon, { elementKey: `links.${sectionIndex}.links.${linkIndex}.icon` }), _jsx(Typography, { elementKey: `links.${sectionIndex}.links.${linkIndex}.text` })] }, `footer-3-contact-${sectionIndex}-${linkIndex}`));
9
- }
10
- else {
11
- // Regular link item
12
- return (_jsx(Typography, { elementKey: `links.${sectionIndex}.links.${linkIndex}.text`, "data-levo_group_item": true }, `footer-3-link-${sectionIndex}-${linkIndex}`));
13
- }
14
- }) })] }, `footer-3-section-${sectionIndex}`))) }) }), _jsxs(Box, { elementKey: "bottomSection", children: [_jsx(Typography, { elementKey: "copyright" }), _jsx(Box, { elementKey: "bottomLinks_levoGroup", "data-levo_group": true, children: (content?.bottomLinks ?? [])?.map((_, index) => (_jsxs(React.Fragment, { children: [_jsx(Typography, { "data-levo_group_item": true, elementKey: `bottomLinks.${index}.text` }), index < (content?.bottomLinks?.length ?? 0) - 1 && (_jsx(Box, { elementKey: `bottomLinks.${index}.separator`, "data-levo_group_item": true }))] }, `footer-3-bottom-${index}`))) }), _jsx(Box, { elementKey: "socialIcons_levoGroup", "data-levo_group": true, children: (content?.socialIcons ?? [])?.map((_, index) => (_jsx(Icon, { "data-levo_group_item": true, elementKey: `socialIcons.${index}.icon` }, `footer-3-social-${index}`))) })] })] }) }));
15
- export default Footer3;
@@ -1,48 +0,0 @@
1
- import type { IBlock } from "@levo-so/studio";
2
- declare const DEFAULT_CONTENT: {
3
- layout: null;
4
- container: null;
5
- mainFooterWrapper: null;
6
- links: ({
7
- category: string;
8
- links: {
9
- text: string;
10
- }[];
11
- } | {
12
- category: string;
13
- links: {
14
- contactWrapper: null;
15
- icon: {
16
- kind: string;
17
- data: {
18
- id: string;
19
- label: string;
20
- tags: string[];
21
- svgCode: string;
22
- };
23
- };
24
- text: string;
25
- }[];
26
- })[];
27
- bottomSection: null;
28
- copyright: string;
29
- bottomLinks: {
30
- text: string;
31
- separator: null;
32
- }[];
33
- socialIcons: {
34
- icon: {
35
- kind: string;
36
- data: {
37
- id: string;
38
- label: string;
39
- tags: string[];
40
- svgCode: string;
41
- };
42
- };
43
- }[];
44
- };
45
- export type IFooter3Content = typeof DEFAULT_CONTENT;
46
- export declare const Footer3: IBlock;
47
- export {};
48
- //# sourceMappingURL=footer-3.schema.d.ts.map
@@ -1,475 +0,0 @@
1
- const DUMMY_ICON = {
2
- kind: "icon",
3
- data: {
4
- id: "archive-minus",
5
- label: "Archive Minus",
6
- tags: ["archive", "custom", "directional", "minus"],
7
- svgCode: '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M14.5 11.4H9.5C9.09 11.4 8.75 11.06 8.75 10.65C8.75 10.24 9.09 9.90002 9.5 9.90002H14.5C14.91 9.90002 15.25 10.24 15.25 10.65C15.25 11.06 14.91 11.4 14.5 11.4Z" fill="var(--color-icon-primary)"/>\n<path d="M4.92957 22.75C4.50957 22.75 4.11957 22.65 3.76957 22.45C2.99957 22 2.55957 21.09 2.55957 19.96V5.86C2.55957 3.32 4.62957 1.25 7.16957 1.25H16.8196C19.3596 1.25 21.4296 3.32 21.4296 5.86V19.95C21.4296 21.08 20.9896 21.99 20.2196 22.44C19.4496 22.89 18.4396 22.84 17.4496 22.29L12.5696 19.58C12.2796 19.42 11.7096 19.42 11.4196 19.58L6.53957 22.29C5.99957 22.59 5.44957 22.75 4.92957 22.75ZM7.17957 2.75C5.46957 2.75 4.06957 4.15 4.06957 5.86V19.95C4.06957 20.54 4.23957 20.98 4.53957 21.15C4.83957 21.33 5.30957 21.27 5.81957 20.98L10.6996 18.27C11.4396 17.86 12.5596 17.86 13.2996 18.27L18.1796 20.98C18.6896 21.27 19.1596 21.33 19.4596 21.15C19.7596 20.97 19.9296 20.53 19.9296 19.95V5.86C19.9296 4.15 18.5296 2.75 16.8196 2.75H7.17957Z" fill="var(--color-icon-primary)"/>\n</svg>',
8
- },
9
- };
10
- const DEFAULT_CONTENT = {
11
- layout: null,
12
- container: null,
13
- mainFooterWrapper: null,
14
- // All sections unified under links array (like Footer2)
15
- links: [
16
- {
17
- category: "Real Estate Services",
18
- links: [
19
- { text: "Property Development" },
20
- { text: "Investment Advisory" },
21
- { text: "Land Acquisition" },
22
- { text: "Urban Planning" },
23
- { text: "Property Management" },
24
- { text: "Smart Infrastructure" },
25
- ],
26
- },
27
- {
28
- category: "Company",
29
- links: [
30
- { text: "About Us" },
31
- { text: "Leadership" },
32
- { text: "Careers" },
33
- { text: "Contact" },
34
- ],
35
- },
36
- {
37
- category: "Resources",
38
- links: [
39
- { text: "Blog" },
40
- { text: "Market Reports" },
41
- { text: "Case Studies" },
42
- { text: "FAQs" },
43
- { text: "Help Center" },
44
- ],
45
- },
46
- {
47
- category: "Contact Us",
48
- links: [
49
- {
50
- contactWrapper: null,
51
- icon: DUMMY_ICON,
52
- text: "(555) 123-4567",
53
- },
54
- {
55
- contactWrapper: null,
56
- icon: DUMMY_ICON,
57
- text: "info@dreamscape.com",
58
- },
59
- {
60
- contactWrapper: null,
61
- icon: DUMMY_ICON,
62
- text: "120, Part Avenue, New York, NY 213232, USA",
63
- },
64
- ],
65
- },
66
- ],
67
- // Bottom section
68
- bottomSection: null,
69
- copyright: "Copyright © 2025",
70
- bottomLinks: [
71
- { text: "Privacy", separator: null },
72
- { text: "Terms", separator: null },
73
- { text: "Cookie", separator: null },
74
- { text: "Security", separator: null },
75
- { text: "Status", separator: null },
76
- ],
77
- // Social icons
78
- socialIcons: [
79
- {
80
- icon: DUMMY_ICON,
81
- },
82
- {
83
- icon: DUMMY_ICON,
84
- },
85
- {
86
- icon: DUMMY_ICON,
87
- },
88
- {
89
- icon: DUMMY_ICON,
90
- },
91
- ],
92
- };
93
- export const Footer3 = {
94
- category_id: "footer",
95
- title: "Footer 3",
96
- key: "footer-3",
97
- version: "v1",
98
- prompt_description: "Professional footer with company info, service links, and contact details",
99
- content_schema: [
100
- {
101
- key: "layout",
102
- label: "Layout",
103
- field_interface: "LayoutWidget",
104
- },
105
- {
106
- key: "container",
107
- label: "Container",
108
- field_interface: "ContainerWidget",
109
- },
110
- {
111
- key: "mainFooterWrapper",
112
- label: "Main Footer Wrapper",
113
- field_interface: "BoxWidget",
114
- },
115
- // Unified links structure (like Footer2)
116
- {
117
- key: "links",
118
- label: "Links Sections",
119
- field_interface: "BoxWidget",
120
- kind: "group",
121
- fields: [
122
- {
123
- key: "category",
124
- label: "Section Title",
125
- field_interface: "TypographyWidget",
126
- },
127
- {
128
- key: "links",
129
- label: "Links",
130
- field_interface: "BoxWidget",
131
- kind: "group",
132
- fields: [
133
- {
134
- key: "text",
135
- label: "Link Text",
136
- field_interface: "TypographyWidget",
137
- },
138
- {
139
- key: "contactWrapper",
140
- label: "Contact Item Wrapper",
141
- field_interface: "BoxWidget",
142
- },
143
- {
144
- key: "icon",
145
- label: "Contact Icon",
146
- field_interface: "IconWidget",
147
- },
148
- ],
149
- },
150
- ],
151
- },
152
- {
153
- key: "bottomSection",
154
- label: "Bottom Section",
155
- field_interface: "BoxWidget",
156
- },
157
- {
158
- key: "copyright",
159
- label: "Copyright Text",
160
- field_interface: "TypographyWidget",
161
- },
162
- {
163
- key: "bottomLinks",
164
- label: "Bottom Links",
165
- field_interface: "BoxWidget",
166
- kind: "group",
167
- fields: [
168
- {
169
- key: "text",
170
- label: "Link Text",
171
- field_interface: "TypographyWidget",
172
- },
173
- {
174
- key: "separator",
175
- label: "Separator",
176
- field_interface: "BoxWidget",
177
- },
178
- ],
179
- },
180
- {
181
- key: "socialIcons",
182
- label: "Social Icons",
183
- field_interface: "BoxWidget",
184
- kind: "group",
185
- fields: [
186
- {
187
- key: "icon",
188
- label: "Social Icon",
189
- field_interface: "IconWidget",
190
- },
191
- ],
192
- },
193
- ],
194
- layouts: [
195
- {
196
- title: "Default",
197
- key: "default",
198
- content: DEFAULT_CONTENT,
199
- config: {},
200
- styles: {
201
- layout: {
202
- "background-color": "background-1",
203
- "padding-top": "3xl",
204
- "padding-bottom": "none",
205
- },
206
- container: {
207
- "max-width": "1280px",
208
- "margin-left": "auto",
209
- "margin-right": "auto",
210
- "padding-left": "xl",
211
- "padding-right": "xl",
212
- filter: "none",
213
- "padding-bottom": "none",
214
- mobile: {
215
- filter: "none",
216
- },
217
- tablet: {
218
- filter: "none",
219
- display: "block",
220
- },
221
- },
222
- mainFooterWrapper: {
223
- display: "flex",
224
- "grid-template-columns": "repeat(4, minmax(0, 1fr))",
225
- "column-gap": "2xl",
226
- "row-gap": "xl",
227
- "margin-bottom": "none",
228
- "padding-bottom": "2xl",
229
- "border-bottom-width": "1px",
230
- "border-color": "border",
231
- tablet: {
232
- "grid-template-columns": "repeat(2, minmax(0, 1fr))",
233
- filter: "none",
234
- },
235
- mobile: {
236
- "grid-template-columns": "repeat(1, minmax(0, 1fr))",
237
- filter: "none",
238
- "flex-direction": "column",
239
- },
240
- filter: "none",
241
- width: "100%",
242
- "align-items": "start",
243
- "justify-content": "space-between",
244
- },
245
- links_levoGroup: {
246
- display: "flex",
247
- "column-gap": "2xl",
248
- "row-gap": "xl",
249
- tablet: {
250
- filter: "none",
251
- "flex-direction": "column",
252
- display: "flex",
253
- "justify-content": "start",
254
- "align-items": "start",
255
- },
256
- mobile: {
257
- filter: "none",
258
- "flex-direction": "column",
259
- width: "100%",
260
- },
261
- filter: "none",
262
- "justify-content": "space-between",
263
- "align-items": "start",
264
- width: "100%",
265
- },
266
- links: [
267
- {
268
- category: {
269
- "font-size": "base",
270
- "font-weight": "600",
271
- color: "text-1",
272
- "margin-bottom": "xs",
273
- filter: "none",
274
- tablet: {
275
- filter: "none",
276
- },
277
- },
278
- links_levoGroup: {
279
- display: "flex",
280
- "flex-direction": "column",
281
- "row-gap": "xs",
282
- filter: "none",
283
- },
284
- links: [
285
- {
286
- text: {
287
- "font-size": "sm",
288
- color: "text-2",
289
- "line-height": "1.5",
290
- filter: "none",
291
- },
292
- },
293
- ],
294
- },
295
- {
296
- category: {
297
- "font-size": "base",
298
- "font-weight": "600",
299
- color: "text-1",
300
- "margin-bottom": "xs",
301
- filter: "none",
302
- },
303
- links_levoGroup: {
304
- display: "flex",
305
- "flex-direction": "column",
306
- "row-gap": "xs",
307
- filter: "none",
308
- },
309
- links: [
310
- {
311
- text: {
312
- "font-size": "sm",
313
- color: "text-2",
314
- "line-height": "1.5",
315
- filter: "none",
316
- },
317
- },
318
- ],
319
- },
320
- {
321
- category: {
322
- "font-size": "base",
323
- "font-weight": "600",
324
- color: "text-1",
325
- "margin-bottom": "xs",
326
- filter: "none",
327
- },
328
- links_levoGroup: {
329
- display: "flex",
330
- "flex-direction": "column",
331
- "row-gap": "xs",
332
- filter: "none",
333
- },
334
- links: [
335
- {
336
- text: {
337
- "font-size": "sm",
338
- color: "text-2",
339
- "line-height": "1.5",
340
- filter: "none",
341
- },
342
- },
343
- ],
344
- },
345
- {
346
- category: {
347
- "font-size": "base",
348
- "font-weight": "600",
349
- color: "text-1",
350
- "margin-bottom": "xs",
351
- filter: "none",
352
- },
353
- links_levoGroup: {
354
- display: "flex",
355
- "flex-direction": "column",
356
- "row-gap": "md",
357
- filter: "none",
358
- },
359
- links: [
360
- {
361
- contactWrapper: {
362
- display: "flex",
363
- "align-items": "center",
364
- "column-gap": "xs",
365
- filter: "none",
366
- },
367
- icon: {
368
- "object-fit": "contain",
369
- "flex-shrink": "0",
370
- filter: "none",
371
- width: "20px",
372
- height: "20px",
373
- },
374
- text: {
375
- "font-size": "sm",
376
- color: "text-2",
377
- "line-height": "1.5",
378
- filter: "none",
379
- },
380
- },
381
- {
382
- contactWrapper: {
383
- filter: "none",
384
- display: "flex",
385
- "column-gap": "xs",
386
- "align-items": "center",
387
- },
388
- icon: {
389
- filter: "none",
390
- },
391
- },
392
- {
393
- contactWrapper: {
394
- filter: "none",
395
- mobile: {
396
- filter: "none",
397
- },
398
- display: "flex",
399
- "flex-shrink": "0",
400
- "column-gap": "xs",
401
- width: "100%",
402
- "align-items": "center",
403
- },
404
- text: {
405
- filter: "none",
406
- "max-width": "250px",
407
- },
408
- },
409
- ],
410
- },
411
- ],
412
- bottomSection: {
413
- display: "flex",
414
- "justify-content": "space-between",
415
- "align-items": "center",
416
- "flex-wrap": "wrap",
417
- "row-gap": "base",
418
- mobile: {
419
- "flex-direction": "column",
420
- "align-items": "center",
421
- filter: "none",
422
- "justify-content": "center",
423
- display: "flex",
424
- },
425
- filter: "none",
426
- "margin-top": "base",
427
- "margin-bottom": "none",
428
- "padding-bottom": "base",
429
- tablet: {
430
- filter: "none",
431
- "flex-direction": "column",
432
- },
433
- },
434
- copyright: {
435
- "font-size": "sm",
436
- color: "text-2",
437
- },
438
- bottomLinks_levoGroup: {
439
- display: "flex",
440
- "align-items": "center",
441
- "column-gap": "base",
442
- "flex-wrap": "wrap",
443
- mobile: {
444
- filter: "none",
445
- display: "flex",
446
- "justify-content": "center",
447
- "align-items": "center",
448
- "row-gap": "md",
449
- },
450
- tablet: {
451
- filter: "none",
452
- },
453
- },
454
- "bottomLinks.$.text": {
455
- "font-size": "sm",
456
- color: "text-2",
457
- },
458
- "bottomLinks.$.separator": {
459
- width: "1px",
460
- height: "16px",
461
- "background-color": "border",
462
- },
463
- socialIcons_levoGroup: {
464
- display: "flex",
465
- "align-items": "center",
466
- "column-gap": "xs",
467
- filter: "none",
468
- },
469
- "socialIcons.$.icon": {
470
- "object-fit": "contain",
471
- },
472
- },
473
- },
474
- ],
475
- };
@@ -1,6 +0,0 @@
1
- import React from "react";
2
- import { type ILevoBlockBaseProps } from "@levo-so/studio";
3
- import { type IFooter4Content } from "./footer-4.schema";
4
- declare const Footer4: React.FC<ILevoBlockBaseProps<IFooter4Content>>;
5
- export default Footer4;
6
- //# sourceMappingURL=footer-4.d.ts.map
@@ -1,5 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import React from "react";
3
- import { Box, Container, Icon, Image, Section, Typography, } from "@levo-so/studio";
4
- const Footer4 = ({ content, }) => (_jsx(Section, { elementKey: "layout", children: _jsxs(Container, { elementKey: "container", children: [_jsxs(Box, { elementKey: "contentWrapper", children: [_jsxs(Box, { elementKey: "logoTextWrapper", children: [_jsx(Image, { elementKey: "logo", height: 26, width: 26, alt: "footer-logo" }), _jsx(Typography, { elementKey: "logoDescription" }), _jsx(Box, { elementKey: "icon_links_levoGroup", "data-levo_group": true, children: (content?.icon_links ?? [])?.map((_, index) => (_jsxs(Box, { "data-levo_group_item": true, elementKey: `icon_links.${index}.iconWrapper`, children: [_jsx(Icon, { elementKey: `icon_links.${index}.icon` }), _jsx(Typography, { elementKey: `icon_links.${index}.description` })] }, `footer-4-icon-${index}`))) })] }), _jsx(Box, { "data-levo_group": true, elementKey: "links_levoGroup", children: (content?.links ?? [])?.map((_, index) => (_jsxs(Box, { elementKey: `links.${index}.links`, "data-levo_group_item": true, children: [_jsx(Typography, { elementKey: `links.${index}.category` }), _jsx(Box, { elementKey: `links.${index}.links_levoGroup`, "data-levo_group": true, children: (content?.links?.[index]?.links ?? [])?.map((_, subIndex) => (_jsxs(Box, { elementKey: `links.${index}.links.${subIndex}.iconCtaWrapper`, "data-levo_group_item": true, children: [_jsx(Icon, { elementKey: `links.${index}.links.${subIndex}.icon` }), _jsx(Typography, { elementKey: `links.${index}.links.${subIndex}.cta` }, `footer-4-links-${index}-${subIndex}`)] }, `footer-4-links-${index}-${subIndex}`))) })] }, `footer-4-links-${index}`))) })] }), _jsxs(Box, { elementKey: "footerBottomWrapper", children: [_jsx(Typography, { elementKey: "copyright" }), _jsx(Box, { elementKey: "footerBottomRightArea_levoGroup", "data-levo_group": true, children: (content?.footerBottomRightArea ?? [])?.map((_, index) => (_jsxs(React.Fragment, { children: [_jsx(Typography, { "data-levo_group_item": true, elementKey: `footerBottomRightArea.${index}.cta` }), index < (content?.footerBottomRightArea?.length ?? 0) - 1 && (_jsx(Box, { elementKey: `footerBottomRightArea.${index}.separator`, "data-levo_group_item": true }))] }, `footer-4-right-area-${index}`))) })] })] }) }));
5
- export default Footer4;
@@ -1,71 +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
- logoTextWrapper: null;
7
- logo: {
8
- id: string;
9
- location: string;
10
- kind: string;
11
- mimetype: string;
12
- srcset: {
13
- "1080w": string;
14
- "1200w": string;
15
- "1920w": string;
16
- "320w": string;
17
- "640w": string;
18
- "750w": string;
19
- "828w": string;
20
- path: string;
21
- };
22
- };
23
- logoDescription: string;
24
- icon_links: {
25
- iconWrapper: null;
26
- icon: {
27
- kind: string;
28
- data: {
29
- id: string;
30
- label: string;
31
- tags: string[];
32
- svgCode: string;
33
- };
34
- };
35
- description: string;
36
- link: null;
37
- }[];
38
- links: ({
39
- category: string;
40
- links: {
41
- cta: string;
42
- icon: null;
43
- iconCtaWrapper: null;
44
- }[];
45
- } | {
46
- category: string;
47
- links: {
48
- iconCtaWrapper: null;
49
- cta: string;
50
- icon: {
51
- kind: string;
52
- data: {
53
- id: string;
54
- label: string;
55
- tags: string[];
56
- svgCode: string;
57
- };
58
- };
59
- }[];
60
- })[];
61
- copyright: string;
62
- footerBottomRightArea: {
63
- link: null;
64
- cta: string;
65
- separator: null;
66
- }[];
67
- };
68
- export type IFooter4Content = typeof DEFAULT_CONTENT;
69
- export declare const Footer4: IBlock;
70
- export {};
71
- //# sourceMappingURL=footer-4.schema.d.ts.map