@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
@@ -0,0 +1,631 @@
1
+ import type { IBlock } from "@levo-so/studio";
2
+
3
+ const DUMMY_ICON = {
4
+ kind: "icon",
5
+ data: {
6
+ id: "archive-minus",
7
+ label: "Archive Minus",
8
+ tags: ["archive", "custom", "directional", "minus"],
9
+ svgCode:
10
+ '<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>',
11
+ },
12
+ };
13
+
14
+ const ICON_IMAGE = {
15
+ id: "7141014160938075687",
16
+ location: "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH.png",
17
+ kind: "image",
18
+ mimetype: "image/png",
19
+ srcset: {
20
+ "1080w":
21
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1080w.webp",
22
+ "1200w":
23
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1200w.webp",
24
+ "1920w":
25
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1920w.webp",
26
+ "320w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-320w.webp",
27
+ "640w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-640w.webp",
28
+ "750w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-750w.webp",
29
+ "828w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-828w.webp",
30
+ 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",
31
+ },
32
+ };
33
+
34
+ const PRODUCT_IMAGE = {
35
+ id: "7141014160938075687",
36
+ location: "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH.png",
37
+ kind: "image",
38
+ mimetype: "image/png",
39
+ srcset: {
40
+ "1080w":
41
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1080w.webp",
42
+ "1200w":
43
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1200w.webp",
44
+ "1920w":
45
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1920w.webp",
46
+ "320w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-320w.webp",
47
+ "640w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-640w.webp",
48
+ "750w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-750w.webp",
49
+ "828w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-828w.webp",
50
+ 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",
51
+ },
52
+ };
53
+
54
+ const DEFAULT_CONTENT = {
55
+ layout: null,
56
+ container: null,
57
+ content_wrapper: null,
58
+ header_section: null,
59
+ title: "Enterprise Solutions Overview",
60
+ subtitle: "Comprehensive Business Technology Platform",
61
+
62
+ // Left specifications area
63
+ specifications_wrapper: null,
64
+ specifications: [
65
+ {
66
+ spec_item: null,
67
+ icon: DUMMY_ICON,
68
+ value: "99.9%",
69
+ label: "Uptime Guarantee",
70
+ },
71
+ {
72
+ spec_item: null,
73
+ icon: DUMMY_ICON,
74
+ value: "24/7",
75
+ label: "Customer Support",
76
+ },
77
+ {
78
+ spec_item: null,
79
+ icon: DUMMY_ICON,
80
+ value: "256-bit",
81
+ label: "Encryption Standard",
82
+ },
83
+ {
84
+ spec_item: null,
85
+ icon: DUMMY_ICON,
86
+ value: "10,000+",
87
+ label: "Active Users",
88
+ },
89
+ {
90
+ spec_item: null,
91
+ icon: DUMMY_ICON,
92
+ value: "50TB",
93
+ label: "Storage Capacity",
94
+ },
95
+ {
96
+ spec_item: null,
97
+ icon: DUMMY_ICON,
98
+ value: "12 Months",
99
+ label: "Warranty Period",
100
+ },
101
+ ],
102
+
103
+ // Specifications 2 section
104
+ specifications_2_wrapper: null,
105
+ specifications_2_title: "Service Level Agreements",
106
+ specifications_2: [
107
+ {
108
+ spec_2_item: null,
109
+ icon: DUMMY_ICON,
110
+ value: "Response Time: 4 hours | Resolution: 24 hours",
111
+ label: "Critical Issue Support",
112
+ },
113
+ {
114
+ spec_2_item: null,
115
+ icon: DUMMY_ICON,
116
+ value: "Response Time: 8 hours | Resolution: 48 hours",
117
+ label: "Standard Issue Support",
118
+ },
119
+ ],
120
+
121
+ // Right product image
122
+ product_image: PRODUCT_IMAGE,
123
+ };
124
+
125
+ export type IFeatures4Content = typeof DEFAULT_CONTENT;
126
+
127
+ export const Features4: IBlock = {
128
+ category_id: "features",
129
+ title: "Features 4",
130
+ key: "features-4",
131
+ version: "v1",
132
+ prompt_description:
133
+ "Product specification layout with main title, specifications grid on the left with icons and values, dimensions section, and large product image on the right side.",
134
+ content_schema: [
135
+ {
136
+ key: "layout",
137
+ label: "Layout",
138
+ field_interface: "LayoutWidget",
139
+ hint: {
140
+ prompt_description:
141
+ "Main layout container for the product specification block with proper spacing and background.",
142
+ },
143
+ },
144
+ {
145
+ key: "container",
146
+ label: "Container",
147
+ field_interface: "ContainerWidget",
148
+ hint: {
149
+ prompt_description:
150
+ "Container providing structural alignment and padding for the entire product specification section.",
151
+ },
152
+ },
153
+ {
154
+ key: "header_section",
155
+ label: "Header Section",
156
+ field_interface: "BoxWidget",
157
+ hint: {
158
+ prompt_description:
159
+ "Header container for the main title and subtitle, centered above the content.",
160
+ },
161
+ },
162
+ {
163
+ key: "title",
164
+ label: "Title",
165
+ field_interface: "HeadingWidget",
166
+ hint: {
167
+ prompt_description:
168
+ "Main heading for the product specification section. Use clear, professional language that describes the product or specification overview.",
169
+ min_characters: 12,
170
+ max_characters: 40,
171
+ },
172
+ },
173
+ {
174
+ key: "subtitle",
175
+ label: "Subtitle",
176
+ field_interface: "TypographyWidget",
177
+ hint: {
178
+ prompt_description:
179
+ "Supporting subtitle providing additional context about the product. Keep it concise and descriptive.",
180
+ min_characters: 20,
181
+ max_characters: 60,
182
+ },
183
+ },
184
+ {
185
+ key: "content_wrapper",
186
+ label: "Content Wrapper",
187
+ field_interface: "BoxWidget",
188
+ hint: {
189
+ prompt_description:
190
+ "Main content wrapper organizing the layout between specifications on the left and product image on the right.",
191
+ },
192
+ },
193
+ {
194
+ key: "specifications_wrapper",
195
+ label: "Specifications Wrapper",
196
+ field_interface: "BoxWidget",
197
+ hint: {
198
+ prompt_description:
199
+ "Container for the left side specifications grid, organizing individual specification items.",
200
+ },
201
+ },
202
+ {
203
+ key: "specifications",
204
+ label: "Specifications",
205
+ kind: "group",
206
+ field_interface: "BoxWidget",
207
+ fields: [
208
+ {
209
+ key: "spec_item",
210
+ label: "Specification Item",
211
+ field_interface: "BoxWidget",
212
+ hint: {
213
+ prompt_description:
214
+ "Individual specification item container with icon, value, and label.",
215
+ },
216
+ },
217
+ {
218
+ key: "icon",
219
+ label: "Icon",
220
+ field_interface: "IconWidget",
221
+ hint: {
222
+ prompt_description:
223
+ "Small icon representing the specification category. Use simple, recognizable icons related to the specification type.",
224
+ },
225
+ },
226
+ {
227
+ key: "value",
228
+ label: "Value",
229
+ field_interface: "HeadingWidget",
230
+ hint: {
231
+ prompt_description:
232
+ "The main specification value (e.g., '110V-240V, 5A', '250 Kg'). Keep it clear and concise.",
233
+ min_characters: 2,
234
+ max_characters: 20,
235
+ },
236
+ },
237
+ {
238
+ key: "label",
239
+ label: "Label",
240
+ field_interface: "TypographyWidget",
241
+ hint: {
242
+ prompt_description:
243
+ "Descriptive label for the specification (e.g., 'Power Requirement', 'Weight'). Use clear, professional terminology.",
244
+ min_characters: 4,
245
+ max_characters: 25,
246
+ },
247
+ },
248
+ ],
249
+ },
250
+ {
251
+ key: "specifications_2_wrapper",
252
+ label: "Specifications 2 Wrapper",
253
+ field_interface: "BoxWidget",
254
+ hint: {
255
+ prompt_description:
256
+ "Container for the specifications 2 section, typically placed below the main specifications.",
257
+ },
258
+ },
259
+ {
260
+ key: "specifications_2_title",
261
+ label: "Specifications 2 Title",
262
+ field_interface: "HeadingWidget",
263
+ hint: {
264
+ prompt_description:
265
+ "Title for the specifications 2 section (e.g., 'Service Level Agreements'). Provide clear context for the additional specifications.",
266
+ min_characters: 15,
267
+ max_characters: 50,
268
+ },
269
+ },
270
+ {
271
+ key: "specifications_2",
272
+ label: "Specifications 2",
273
+ kind: "group",
274
+ field_interface: "BoxWidget",
275
+ fields: [
276
+ {
277
+ key: "spec_2_item",
278
+ label: "Specification 2 Item",
279
+ field_interface: "BoxWidget",
280
+ hint: {
281
+ prompt_description:
282
+ "Individual specification 2 item container with icon, value, and description.",
283
+ },
284
+ },
285
+ {
286
+ key: "icon",
287
+ label: "Icon",
288
+ field_interface: "IconWidget",
289
+ hint: {
290
+ prompt_description:
291
+ "Icon representing the specification type or configuration. Use icons that clearly indicate the specification category.",
292
+ },
293
+ },
294
+ {
295
+ key: "value",
296
+ label: "Value",
297
+ field_interface: "HeadingWidget",
298
+ hint: {
299
+ prompt_description:
300
+ "Detailed specification information (e.g., 'Response Time: 4 hours | Resolution: 24 hours'). Use precise details with proper formatting.",
301
+ min_characters: 10,
302
+ max_characters: 60,
303
+ },
304
+ },
305
+ {
306
+ key: "label",
307
+ label: "Label",
308
+ field_interface: "TypographyWidget",
309
+ hint: {
310
+ prompt_description:
311
+ "Description of the specification (e.g., 'Critical Issue Support'). Provide clear context for the specification.",
312
+ min_characters: 8,
313
+ max_characters: 40,
314
+ },
315
+ },
316
+ ],
317
+ },
318
+ {
319
+ key: "product_image",
320
+ label: "Product Image",
321
+ field_interface: "MediaWidget",
322
+ hint: {
323
+ prompt_description:
324
+ "Main product image showcasing the item in context. Use high-quality, professional product photography that clearly shows the product's design and key features.",
325
+ orientation: "landscape",
326
+ size: "large",
327
+ usecase: "hero",
328
+ },
329
+ },
330
+ ],
331
+ layouts: [
332
+ {
333
+ title: "Default",
334
+ key: "default",
335
+ styles: {
336
+ layout: {
337
+ width: "100%",
338
+ "padding-top": "5xl",
339
+ "padding-bottom": "5xl",
340
+ "padding-left": "8xl",
341
+ "padding-right": "8xl",
342
+ tablet: {
343
+ "padding-top": "3xl",
344
+ "padding-bottom": "3xl",
345
+ "padding-left": "4xl",
346
+ "padding-right": "4xl",
347
+ },
348
+ },
349
+ container: {
350
+ "margin-left": "auto",
351
+ "margin-right": "auto",
352
+ "max-width": "7xl",
353
+ mobile: {
354
+ filter: "none",
355
+ },
356
+ filter: "none",
357
+ },
358
+ content_wrapper: {
359
+ display: "flex",
360
+ "align-items": "center",
361
+ "column-gap": "4xl",
362
+ tablet: {
363
+ "flex-direction": "column",
364
+ "row-gap": "3xl",
365
+ filter: "none",
366
+ },
367
+ },
368
+ header_section: {
369
+ "text-align": "center",
370
+ "margin-bottom": "4xl",
371
+ },
372
+ title: {
373
+ "font-size": "4xl",
374
+ "font-weight": "700",
375
+ color: "text-1",
376
+ "margin-bottom": "sm",
377
+ tablet: {
378
+ "font-size": "3xl",
379
+ },
380
+ },
381
+ subtitle: {
382
+ "font-size": "lg",
383
+ color: "text-2",
384
+ },
385
+ specifications_wrapper: {
386
+ flex: "1",
387
+ "max-width": "50%",
388
+ width: "100%",
389
+ tablet: {
390
+ flex: "auto",
391
+ "max-width": "100%",
392
+ filter: "none",
393
+ },
394
+ filter: "none",
395
+ mobile: {
396
+ filter: "none",
397
+ },
398
+ },
399
+ specifications_levoGroup: {
400
+ display: "grid",
401
+ "grid-template-columns": "repeat(2, 1fr)",
402
+ gap: "xl",
403
+ "margin-bottom": "3xl",
404
+ mobile: {
405
+ "grid-template-columns": "1fr",
406
+ gap: "lg",
407
+ },
408
+ },
409
+ specifications: [
410
+ {
411
+ spec_item: {
412
+ display: "flex",
413
+ "align-items": "start",
414
+ "column-gap": "sm",
415
+ },
416
+ icon: {
417
+ width: "1.5rem",
418
+ height: "1.5rem",
419
+ "margin-top": "2xs",
420
+ color: "brand",
421
+ },
422
+ value: {
423
+ "font-size": "lg",
424
+ "font-weight": "600",
425
+ color: "text-1",
426
+ "margin-bottom": "3xs",
427
+ },
428
+ label: {
429
+ "font-size": "sm",
430
+ color: "text-2",
431
+ },
432
+ },
433
+ {
434
+ spec_item: {
435
+ display: "flex",
436
+ "align-items": "start",
437
+ "column-gap": "sm",
438
+ },
439
+ icon: {
440
+ width: "1.5rem",
441
+ height: "1.5rem",
442
+ "margin-top": "2xs",
443
+ color: "brand",
444
+ },
445
+ value: {
446
+ "font-size": "lg",
447
+ "font-weight": "600",
448
+ color: "text-1",
449
+ "margin-bottom": "3xs",
450
+ },
451
+ label: {
452
+ "font-size": "sm",
453
+ color: "text-2",
454
+ },
455
+ },
456
+ {
457
+ spec_item: {
458
+ display: "flex",
459
+ "align-items": "start",
460
+ "column-gap": "sm",
461
+ },
462
+ icon: {
463
+ width: "1.5rem",
464
+ height: "1.5rem",
465
+ "margin-top": "2xs",
466
+ color: "brand",
467
+ },
468
+ value: {
469
+ "font-size": "lg",
470
+ "font-weight": "600",
471
+ color: "text-1",
472
+ "margin-bottom": "3xs",
473
+ },
474
+ label: {
475
+ "font-size": "sm",
476
+ color: "text-2",
477
+ },
478
+ },
479
+ {
480
+ spec_item: {
481
+ display: "flex",
482
+ "align-items": "start",
483
+ "column-gap": "sm",
484
+ },
485
+ icon: {
486
+ width: "1.5rem",
487
+ height: "1.5rem",
488
+ "margin-top": "2xs",
489
+ color: "brand",
490
+ },
491
+ value: {
492
+ "font-size": "lg",
493
+ "font-weight": "600",
494
+ color: "text-1",
495
+ "margin-bottom": "3xs",
496
+ },
497
+ label: {
498
+ "font-size": "sm",
499
+ color: "text-2",
500
+ },
501
+ },
502
+ {
503
+ spec_item: {
504
+ display: "flex",
505
+ "align-items": "start",
506
+ "column-gap": "sm",
507
+ },
508
+ icon: {
509
+ width: "1.5rem",
510
+ height: "1.5rem",
511
+ "margin-top": "2xs",
512
+ color: "brand",
513
+ },
514
+ value: {
515
+ "font-size": "lg",
516
+ "font-weight": "600",
517
+ color: "text-1",
518
+ "margin-bottom": "3xs",
519
+ },
520
+ label: {
521
+ "font-size": "sm",
522
+ color: "text-2",
523
+ },
524
+ },
525
+ {
526
+ spec_item: {
527
+ display: "flex",
528
+ "align-items": "start",
529
+ "column-gap": "sm",
530
+ },
531
+ icon: {
532
+ width: "1.5rem",
533
+ height: "1.5rem",
534
+ "margin-top": "2xs",
535
+ color: "brand",
536
+ },
537
+ value: {
538
+ "font-size": "lg",
539
+ "font-weight": "600",
540
+ color: "text-1",
541
+ "margin-bottom": "3xs",
542
+ },
543
+ label: {
544
+ "font-size": "sm",
545
+ color: "text-2",
546
+ },
547
+ },
548
+ ],
549
+ specifications_2_wrapper: {
550
+ "background-color": "white",
551
+ "border-radius": "xl",
552
+ padding: "lg",
553
+ "border-width": "1px",
554
+ "border-color": "border",
555
+ "border-style": "solid",
556
+ },
557
+ specifications_2_title: {
558
+ "font-size": "lg",
559
+ "font-weight": "600",
560
+ color: "text-1",
561
+ "margin-bottom": "base",
562
+ },
563
+ specifications_2_levoGroup: {
564
+ display: "flex",
565
+ "flex-direction": "column",
566
+ gap: "base",
567
+ },
568
+ specifications_2: [
569
+ {
570
+ spec_2_item: {
571
+ display: "flex",
572
+ "align-items": "start",
573
+ "column-gap": "sm",
574
+ },
575
+ icon: {
576
+ width: "1.25rem",
577
+ height: "1.25rem",
578
+ "margin-top": "2xs",
579
+ color: "brand",
580
+ },
581
+ value: {
582
+ "font-size": "base",
583
+ "font-weight": "600",
584
+ color: "text-1",
585
+ "margin-bottom": "3xs",
586
+ },
587
+ label: {
588
+ "font-size": "sm",
589
+ color: "text-2",
590
+ },
591
+ },
592
+ {
593
+ spec_2_item: {
594
+ display: "flex",
595
+ "align-items": "start",
596
+ "column-gap": "sm",
597
+ },
598
+ icon: {
599
+ width: "1.25rem",
600
+ height: "1.25rem",
601
+ "margin-top": "2xs",
602
+ color: "brand",
603
+ },
604
+ value: {
605
+ "font-size": "base",
606
+ "font-weight": "600",
607
+ color: "text-1",
608
+ "margin-bottom": "3xs",
609
+ },
610
+ label: {
611
+ "font-size": "sm",
612
+ color: "text-2",
613
+ },
614
+ },
615
+ ],
616
+ product_image: {
617
+ width: "50%",
618
+ height: "100%",
619
+ "border-radius": "xl",
620
+ "object-fit": "cover",
621
+ tablet: {
622
+ filter: "none",
623
+ width: "100%",
624
+ },
625
+ },
626
+ },
627
+ content: DEFAULT_CONTENT,
628
+ config: {},
629
+ },
630
+ ],
631
+ };
@@ -0,0 +1,75 @@
1
+ import {
2
+ type ILevoBlockBaseProps,
3
+ Box,
4
+ Container,
5
+ Heading,
6
+ Icon,
7
+ Media,
8
+ Section,
9
+ Typography,
10
+ } from "@levo-so/studio";
11
+
12
+ import type { IFeatures4Content } from "./features-4.schema";
13
+
14
+ const Features4: React.FC<ILevoBlockBaseProps<IFeatures4Content>> = ({
15
+ content,
16
+ }) => (
17
+ <Section elementKey="layout">
18
+ <Container elementKey="container">
19
+ <Box elementKey="header_section">
20
+ <Heading elementKey="title" />
21
+ <Typography elementKey="subtitle" />
22
+ </Box>
23
+
24
+ <Box elementKey="content_wrapper">
25
+ <Box elementKey="specifications_wrapper">
26
+ <Box elementKey="specifications_levoGroup" data-levo_group>
27
+ {(content?.specifications ?? [])?.map((_, index) => (
28
+ <Box
29
+ elementKey={`specifications.${index}.spec_item`}
30
+ key={`features-4-spec-${index}`}
31
+ data-levo_group_item
32
+ >
33
+ <Icon elementKey={`specifications.${index}.icon`} />
34
+ <Box elementKey={`specifications.${index}.text_wrapper`}>
35
+ <Heading elementKey={`specifications.${index}.value`} />
36
+ <Typography elementKey={`specifications.${index}.label`} />
37
+ </Box>
38
+ </Box>
39
+ ))}
40
+ </Box>
41
+
42
+ <Box elementKey="specifications_2_wrapper">
43
+ <Heading elementKey="specifications_2_title" />
44
+ <Box elementKey="specifications_2_levoGroup" data-levo_group>
45
+ {(content?.specifications_2 ?? [])?.map((_, index) => (
46
+ <Box
47
+ elementKey={`specifications_2.${index}.spec_2_item`}
48
+ key={`features-4-spec-2-${index}`}
49
+ data-levo_group_item
50
+ >
51
+ <Icon elementKey={`specifications_2.${index}.icon`} />
52
+ <Box elementKey={`specifications_2.${index}.text_wrapper`}>
53
+ <Heading elementKey={`specifications_2.${index}.value`} />
54
+ <Typography
55
+ elementKey={`specifications_2.${index}.label`}
56
+ />
57
+ </Box>
58
+ </Box>
59
+ ))}
60
+ </Box>
61
+ </Box>
62
+ </Box>
63
+
64
+ <Media
65
+ elementKey="product_image"
66
+ alt="Product specification image"
67
+ width={640}
68
+ height={480}
69
+ />
70
+ </Box>
71
+ </Container>
72
+ </Section>
73
+ );
74
+
75
+ export default Features4;