@levo-so/blocks 0.1.1 → 0.1.52

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (501) hide show
  1. package/package.json +6 -10
  2. package/src/blocks/about-us/about-us-1.schema.ts +577 -0
  3. package/src/blocks/about-us/about-us-1.tsx +53 -0
  4. package/src/blocks/about-us/about-us-2.schema.ts +269 -0
  5. package/src/blocks/about-us/about-us-2.tsx +47 -0
  6. package/src/blocks/blogs/blog-listing-1.schema.ts +473 -0
  7. package/src/blocks/blogs/blog-listing-1.tsx +102 -0
  8. package/src/blocks/blogs/blog-listing-2.schema.ts +3718 -0
  9. package/src/blocks/blogs/blog-listing-2.tsx +88 -0
  10. package/src/blocks/blogs/blog-listing-3.schema.ts +2476 -0
  11. package/src/blocks/blogs/blog-listing-3.tsx +84 -0
  12. package/src/blocks/blogs/blog-post-1.schema.ts +400 -0
  13. package/src/blocks/blogs/blog-post-1.tsx +52 -0
  14. package/src/blocks/blogs/blog-post-2.schema.ts +791 -0
  15. package/src/blocks/blogs/blog-post-2.tsx +131 -0
  16. package/src/blocks/blogs/blog-post-3.schema.ts +284 -0
  17. package/src/blocks/blogs/blog-post-3.tsx +58 -0
  18. package/src/blocks/cards/cards-10.schema.ts +1012 -0
  19. package/src/blocks/cards/cards-10.tsx +48 -0
  20. package/src/blocks/cards/cards-11.schema.ts +918 -0
  21. package/src/blocks/cards/cards-11.tsx +50 -0
  22. package/src/blocks/cards/cards-12.schema.ts +578 -0
  23. package/src/blocks/cards/cards-12.tsx +54 -0
  24. package/src/blocks/cards/cards-13.schema.ts +615 -0
  25. package/src/blocks/cards/cards-13.tsx +67 -0
  26. package/src/blocks/cards/cards-2.schema.ts +290 -0
  27. package/src/blocks/cards/cards-2.tsx +42 -0
  28. package/src/blocks/cards/cards-3.schema.ts +355 -0
  29. package/src/blocks/cards/cards-3.tsx +49 -0
  30. package/src/blocks/cards/cards-4.schema.ts +655 -0
  31. package/src/blocks/cards/cards-4.tsx +50 -0
  32. package/src/blocks/cards/cards-5.schema.ts +245 -0
  33. package/src/blocks/cards/cards-5.tsx +34 -0
  34. package/src/blocks/cards/cards-6.schema.ts +2139 -0
  35. package/src/blocks/cards/cards-6.tsx +140 -0
  36. package/src/blocks/cards/cards-7.schema.ts +3538 -0
  37. package/src/blocks/cards/cards-7.tsx +197 -0
  38. package/src/blocks/cards/cards-8.schema.ts +691 -0
  39. package/src/blocks/cards/cards-8.tsx +43 -0
  40. package/src/blocks/cards/cards-9.schema.ts +827 -0
  41. package/src/blocks/cards/cards-9.tsx +54 -0
  42. package/src/blocks/carousel/carousel-1.schema.ts +250 -0
  43. package/src/blocks/carousel/carousel-1.tsx +79 -0
  44. package/src/blocks/contact-us/contact-us-1.schema.ts +233 -0
  45. package/src/blocks/contact-us/contact-us-1.tsx +39 -0
  46. package/src/blocks/contact-us/contact-us-2.schema.ts +524 -0
  47. package/src/blocks/contact-us/contact-us-2.tsx +71 -0
  48. package/src/blocks/content/content-1.schema.ts +862 -0
  49. package/src/blocks/content/content-1.tsx +69 -0
  50. package/src/blocks/content/content-2.schema.ts +212 -0
  51. package/src/blocks/content/content-2.tsx +32 -0
  52. package/src/blocks/content/content-3.schema.ts +766 -0
  53. package/src/blocks/content/content-3.tsx +55 -0
  54. package/src/blocks/content/content-4.schema.ts +287 -0
  55. package/src/blocks/content/content-4.tsx +47 -0
  56. package/src/blocks/content/content-5.schema.ts +944 -0
  57. package/src/blocks/content/content-5.tsx +59 -0
  58. package/src/blocks/content/content-6.schema.ts +991 -0
  59. package/src/blocks/content/content-6.tsx +62 -0
  60. package/src/blocks/content/content-7.schema.ts +723 -0
  61. package/src/blocks/content/content-7.tsx +53 -0
  62. package/src/blocks/cta/cta-1.schema.ts +353 -0
  63. package/src/blocks/cta/cta-1.tsx +33 -0
  64. package/src/blocks/cta/cta-2.schema.ts +209 -0
  65. package/src/blocks/cta/cta-2.tsx +28 -0
  66. package/src/blocks/cta/cta-3.schema.ts +216 -0
  67. package/src/blocks/cta/cta-3.tsx +48 -0
  68. package/src/blocks/embed/embed-1.schema.ts +153 -0
  69. package/src/blocks/embed/embed-1.tsx +38 -0
  70. package/src/blocks/event/event-details.schema.ts +732 -0
  71. package/src/blocks/event/event-details.tsx +102 -0
  72. package/src/blocks/event/event-listing-2.schema.ts +555 -0
  73. package/src/blocks/event/event-listing-2.tsx +94 -0
  74. package/src/blocks/event/event-listing-3.schema.ts +621 -0
  75. package/src/blocks/event/event-listing-3.tsx +90 -0
  76. package/src/blocks/event/event-listing-4.schema.ts +3528 -0
  77. package/src/blocks/event/event-listing-4.tsx +97 -0
  78. package/src/blocks/event/event-listing.schema.ts +1353 -0
  79. package/src/blocks/event/event-listing.tsx +88 -0
  80. package/src/blocks/faq/faq-1.schema.ts +360 -0
  81. package/src/blocks/faq/faq-1.tsx +65 -0
  82. package/src/blocks/faq/faq-2.schema.ts +358 -0
  83. package/src/blocks/faq/faq-2.tsx +84 -0
  84. package/src/blocks/faq/faq-3.schema.ts +475 -0
  85. package/src/blocks/faq/faq-3.tsx +70 -0
  86. package/src/blocks/features/features-1/features-1.schema.ts +165 -0
  87. package/src/blocks/features/features-1/features-1.tsx +48 -0
  88. package/src/blocks/features/features-1/variants/default.ts +206 -0
  89. package/{dist/blocks/features/features-1/variants/index.js → src/blocks/features/features-1/variants/index.ts} +7 -1
  90. package/src/blocks/features/features-1/variants/stylized-cards-v1.ts +138 -0
  91. package/src/blocks/features/features-1/variants/stylized-cards-v2.ts +487 -0
  92. package/src/blocks/features/features-2.schema.ts +471 -0
  93. package/src/blocks/features/features-2.tsx +66 -0
  94. package/src/blocks/features/features-3.schema.ts +424 -0
  95. package/src/blocks/features/features-3.tsx +56 -0
  96. package/src/blocks/features/features-4.schema.ts +616 -0
  97. package/src/blocks/features/features-4.tsx +75 -0
  98. package/src/blocks/features/features-5.schema.ts +728 -0
  99. package/src/blocks/features/features-5.tsx +49 -0
  100. package/src/blocks/features/features-6.schema.ts +849 -0
  101. package/src/blocks/features/features-6.tsx +125 -0
  102. package/src/blocks/footer/footer-1.schema.ts +612 -0
  103. package/src/blocks/footer/footer-1.tsx +90 -0
  104. package/src/blocks/footer/footer-2.schema.ts +913 -0
  105. package/src/blocks/footer/footer-2.tsx +77 -0
  106. package/src/blocks/footer/footer-3.schema.ts +412 -0
  107. package/src/blocks/footer/footer-3.tsx +99 -0
  108. package/src/blocks/footer/footer-4.schema.ts +649 -0
  109. package/src/blocks/footer/footer-4.tsx +97 -0
  110. package/src/blocks/footer/footer-5.schema.ts +435 -0
  111. package/src/blocks/footer/footer-5.tsx +99 -0
  112. package/src/blocks/footer/footer-6.schema.ts +730 -0
  113. package/src/blocks/footer/footer-6.tsx +100 -0
  114. package/src/blocks/hero/hero-1.schema.ts +746 -0
  115. package/src/blocks/hero/hero-1.tsx +52 -0
  116. package/src/blocks/hero/hero-10.schema.ts +175 -0
  117. package/src/blocks/hero/hero-10.tsx +35 -0
  118. package/src/blocks/hero/hero-2.schema.ts +272 -0
  119. package/src/blocks/hero/hero-2.tsx +57 -0
  120. package/src/blocks/hero/hero-3.schema.ts +419 -0
  121. package/src/blocks/hero/hero-3.tsx +50 -0
  122. package/src/blocks/hero/hero-4.schema.ts +425 -0
  123. package/src/blocks/hero/hero-4.tsx +89 -0
  124. package/src/blocks/hero/hero-5.schema.ts +198 -0
  125. package/src/blocks/hero/hero-5.tsx +86 -0
  126. package/src/blocks/hero/hero-6.schema.ts +665 -0
  127. package/src/blocks/hero/hero-6.tsx +62 -0
  128. package/src/blocks/hero/hero-7.schema.ts +505 -0
  129. package/src/blocks/hero/hero-7.tsx +115 -0
  130. package/src/blocks/hero/hero-8.schema.ts +376 -0
  131. package/src/blocks/hero/hero-8.tsx +113 -0
  132. package/src/blocks/hero/hero-9.schema.ts +379 -0
  133. package/src/blocks/hero/hero-9.tsx +49 -0
  134. package/src/blocks/index.ts +89 -0
  135. package/src/blocks/logos/logos-1.schema.ts +270 -0
  136. package/src/blocks/logos/logos-1.tsx +60 -0
  137. package/src/blocks/navbar/navbar-1.schema.ts +959 -0
  138. package/src/blocks/navbar/navbar-1.tsx +384 -0
  139. package/src/blocks/navbar/navbar-2.schema.ts +1224 -0
  140. package/src/blocks/navbar/navbar-2.tsx +403 -0
  141. package/src/blocks/navbar/navbar-3.schema.ts +6834 -0
  142. package/src/blocks/navbar/navbar-3.tsx +551 -0
  143. package/src/blocks/pricing/pricing-1.schema.ts +988 -0
  144. package/src/blocks/pricing/pricing-1.tsx +88 -0
  145. package/src/blocks/products/products-listing-1.schema.ts +271 -0
  146. package/src/blocks/products/products-listing-1.tsx +48 -0
  147. package/src/blocks/profile/profile-1.schema.ts +399 -0
  148. package/src/blocks/profile/profile-1.tsx +64 -0
  149. package/src/blocks/stats/stats-1.schema.ts +262 -0
  150. package/src/blocks/stats/stats-1.tsx +38 -0
  151. package/src/blocks/stats/stats-2.schema.ts +111 -0
  152. package/src/blocks/stats/stats-2.tsx +52 -0
  153. package/src/blocks/stats/variants/default.ts +189 -0
  154. package/src/blocks/stats/variants/hero.ts +142 -0
  155. package/{dist/blocks/stats/variants/index.js → src/blocks/stats/variants/index.ts} +1 -0
  156. package/src/blocks/team/team-1.schema.ts +544 -0
  157. package/src/blocks/team/team-1.tsx +86 -0
  158. package/src/blocks/team/team-2.schema.ts +2742 -0
  159. package/src/blocks/team/team-2.tsx +74 -0
  160. package/src/blocks/team/team-3.schema.ts +690 -0
  161. package/src/blocks/team/team-3.tsx +103 -0
  162. package/src/blocks/team/team-4.schema.ts +551 -0
  163. package/src/blocks/team/team-4.tsx +59 -0
  164. package/src/blocks/termsAndPrivacy/terms-and-conditions-1.schema.ts +158 -0
  165. package/src/blocks/termsAndPrivacy/terms-and-conditions-1.tsx +29 -0
  166. package/src/blocks/testimonial/testimonial-1.schema.ts +351 -0
  167. package/src/blocks/testimonial/testimonial-1.tsx +79 -0
  168. package/src/blocks/testimonial/testimonial-2.schema.ts +816 -0
  169. package/src/blocks/testimonial/testimonial-2.tsx +161 -0
  170. package/src/blocks/testimonial/testimonial-3.schema.ts +273 -0
  171. package/src/blocks/testimonial/testimonial-3.tsx +128 -0
  172. package/src/blocks/testimonial/testimonial-4.schema.ts +3378 -0
  173. package/src/blocks/testimonial/testimonial-4.tsx +202 -0
  174. package/src/blocks/testimonial/testimonial-5/variants/default.ts +510 -0
  175. package/src/blocks/testimonial/testimonial-5/variants/index.ts +4 -0
  176. package/src/blocks/testimonial/testimonial-5/variants/testimonialWithLogo.ts +887 -0
  177. package/src/blocks/testimonial/testimonial-5/variants/testimonialWithRatings.ts +923 -0
  178. package/src/blocks/testimonial/testimonial-5.schema.ts +250 -0
  179. package/src/blocks/testimonial/testimonial-5.tsx +130 -0
  180. package/src/blocks/testimonial/testimonial-6.schema.ts +1672 -0
  181. package/src/blocks/testimonial/testimonial-6.tsx +178 -0
  182. package/{dist/index.js → src/index.ts} +5 -2
  183. package/{dist/schemas/blocks.js → src/schemas/blocks.ts} +97 -72
  184. package/src/schemas/categories.ts +140 -0
  185. package/src/styles.d.ts +4 -0
  186. package/dist/blocks/about-us/about-us-1.d.ts +0 -5
  187. package/dist/blocks/about-us/about-us-1.js +0 -5
  188. package/dist/blocks/about-us/about-us-1.schema.d.ts +0 -38
  189. package/dist/blocks/about-us/about-us-1.schema.js +0 -537
  190. package/dist/blocks/blogs/blog-listing-1.d.ts +0 -5
  191. package/dist/blocks/blogs/blog-listing-1.js +0 -12
  192. package/dist/blocks/blogs/blog-listing-1.schema.d.ts +0 -59
  193. package/dist/blocks/blogs/blog-listing-1.schema.js +0 -387
  194. package/dist/blocks/blogs/blog-listing-2.d.ts +0 -5
  195. package/dist/blocks/blogs/blog-listing-2.js +0 -9
  196. package/dist/blocks/blogs/blog-listing-2.schema.d.ts +0 -104
  197. package/dist/blocks/blogs/blog-listing-2.schema.js +0 -572
  198. package/dist/blocks/blogs/blog-post-1.d.ts +0 -6
  199. package/dist/blocks/blogs/blog-post-1.js +0 -8
  200. package/dist/blocks/blogs/blog-post-1.schema.d.ts +0 -48
  201. package/dist/blocks/blogs/blog-post-1.schema.js +0 -358
  202. package/dist/blocks/blogs/blog-post-2.d.ts +0 -6
  203. package/dist/blocks/blogs/blog-post-2.js +0 -8
  204. package/dist/blocks/blogs/blog-post-2.schema.d.ts +0 -74
  205. package/dist/blocks/blogs/blog-post-2.schema.js +0 -779
  206. package/dist/blocks/cards/cards-10.d.ts +0 -6
  207. package/dist/blocks/cards/cards-10.js +0 -4
  208. package/dist/blocks/cards/cards-10.schema.d.ts +0 -44
  209. package/dist/blocks/cards/cards-10.schema.js +0 -405
  210. package/dist/blocks/cards/cards-11.d.ts +0 -6
  211. package/dist/blocks/cards/cards-11.js +0 -4
  212. package/dist/blocks/cards/cards-11.schema.d.ts +0 -58
  213. package/dist/blocks/cards/cards-11.schema.js +0 -406
  214. package/dist/blocks/cards/cards-12.d.ts +0 -6
  215. package/dist/blocks/cards/cards-12.js +0 -4
  216. package/dist/blocks/cards/cards-12.schema.d.ts +0 -38
  217. package/dist/blocks/cards/cards-12.schema.js +0 -545
  218. package/dist/blocks/cards/cards-2.d.ts +0 -5
  219. package/dist/blocks/cards/cards-2.js +0 -4
  220. package/dist/blocks/cards/cards-2.schema.d.ts +0 -46
  221. package/dist/blocks/cards/cards-2.schema.js +0 -260
  222. package/dist/blocks/cards/cards-3.d.ts +0 -6
  223. package/dist/blocks/cards/cards-3.js +0 -5
  224. package/dist/blocks/cards/cards-3.schema.d.ts +0 -36
  225. package/dist/blocks/cards/cards-3.schema.js +0 -351
  226. package/dist/blocks/cards/cards-4.d.ts +0 -6
  227. package/dist/blocks/cards/cards-4.js +0 -4
  228. package/dist/blocks/cards/cards-4.schema.d.ts +0 -40
  229. package/dist/blocks/cards/cards-4.schema.js +0 -648
  230. package/dist/blocks/cards/cards-5.d.ts +0 -5
  231. package/dist/blocks/cards/cards-5.js +0 -4
  232. package/dist/blocks/cards/cards-5.schema.d.ts +0 -48
  233. package/dist/blocks/cards/cards-5.schema.js +0 -238
  234. package/dist/blocks/cards/cards-6.d.ts +0 -5
  235. package/dist/blocks/cards/cards-6.js +0 -45
  236. package/dist/blocks/cards/cards-6.schema.d.ts +0 -50
  237. package/dist/blocks/cards/cards-6.schema.js +0 -608
  238. package/dist/blocks/cards/cards-7.d.ts +0 -5
  239. package/dist/blocks/cards/cards-7.js +0 -45
  240. package/dist/blocks/cards/cards-7.schema.d.ts +0 -87
  241. package/dist/blocks/cards/cards-7.schema.js +0 -1732
  242. package/dist/blocks/cards/cards-8.d.ts +0 -6
  243. package/dist/blocks/cards/cards-8.js +0 -4
  244. package/dist/blocks/cards/cards-8.schema.d.ts +0 -40
  245. package/dist/blocks/cards/cards-8.schema.js +0 -660
  246. package/dist/blocks/cards/cards-9.d.ts +0 -5
  247. package/dist/blocks/cards/cards-9.js +0 -4
  248. package/dist/blocks/cards/cards-9.schema.d.ts +0 -55
  249. package/dist/blocks/cards/cards-9.schema.js +0 -798
  250. package/dist/blocks/carousel/carousel-1.d.ts +0 -5
  251. package/dist/blocks/carousel/carousel-1.js +0 -12
  252. package/dist/blocks/carousel/carousel-1.schema.d.ts +0 -51
  253. package/dist/blocks/carousel/carousel-1.schema.js +0 -236
  254. package/dist/blocks/contact-us/contact-us-1.d.ts +0 -5
  255. package/dist/blocks/contact-us/contact-us-1.js +0 -4
  256. package/dist/blocks/contact-us/contact-us-1.schema.d.ts +0 -31
  257. package/dist/blocks/contact-us/contact-us-1.schema.js +0 -202
  258. package/dist/blocks/contact-us/contact-us-2.d.ts +0 -5
  259. package/dist/blocks/contact-us/contact-us-2.js +0 -4
  260. package/dist/blocks/contact-us/contact-us-2.schema.d.ts +0 -59
  261. package/dist/blocks/contact-us/contact-us-2.schema.js +0 -512
  262. package/dist/blocks/content/content-1.d.ts +0 -6
  263. package/dist/blocks/content/content-1.js +0 -4
  264. package/dist/blocks/content/content-1.schema.d.ts +0 -56
  265. package/dist/blocks/content/content-1.schema.js +0 -807
  266. package/dist/blocks/content/content-2.d.ts +0 -5
  267. package/dist/blocks/content/content-2.js +0 -4
  268. package/dist/blocks/content/content-2.schema.d.ts +0 -78
  269. package/dist/blocks/content/content-2.schema.js +0 -200
  270. package/dist/blocks/content/content-3.d.ts +0 -6
  271. package/dist/blocks/content/content-3.js +0 -5
  272. package/dist/blocks/content/content-3.schema.d.ts +0 -23
  273. package/dist/blocks/content/content-3.schema.js +0 -850
  274. package/dist/blocks/content/content-4.d.ts +0 -6
  275. package/dist/blocks/content/content-4.js +0 -6
  276. package/dist/blocks/content/content-4.schema.d.ts +0 -33
  277. package/dist/blocks/content/content-4.schema.js +0 -252
  278. package/dist/blocks/content/content-5.d.ts +0 -6
  279. package/dist/blocks/content/content-5.js +0 -5
  280. package/dist/blocks/content/content-5.schema.d.ts +0 -37
  281. package/dist/blocks/content/content-5.schema.js +0 -932
  282. package/dist/blocks/content/content-6.d.ts +0 -6
  283. package/dist/blocks/content/content-6.js +0 -5
  284. package/dist/blocks/content/content-6.schema.d.ts +0 -41
  285. package/dist/blocks/content/content-6.schema.js +0 -976
  286. package/dist/blocks/cta/cta-1.d.ts +0 -5
  287. package/dist/blocks/cta/cta-1.js +0 -4
  288. package/dist/blocks/cta/cta-1.schema.d.ts +0 -40
  289. package/dist/blocks/cta/cta-1.schema.js +0 -339
  290. package/dist/blocks/cta/cta-2.d.ts +0 -5
  291. package/dist/blocks/cta/cta-2.js +0 -4
  292. package/dist/blocks/cta/cta-2.schema.d.ts +0 -45
  293. package/dist/blocks/cta/cta-2.schema.js +0 -183
  294. package/dist/blocks/cta/cta-3.d.ts +0 -5
  295. package/dist/blocks/cta/cta-3.js +0 -4
  296. package/dist/blocks/cta/cta-3.schema.d.ts +0 -34
  297. package/dist/blocks/cta/cta-3.schema.js +0 -137
  298. package/dist/blocks/embed/embed-1.d.ts +0 -5
  299. package/dist/blocks/embed/embed-1.js +0 -5
  300. package/dist/blocks/embed/embed-1.schema.d.ts +0 -13
  301. package/dist/blocks/embed/embed-1.schema.js +0 -146
  302. package/dist/blocks/event/event-details.d.ts +0 -5
  303. package/dist/blocks/event/event-details.js +0 -9
  304. package/dist/blocks/event/event-details.schema.d.ts +0 -112
  305. package/dist/blocks/event/event-details.schema.js +0 -685
  306. package/dist/blocks/event/event-listing-2.d.ts +0 -5
  307. package/dist/blocks/event/event-listing-2.js +0 -4
  308. package/dist/blocks/event/event-listing-2.schema.d.ts +0 -84
  309. package/dist/blocks/event/event-listing-2.schema.js +0 -455
  310. package/dist/blocks/event/event-listing-3.d.ts +0 -5
  311. package/dist/blocks/event/event-listing-3.js +0 -10
  312. package/dist/blocks/event/event-listing-3.schema.d.ts +0 -77
  313. package/dist/blocks/event/event-listing-3.schema.js +0 -570
  314. package/dist/blocks/event/event-listing.d.ts +0 -5
  315. package/dist/blocks/event/event-listing.js +0 -10
  316. package/dist/blocks/event/event-listing.schema.d.ts +0 -51
  317. package/dist/blocks/event/event-listing.schema.js +0 -1297
  318. package/dist/blocks/faq/faq-1.d.ts +0 -5
  319. package/dist/blocks/faq/faq-1.js +0 -4
  320. package/dist/blocks/faq/faq-1.schema.d.ts +0 -47
  321. package/dist/blocks/faq/faq-1.schema.js +0 -325
  322. package/dist/blocks/faq/faq-2.d.ts +0 -6
  323. package/dist/blocks/faq/faq-2.js +0 -19
  324. package/dist/blocks/faq/faq-2.schema.d.ts +0 -47
  325. package/dist/blocks/faq/faq-2.schema.js +0 -329
  326. package/dist/blocks/faq/faq-3.d.ts +0 -5
  327. package/dist/blocks/faq/faq-3.js +0 -4
  328. package/dist/blocks/faq/faq-3.schema.d.ts +0 -40
  329. package/dist/blocks/faq/faq-3.schema.js +0 -444
  330. package/dist/blocks/features/features-1/features-1.d.ts +0 -5
  331. package/dist/blocks/features/features-1/features-1.js +0 -4
  332. package/dist/blocks/features/features-1/features-1.schema.d.ts +0 -5
  333. package/dist/blocks/features/features-1/features-1.schema.js +0 -142
  334. package/dist/blocks/features/features-1/variants/default.d.ts +0 -37
  335. package/dist/blocks/features/features-1/variants/default.js +0 -185
  336. package/dist/blocks/features/features-1/variants/index.d.ts +0 -5
  337. package/dist/blocks/features/features-1/variants/stylized-cards-v1.d.ts +0 -3
  338. package/dist/blocks/features/features-1/variants/stylized-cards-v1.js +0 -132
  339. package/dist/blocks/features/features-1/variants/stylized-cards-v2.d.ts +0 -3
  340. package/dist/blocks/features/features-1/variants/stylized-cards-v2.js +0 -484
  341. package/dist/blocks/features/features-2.d.ts +0 -5
  342. package/dist/blocks/features/features-2.js +0 -8
  343. package/dist/blocks/features/features-2.schema.d.ts +0 -41
  344. package/dist/blocks/features/features-2.schema.js +0 -321
  345. package/dist/blocks/features/features-3.d.ts +0 -5
  346. package/dist/blocks/features/features-3.js +0 -4
  347. package/dist/blocks/features/features-3.schema.d.ts +0 -40
  348. package/dist/blocks/features/features-3.schema.js +0 -424
  349. package/dist/blocks/features/features-4.d.ts +0 -5
  350. package/dist/blocks/features/features-4.js +0 -4
  351. package/dist/blocks/features/features-4.schema.d.ts +0 -60
  352. package/dist/blocks/features/features-4.schema.js +0 -594
  353. package/dist/blocks/features/features-5.d.ts +0 -6
  354. package/dist/blocks/features/features-5.js +0 -5
  355. package/dist/blocks/features/features-5.schema.d.ts +0 -28
  356. package/dist/blocks/features/features-5.schema.js +0 -727
  357. package/dist/blocks/features/features-6.d.ts +0 -5
  358. package/dist/blocks/features/features-6.js +0 -31
  359. package/dist/blocks/features/features-6.schema.d.ts +0 -74
  360. package/dist/blocks/features/features-6.schema.js +0 -814
  361. package/dist/blocks/footer/footer-1.d.ts +0 -6
  362. package/dist/blocks/footer/footer-1.js +0 -5
  363. package/dist/blocks/footer/footer-1.schema.d.ts +0 -62
  364. package/dist/blocks/footer/footer-1.schema.js +0 -565
  365. package/dist/blocks/footer/footer-2.d.ts +0 -5
  366. package/dist/blocks/footer/footer-2.js +0 -4
  367. package/dist/blocks/footer/footer-2.schema.d.ts +0 -76
  368. package/dist/blocks/footer/footer-2.schema.js +0 -876
  369. package/dist/blocks/footer/footer-3.d.ts +0 -6
  370. package/dist/blocks/footer/footer-3.js +0 -15
  371. package/dist/blocks/footer/footer-3.schema.d.ts +0 -48
  372. package/dist/blocks/footer/footer-3.schema.js +0 -475
  373. package/dist/blocks/footer/footer-4.d.ts +0 -6
  374. package/dist/blocks/footer/footer-4.js +0 -5
  375. package/dist/blocks/footer/footer-4.schema.d.ts +0 -71
  376. package/dist/blocks/footer/footer-4.schema.js +0 -620
  377. package/dist/blocks/footer/footer-5.d.ts +0 -6
  378. package/dist/blocks/footer/footer-5.js +0 -5
  379. package/dist/blocks/footer/footer-5.schema.d.ts +0 -52
  380. package/dist/blocks/footer/footer-5.schema.js +0 -400
  381. package/dist/blocks/hero/hero-1.d.ts +0 -5
  382. package/dist/blocks/hero/hero-1.js +0 -4
  383. package/dist/blocks/hero/hero-1.schema.d.ts +0 -35
  384. package/dist/blocks/hero/hero-1.schema.js +0 -742
  385. package/dist/blocks/hero/hero-2.d.ts +0 -5
  386. package/dist/blocks/hero/hero-2.js +0 -4
  387. package/dist/blocks/hero/hero-2.schema.d.ts +0 -46
  388. package/dist/blocks/hero/hero-2.schema.js +0 -282
  389. package/dist/blocks/hero/hero-3.d.ts +0 -5
  390. package/dist/blocks/hero/hero-3.js +0 -4
  391. package/dist/blocks/hero/hero-3.schema.d.ts +0 -54
  392. package/dist/blocks/hero/hero-3.schema.js +0 -378
  393. package/dist/blocks/hero/hero-4.d.ts +0 -5
  394. package/dist/blocks/hero/hero-4.js +0 -30
  395. package/dist/blocks/hero/hero-4.schema.d.ts +0 -33
  396. package/dist/blocks/hero/hero-4.schema.js +0 -316
  397. package/dist/blocks/hero/hero-5.d.ts +0 -5
  398. package/dist/blocks/hero/hero-5.js +0 -30
  399. package/dist/blocks/hero/hero-5.schema.d.ts +0 -32
  400. package/dist/blocks/hero/hero-5.schema.js +0 -183
  401. package/dist/blocks/hero/hero-6.d.ts +0 -5
  402. package/dist/blocks/hero/hero-6.js +0 -8
  403. package/dist/blocks/hero/hero-6.schema.d.ts +0 -36
  404. package/dist/blocks/hero/hero-6.schema.js +0 -617
  405. package/dist/blocks/hero/hero-7.d.ts +0 -5
  406. package/dist/blocks/hero/hero-7.js +0 -40
  407. package/dist/blocks/hero/hero-7.schema.d.ts +0 -12
  408. package/dist/blocks/hero/hero-7.schema.js +0 -471
  409. package/dist/blocks/hero/hero-8.d.ts +0 -5
  410. package/dist/blocks/hero/hero-8.js +0 -39
  411. package/dist/blocks/hero/hero-8.schema.d.ts +0 -17
  412. package/dist/blocks/hero/hero-8.schema.js +0 -343
  413. package/dist/blocks/hero/hero-9.d.ts +0 -6
  414. package/dist/blocks/hero/hero-9.js +0 -4
  415. package/dist/blocks/hero/hero-9.schema.d.ts +0 -39
  416. package/dist/blocks/hero/hero-9.schema.js +0 -355
  417. package/dist/blocks/index.d.ts +0 -3
  418. package/dist/blocks/index.js +0 -74
  419. package/dist/blocks/logos/logos-1.d.ts +0 -5
  420. package/dist/blocks/logos/logos-1.js +0 -10
  421. package/dist/blocks/logos/logos-1.schema.d.ts +0 -34
  422. package/dist/blocks/logos/logos-1.schema.js +0 -239
  423. package/dist/blocks/navbar/navbar-1.d.ts +0 -6
  424. package/dist/blocks/navbar/navbar-1.js +0 -100
  425. package/dist/blocks/navbar/navbar-1.schema.d.ts +0 -117
  426. package/dist/blocks/navbar/navbar-1.schema.js +0 -938
  427. package/dist/blocks/navbar/navbar-2.d.ts +0 -6
  428. package/dist/blocks/navbar/navbar-2.js +0 -99
  429. package/dist/blocks/navbar/navbar-2.schema.d.ts +0 -134
  430. package/dist/blocks/navbar/navbar-2.schema.js +0 -1200
  431. package/dist/blocks/pricing/pricing-1.d.ts +0 -5
  432. package/dist/blocks/pricing/pricing-1.js +0 -4
  433. package/dist/blocks/pricing/pricing-1.schema.d.ts +0 -87
  434. package/dist/blocks/pricing/pricing-1.schema.js +0 -976
  435. package/dist/blocks/products/products-listing-1.d.ts +0 -5
  436. package/dist/blocks/products/products-listing-1.js +0 -4
  437. package/dist/blocks/products/products-listing-1.schema.d.ts +0 -36
  438. package/dist/blocks/products/products-listing-1.schema.js +0 -264
  439. package/dist/blocks/stats/stats-1.d.ts +0 -6
  440. package/dist/blocks/stats/stats-1.js +0 -6
  441. package/dist/blocks/stats/stats-1.schema.d.ts +0 -25
  442. package/dist/blocks/stats/stats-1.schema.js +0 -213
  443. package/dist/blocks/stats/stats-2.d.ts +0 -6
  444. package/dist/blocks/stats/stats-2.js +0 -6
  445. package/dist/blocks/stats/stats-2.schema.d.ts +0 -5
  446. package/dist/blocks/stats/stats-2.schema.js +0 -104
  447. package/dist/blocks/stats/variants/default.d.ts +0 -22
  448. package/dist/blocks/stats/variants/default.js +0 -185
  449. package/dist/blocks/stats/variants/hero.d.ts +0 -3
  450. package/dist/blocks/stats/variants/hero.js +0 -151
  451. package/dist/blocks/stats/variants/index.d.ts +0 -4
  452. package/dist/blocks/team/team-1.d.ts +0 -6
  453. package/dist/blocks/team/team-1.js +0 -6
  454. package/dist/blocks/team/team-1.schema.d.ts +0 -65
  455. package/dist/blocks/team/team-1.schema.js +0 -476
  456. package/dist/blocks/team/team-2.d.ts +0 -6
  457. package/dist/blocks/team/team-2.js +0 -6
  458. package/dist/blocks/team/team-2.schema.d.ts +0 -52
  459. package/dist/blocks/team/team-2.schema.js +0 -2732
  460. package/dist/blocks/team/team-3.d.ts +0 -5
  461. package/dist/blocks/team/team-3.js +0 -30
  462. package/dist/blocks/team/team-3.schema.d.ts +0 -32
  463. package/dist/blocks/team/team-3.schema.js +0 -679
  464. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.d.ts +0 -6
  465. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.js +0 -4
  466. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.schema.d.ts +0 -14
  467. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.schema.js +0 -154
  468. package/dist/blocks/testimonial/testimonial-1.d.ts +0 -5
  469. package/dist/blocks/testimonial/testimonial-1.js +0 -10
  470. package/dist/blocks/testimonial/testimonial-1.schema.d.ts +0 -16
  471. package/dist/blocks/testimonial/testimonial-1.schema.js +0 -314
  472. package/dist/blocks/testimonial/testimonial-2.d.ts +0 -5
  473. package/dist/blocks/testimonial/testimonial-2.js +0 -42
  474. package/dist/blocks/testimonial/testimonial-2.schema.d.ts +0 -54
  475. package/dist/blocks/testimonial/testimonial-2.schema.js +0 -771
  476. package/dist/blocks/testimonial/testimonial-3.d.ts +0 -5
  477. package/dist/blocks/testimonial/testimonial-3.js +0 -38
  478. package/dist/blocks/testimonial/testimonial-3.schema.d.ts +0 -56
  479. package/dist/blocks/testimonial/testimonial-3.schema.js +0 -260
  480. package/dist/blocks/testimonial/testimonial-4.d.ts +0 -5
  481. package/dist/blocks/testimonial/testimonial-4.js +0 -51
  482. package/dist/blocks/testimonial/testimonial-4.schema.d.ts +0 -145
  483. package/dist/blocks/testimonial/testimonial-4.schema.js +0 -3214
  484. package/dist/blocks/testimonial/testimonial-5.d.ts +0 -5
  485. package/dist/blocks/testimonial/testimonial-5.js +0 -31
  486. package/dist/blocks/testimonial/testimonial-5.schema.d.ts +0 -33
  487. package/dist/blocks/testimonial/testimonial-5.schema.js +0 -401
  488. package/dist/blocks/testimonial/testimonial-6.d.ts +0 -5
  489. package/dist/blocks/testimonial/testimonial-6.js +0 -39
  490. package/dist/blocks/testimonial/testimonial-6.schema.d.ts +0 -60
  491. package/dist/blocks/testimonial/testimonial-6.schema.js +0 -695
  492. package/dist/blocks.d.ts +0 -3
  493. package/dist/blocks.js +0 -74
  494. package/dist/index.d.ts +0 -6
  495. package/dist/schemas/blocks.d.ts +0 -3
  496. package/dist/schemas/categories.d.ts +0 -3
  497. package/dist/schemas/categories.js +0 -129
  498. package/dist/schemas/index.d.ts +0 -3
  499. package/dist/schemas.d.ts +0 -3
  500. package/dist/schemas.js +0 -2
  501. /package/{dist/schemas/index.js → src/schemas/index.ts} +0 -0
@@ -0,0 +1,913 @@
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 IMAGE_MEDIA = {
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 DEFAULT_CONTENT = {
35
+ layout: null,
36
+ container: null,
37
+ contentWrapper: null,
38
+
39
+ // logo and description
40
+ logoTextWrapper: null,
41
+ logo: IMAGE_MEDIA,
42
+ logoDescription: "Expert Guidance, Ensuring Clear Verdicts Every Time.",
43
+ copyright: "Copyright @ 2025",
44
+
45
+ // middle links area
46
+ links: [
47
+ {
48
+ category: "Links",
49
+ links: [
50
+ { cta: "Home", icon: DUMMY_ICON },
51
+ { cta: "About Us", icon: DUMMY_ICON },
52
+ { cta: "Teams", icon: DUMMY_ICON },
53
+ { cta: "Blog", icon: DUMMY_ICON },
54
+ { cta: "Appointment", icon: DUMMY_ICON },
55
+ ],
56
+ },
57
+ {
58
+ category: "Practice Areas",
59
+ links: [
60
+ { cta: "Family Law", icon: DUMMY_ICON },
61
+ { cta: "Criminal Law", icon: DUMMY_ICON },
62
+ { cta: "Civil Law", icon: DUMMY_ICON },
63
+ { cta: "Compensation", icon: DUMMY_ICON },
64
+ { cta: "Bank Law", icon: DUMMY_ICON },
65
+ { cta: "Cases Succession", icon: DUMMY_ICON },
66
+ ],
67
+ },
68
+ {
69
+ category: "Contact Us",
70
+ links: [
71
+ {
72
+ wrapper: null,
73
+
74
+ cta: "9425026178",
75
+ icon: DUMMY_ICON,
76
+ },
77
+ {
78
+ wrapper: null,
79
+
80
+ cta: "info@verdictlybpl.com",
81
+ icon: DUMMY_ICON,
82
+ },
83
+ {
84
+ wrapper: null,
85
+
86
+ cta: "Facebook",
87
+ icon: DUMMY_ICON,
88
+ },
89
+ {
90
+ wrapper: null,
91
+
92
+ cta: " ",
93
+ icon: null,
94
+ icon_links: [
95
+ {
96
+ icon: DUMMY_ICON,
97
+ link: null,
98
+ },
99
+ {
100
+ icon: DUMMY_ICON,
101
+ link: null,
102
+ },
103
+ {
104
+ icon: DUMMY_ICON,
105
+ link: null,
106
+ },
107
+ {
108
+ icon: DUMMY_ICON,
109
+ link: null,
110
+ },
111
+ ],
112
+ },
113
+ ],
114
+ },
115
+ ],
116
+ };
117
+
118
+ export type IFooter2Content = typeof DEFAULT_CONTENT;
119
+
120
+ export const Footer2: IBlock = {
121
+ category_id: "footer",
122
+ title: "Footer 2",
123
+ key: "footer-2",
124
+ version: "v1",
125
+ prompt_description:
126
+ "Four-column footer with logo and tagline on the left, followed by columns for useful links, practice areas, and contact details with icons; bottom row features copyright and legal links.",
127
+
128
+ content_schema: [
129
+ {
130
+ key: "layout",
131
+ label: "Layout",
132
+ field_interface: "LayoutWidget",
133
+ },
134
+ {
135
+ key: "container",
136
+ label: "Container",
137
+ field_interface: "ContainerWidget",
138
+ },
139
+ {
140
+ key: "contentWrapper",
141
+ label: "Content Wrapper",
142
+ field_interface: "BoxWidget",
143
+ },
144
+
145
+ // logo and description area
146
+ {
147
+ key: "logoTextWrapper",
148
+ label: "Logo Text Wrapper",
149
+ field_interface: "BoxWidget",
150
+ },
151
+ {
152
+ key: "logo",
153
+ label: "Logo",
154
+ field_interface: "ImageWidget",
155
+ },
156
+ {
157
+ key: "logoDescription",
158
+ label: "Description",
159
+ field_interface: "TypographyWidget",
160
+ },
161
+ {
162
+ key: "copyright",
163
+ label: "Copyright Text",
164
+ field_interface: "TypographyWidget",
165
+ },
166
+
167
+ // middle links area
168
+ {
169
+ key: "links",
170
+ label: "Links",
171
+ field_interface: "BoxWidget",
172
+ kind: "group",
173
+ fields: [
174
+ {
175
+ key: "category",
176
+ label: "Category",
177
+ field_interface: "TypographyWidget",
178
+ },
179
+ {
180
+ key: "links",
181
+ label: "Links",
182
+ field_interface: "BoxWidget",
183
+ kind: "group",
184
+ fields: [
185
+ {
186
+ key: "wrapper",
187
+ label: "Wrapper",
188
+ field_interface: "BoxWidget",
189
+ },
190
+
191
+ {
192
+ key: "cta",
193
+ label: "CTA",
194
+ field_interface: "TypographyWidget",
195
+ },
196
+ {
197
+ key: "icon",
198
+ label: "Icon",
199
+ field_interface: "IconWidget",
200
+ },
201
+ {
202
+ key: "icon_links",
203
+ label: "Icon Links",
204
+ kind: "group",
205
+ field_interface: "BoxWidget",
206
+ fields: [
207
+ {
208
+ key: "icon",
209
+ label: "Icon",
210
+ field_interface: "IconWidget",
211
+ },
212
+ ],
213
+ },
214
+ ],
215
+ },
216
+ ],
217
+ },
218
+ ],
219
+ layouts: [
220
+ {
221
+ title: "Default",
222
+ key: "default",
223
+ styles: {
224
+ layout: {
225
+ "padding-top": "80px",
226
+ "padding-left": "112px",
227
+ "padding-right": "112px",
228
+ tablet: {
229
+ padding: "50px",
230
+ "padding-bottom": "0px",
231
+ },
232
+ mobile: {
233
+ padding: "40px",
234
+ "padding-bottom": "0px",
235
+ },
236
+ },
237
+ container: {
238
+ display: "flex",
239
+ "flex-direction": "column",
240
+ "column-gap": "none",
241
+ "row-gap": "2xl",
242
+ },
243
+ contentWrapper: {
244
+ display: "flex",
245
+ tablet: {
246
+ "flex-direction": "column",
247
+ "row-gap": "lg",
248
+ },
249
+ },
250
+ logoTextWrapper: {
251
+ "max-width": "20%",
252
+ display: "flex",
253
+ "flex-direction": "column",
254
+ "row-gap": "sm",
255
+ tablet: {
256
+ "max-width": "100%",
257
+ },
258
+ },
259
+ links_levoGroup: {
260
+ "max-width": "auto",
261
+ display: "flex",
262
+ "justify-content": "space-around",
263
+ width: "100%",
264
+ tablet: {
265
+ "justify-content": "space-between",
266
+ },
267
+ mobile: {
268
+ "flex-direction": "column",
269
+ "row-gap": "2xl",
270
+ },
271
+ },
272
+ links: [
273
+ {
274
+ category: {
275
+ "margin-bottom": "sm",
276
+ color: "text-1",
277
+ },
278
+ links_levoGroup: {
279
+ display: "flex",
280
+ "flex-direction": "column",
281
+ "row-gap": "xs",
282
+ },
283
+ links: [
284
+ {
285
+ wrapper: {
286
+ display: "flex",
287
+ "column-gap": "sm",
288
+ "align-items": "center",
289
+ },
290
+ icon: {
291
+ width: "20px",
292
+ height: "20px",
293
+ "border-radius": "base",
294
+ },
295
+ icon_links_levoGroup: {
296
+ display: "flex",
297
+ "column-gap": "xs",
298
+ },
299
+ icon_links: [
300
+ {
301
+ icon: {
302
+ width: "20px",
303
+ height: "20px",
304
+ },
305
+ },
306
+ {
307
+ icon: {
308
+ width: "20px",
309
+ height: "20px",
310
+ },
311
+ },
312
+ {
313
+ icon: {
314
+ width: "20px",
315
+ height: "20px",
316
+ },
317
+ },
318
+ {
319
+ icon: {
320
+ width: "20px",
321
+ height: "20px",
322
+ },
323
+ },
324
+ ],
325
+ },
326
+ {
327
+ wrapper: {
328
+ display: "flex",
329
+ "column-gap": "sm",
330
+ "align-items": "center",
331
+ },
332
+ icon: {
333
+ width: "20px",
334
+ height: "20px",
335
+ "border-radius": "base",
336
+ },
337
+ icon_links_levoGroup: {
338
+ display: "flex",
339
+ "column-gap": "xs",
340
+ },
341
+ icon_links: [
342
+ {
343
+ icon: {
344
+ width: "20px",
345
+ height: "20px",
346
+ },
347
+ },
348
+ {
349
+ icon: {
350
+ width: "20px",
351
+ height: "20px",
352
+ },
353
+ },
354
+ {
355
+ icon: {
356
+ width: "20px",
357
+ height: "20px",
358
+ },
359
+ },
360
+ {
361
+ icon: {
362
+ width: "20px",
363
+ height: "20px",
364
+ },
365
+ },
366
+ ],
367
+ },
368
+ {
369
+ wrapper: {
370
+ display: "flex",
371
+ "column-gap": "sm",
372
+ "align-items": "center",
373
+ },
374
+ icon: {
375
+ width: "20px",
376
+ height: "20px",
377
+ "border-radius": "base",
378
+ },
379
+ icon_links_levoGroup: {
380
+ display: "flex",
381
+ "column-gap": "xs",
382
+ },
383
+ icon_links: [
384
+ {
385
+ icon: {
386
+ width: "20px",
387
+ height: "20px",
388
+ },
389
+ },
390
+ {
391
+ icon: {
392
+ width: "20px",
393
+ height: "20px",
394
+ },
395
+ },
396
+ {
397
+ icon: {
398
+ width: "20px",
399
+ height: "20px",
400
+ },
401
+ },
402
+ {
403
+ icon: {
404
+ width: "20px",
405
+ height: "20px",
406
+ },
407
+ },
408
+ ],
409
+ },
410
+ {
411
+ wrapper: {
412
+ display: "flex",
413
+ "column-gap": "sm",
414
+ "align-items": "center",
415
+ },
416
+ icon: {
417
+ width: "20px",
418
+ height: "20px",
419
+ "border-radius": "base",
420
+ },
421
+ icon_links_levoGroup: {
422
+ display: "flex",
423
+ "column-gap": "xs",
424
+ },
425
+ icon_links: [
426
+ {
427
+ icon: {
428
+ width: "20px",
429
+ height: "20px",
430
+ },
431
+ },
432
+ {
433
+ icon: {
434
+ width: "20px",
435
+ height: "20px",
436
+ },
437
+ },
438
+ {
439
+ icon: {
440
+ width: "20px",
441
+ height: "20px",
442
+ },
443
+ },
444
+ {
445
+ icon: {
446
+ width: "20px",
447
+ height: "20px",
448
+ },
449
+ },
450
+ ],
451
+ },
452
+ ],
453
+ },
454
+ {
455
+ category: {
456
+ "margin-bottom": "sm",
457
+ color: "text-1",
458
+ },
459
+ links_levoGroup: {
460
+ display: "flex",
461
+ "flex-direction": "column",
462
+ "row-gap": "xs",
463
+ },
464
+ links: [
465
+ {
466
+ wrapper: {
467
+ display: "flex",
468
+ "column-gap": "sm",
469
+ "align-items": "center",
470
+ },
471
+ icon: {
472
+ width: "20px",
473
+ height: "20px",
474
+ "border-radius": "base",
475
+ },
476
+ icon_links_levoGroup: {
477
+ display: "flex",
478
+ "column-gap": "xs",
479
+ },
480
+ icon_links: [
481
+ {
482
+ icon: {
483
+ width: "20px",
484
+ height: "20px",
485
+ },
486
+ },
487
+ {
488
+ icon: {
489
+ width: "20px",
490
+ height: "20px",
491
+ },
492
+ },
493
+ {
494
+ icon: {
495
+ width: "20px",
496
+ height: "20px",
497
+ },
498
+ },
499
+ {
500
+ icon: {
501
+ width: "20px",
502
+ height: "20px",
503
+ },
504
+ },
505
+ ],
506
+ },
507
+ {
508
+ wrapper: {
509
+ display: "flex",
510
+ "column-gap": "sm",
511
+ "align-items": "center",
512
+ },
513
+ icon: {
514
+ width: "20px",
515
+ height: "20px",
516
+ "border-radius": "base",
517
+ },
518
+ icon_links_levoGroup: {
519
+ display: "flex",
520
+ "column-gap": "xs",
521
+ },
522
+ icon_links: [
523
+ {
524
+ icon: {
525
+ width: "20px",
526
+ height: "20px",
527
+ },
528
+ },
529
+ {
530
+ icon: {
531
+ width: "20px",
532
+ height: "20px",
533
+ },
534
+ },
535
+ {
536
+ icon: {
537
+ width: "20px",
538
+ height: "20px",
539
+ },
540
+ },
541
+ {
542
+ icon: {
543
+ width: "20px",
544
+ height: "20px",
545
+ },
546
+ },
547
+ ],
548
+ },
549
+ {
550
+ wrapper: {
551
+ display: "flex",
552
+ "column-gap": "sm",
553
+ "align-items": "center",
554
+ },
555
+ icon: {
556
+ width: "20px",
557
+ height: "20px",
558
+ "border-radius": "base",
559
+ },
560
+ icon_links_levoGroup: {
561
+ display: "flex",
562
+ "column-gap": "xs",
563
+ },
564
+ icon_links: [
565
+ {
566
+ icon: {
567
+ width: "20px",
568
+ height: "20px",
569
+ },
570
+ },
571
+ {
572
+ icon: {
573
+ width: "20px",
574
+ height: "20px",
575
+ },
576
+ },
577
+ {
578
+ icon: {
579
+ width: "20px",
580
+ height: "20px",
581
+ },
582
+ },
583
+ {
584
+ icon: {
585
+ width: "20px",
586
+ height: "20px",
587
+ },
588
+ },
589
+ ],
590
+ },
591
+ {
592
+ wrapper: {
593
+ display: "flex",
594
+ "column-gap": "sm",
595
+ "align-items": "center",
596
+ },
597
+ icon: {
598
+ width: "20px",
599
+ height: "20px",
600
+ "border-radius": "base",
601
+ },
602
+ icon_links_levoGroup: {
603
+ display: "flex",
604
+ "column-gap": "xs",
605
+ },
606
+ icon_links: [
607
+ {
608
+ icon: {
609
+ width: "20px",
610
+ height: "20px",
611
+ },
612
+ },
613
+ {
614
+ icon: {
615
+ width: "20px",
616
+ height: "20px",
617
+ },
618
+ },
619
+ {
620
+ icon: {
621
+ width: "20px",
622
+ height: "20px",
623
+ },
624
+ },
625
+ {
626
+ icon: {
627
+ width: "20px",
628
+ height: "20px",
629
+ },
630
+ },
631
+ ],
632
+ },
633
+ {
634
+ wrapper: {
635
+ display: "flex",
636
+ "column-gap": "sm",
637
+ "align-items": "center",
638
+ },
639
+ icon: {
640
+ width: "20px",
641
+ height: "20px",
642
+ "border-radius": "base",
643
+ },
644
+ icon_links_levoGroup: {
645
+ display: "flex",
646
+ "column-gap": "xs",
647
+ },
648
+ icon_links: [
649
+ {
650
+ icon: {
651
+ width: "20px",
652
+ height: "20px",
653
+ },
654
+ },
655
+ {
656
+ icon: {
657
+ width: "20px",
658
+ height: "20px",
659
+ },
660
+ },
661
+ {
662
+ icon: {
663
+ width: "20px",
664
+ height: "20px",
665
+ },
666
+ },
667
+ {
668
+ icon: {
669
+ width: "20px",
670
+ height: "20px",
671
+ },
672
+ },
673
+ ],
674
+ },
675
+ {
676
+ wrapper: {
677
+ display: "flex",
678
+ "column-gap": "sm",
679
+ "align-items": "center",
680
+ },
681
+ icon: {
682
+ width: "20px",
683
+ height: "20px",
684
+ "border-radius": "base",
685
+ },
686
+ icon_links_levoGroup: {
687
+ display: "flex",
688
+ "column-gap": "xs",
689
+ },
690
+ icon_links: [
691
+ {
692
+ icon: {
693
+ width: "20px",
694
+ height: "20px",
695
+ },
696
+ },
697
+ {
698
+ icon: {
699
+ width: "20px",
700
+ height: "20px",
701
+ },
702
+ },
703
+ {
704
+ icon: {
705
+ width: "20px",
706
+ height: "20px",
707
+ },
708
+ },
709
+ {
710
+ icon: {
711
+ width: "20px",
712
+ height: "20px",
713
+ },
714
+ },
715
+ ],
716
+ },
717
+ ],
718
+ },
719
+ {
720
+ category: {
721
+ "margin-bottom": "sm",
722
+ color: "text-1",
723
+ },
724
+ links_levoGroup: {
725
+ display: "flex",
726
+ "flex-direction": "column",
727
+ "row-gap": "xs",
728
+ },
729
+ links: [
730
+ {
731
+ wrapper: {
732
+ display: "flex",
733
+ "column-gap": "sm",
734
+ "align-items": "center",
735
+ },
736
+ icon: {
737
+ width: "20px",
738
+ height: "20px",
739
+ "border-radius": "base",
740
+ },
741
+ icon_links_levoGroup: {
742
+ display: "flex",
743
+ "column-gap": "xs",
744
+ },
745
+ icon_links: [
746
+ {
747
+ icon: {
748
+ width: "20px",
749
+ height: "20px",
750
+ },
751
+ },
752
+ {
753
+ icon: {
754
+ width: "20px",
755
+ height: "20px",
756
+ },
757
+ },
758
+ {
759
+ icon: {
760
+ width: "20px",
761
+ height: "20px",
762
+ },
763
+ },
764
+ {
765
+ icon: {
766
+ width: "20px",
767
+ height: "20px",
768
+ },
769
+ },
770
+ ],
771
+ },
772
+ {
773
+ wrapper: {
774
+ display: "flex",
775
+ "column-gap": "sm",
776
+ "align-items": "center",
777
+ },
778
+ icon: {
779
+ width: "20px",
780
+ height: "20px",
781
+ "border-radius": "base",
782
+ },
783
+ icon_links_levoGroup: {
784
+ display: "flex",
785
+ "column-gap": "xs",
786
+ },
787
+ icon_links: [
788
+ {
789
+ icon: {
790
+ width: "20px",
791
+ height: "20px",
792
+ },
793
+ },
794
+ {
795
+ icon: {
796
+ width: "20px",
797
+ height: "20px",
798
+ },
799
+ },
800
+ {
801
+ icon: {
802
+ width: "20px",
803
+ height: "20px",
804
+ },
805
+ },
806
+ {
807
+ icon: {
808
+ width: "20px",
809
+ height: "20px",
810
+ },
811
+ },
812
+ ],
813
+ },
814
+ {
815
+ wrapper: {
816
+ display: "flex",
817
+ "column-gap": "sm",
818
+ "align-items": "center",
819
+ },
820
+ icon: {
821
+ width: "20px",
822
+ height: "20px",
823
+ "border-radius": "base",
824
+ },
825
+ icon_links_levoGroup: {
826
+ display: "flex",
827
+ "column-gap": "xs",
828
+ },
829
+ icon_links: [
830
+ {
831
+ icon: {
832
+ width: "20px",
833
+ height: "20px",
834
+ },
835
+ },
836
+ {
837
+ icon: {
838
+ width: "20px",
839
+ height: "20px",
840
+ },
841
+ },
842
+ {
843
+ icon: {
844
+ width: "20px",
845
+ height: "20px",
846
+ },
847
+ },
848
+ {
849
+ icon: {
850
+ width: "20px",
851
+ height: "20px",
852
+ },
853
+ },
854
+ ],
855
+ },
856
+ {
857
+ wrapper: {
858
+ display: "flex",
859
+ "column-gap": "sm",
860
+ "align-items": "center",
861
+ },
862
+ icon: {
863
+ width: "20px",
864
+ height: "20px",
865
+ "border-radius": "base",
866
+ },
867
+ icon_links_levoGroup: {
868
+ display: "flex",
869
+ "column-gap": "xs",
870
+ },
871
+ icon_links: [
872
+ {
873
+ icon: {
874
+ width: "20px",
875
+ height: "20px",
876
+ },
877
+ },
878
+ {
879
+ icon: {
880
+ width: "20px",
881
+ height: "20px",
882
+ },
883
+ },
884
+ {
885
+ icon: {
886
+ width: "20px",
887
+ height: "20px",
888
+ },
889
+ },
890
+ {
891
+ icon: {
892
+ width: "20px",
893
+ height: "20px",
894
+ },
895
+ },
896
+ ],
897
+ },
898
+ ],
899
+ },
900
+ ],
901
+ logo: {
902
+ width: "80px",
903
+ "border-radius": "base",
904
+ tablet: {
905
+ width: "60px",
906
+ },
907
+ },
908
+ },
909
+ config: {},
910
+ content: DEFAULT_CONTENT,
911
+ },
912
+ ],
913
+ };