@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
@@ -1,779 +0,0 @@
1
- const DUMMY_ICON = {
2
- kind: "icon",
3
- data: {
4
- id: "archive-minus",
5
- label: "Archive Minus",
6
- tags: ["archive", "custom", "directional", "minus"],
7
- svgCode: '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M14.5 11.4H9.5C9.09 11.4 8.75 11.06 8.75 10.65C8.75 10.24 9.09 9.90002 9.5 9.90002H14.5C14.91 9.90002 15.25 10.24 15.25 10.65C15.25 11.06 14.91 11.4 14.5 11.4Z" fill="var(--color-icon-primary)"/>\n<path d="M4.92957 22.75C4.50957 22.75 4.11957 22.65 3.76957 22.45C2.99957 22 2.55957 21.09 2.55957 19.96V5.86C2.55957 3.32 4.62957 1.25 7.16957 1.25H16.8196C19.3596 1.25 21.4296 3.32 21.4296 5.86V19.95C21.4296 21.08 20.9896 21.99 20.2196 22.44C19.4496 22.89 18.4396 22.84 17.4496 22.29L12.5696 19.58C12.2796 19.42 11.7096 19.42 11.4196 19.58L6.53957 22.29C5.99957 22.59 5.44957 22.75 4.92957 22.75ZM7.17957 2.75C5.46957 2.75 4.06957 4.15 4.06957 5.86V19.95C4.06957 20.54 4.23957 20.98 4.53957 21.15C4.83957 21.33 5.30957 21.27 5.81957 20.98L10.6996 18.27C11.4396 17.86 12.5596 17.86 13.2996 18.27L18.1796 20.98C18.6896 21.27 19.1596 21.33 19.4596 21.15C19.7596 20.97 19.9296 20.53 19.9296 19.95V5.86C19.9296 4.15 18.5296 2.75 16.8196 2.75H7.17957Z" fill="var(--color-icon-primary)"/>\n</svg>',
8
- },
9
- };
10
- const MEDIA = {
11
- placeholder: {
12
- id: "7141014160938075687",
13
- location: "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH.png",
14
- kind: "image",
15
- mimetype: "image/png",
16
- srcset: {
17
- "1080w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1080w.webp",
18
- "1200w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1200w.webp",
19
- "1920w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1920w.webp",
20
- "320w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-320w.webp",
21
- "640w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-640w.webp",
22
- "750w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-750w.webp",
23
- "828w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-828w.webp",
24
- 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",
25
- },
26
- },
27
- };
28
- const DEFAULT_CONTENT = {
29
- layout: null,
30
- container: null,
31
- "main-content": null,
32
- // Sidebar
33
- sidebar: null,
34
- "sidebar-cards": [
35
- {
36
- card: null,
37
- heading: "Legal Services",
38
- content: [
39
- {
40
- "content-item": null,
41
- title: "Expert Legal Advice",
42
- description: "Get professional guidance for your legal matters with our experienced team.",
43
- },
44
- {
45
- "content-item": null,
46
- title: "24/7 Consultation",
47
- description: "Available round the clock for your urgent needs.",
48
- },
49
- ],
50
- button: "Learn More",
51
- },
52
- {
53
- card: null,
54
- heading: "Case Solutions",
55
- content: [
56
- {
57
- "content-item": null,
58
- title: "Case Management",
59
- description: "Comprehensive case tracking and management for optimal results.",
60
- },
61
- ],
62
- button: "View Cases",
63
- },
64
- {
65
- card: null,
66
- heading: "Support Center",
67
- content: [
68
- {
69
- "content-item": null,
70
- title: "24/7 Support",
71
- description: "Round-the-clock assistance for urgent legal consultations.",
72
- },
73
- ],
74
- button: "Contact Us",
75
- },
76
- ],
77
- // Social section
78
- "social-section": null,
79
- "social-title": "Follow Us",
80
- "social-icons": [
81
- { icon: DUMMY_ICON },
82
- { icon: DUMMY_ICON },
83
- { icon: DUMMY_ICON },
84
- ],
85
- // Blog content
86
- "blog-content": null,
87
- // Content meta
88
- "content-meta": null,
89
- "content-icons": [
90
- {
91
- "icon-wrapper": null,
92
- icon: DUMMY_ICON,
93
- description: "Expert Analysis",
94
- },
95
- {
96
- "icon-wrapper": null,
97
- icon: DUMMY_ICON,
98
- description: "Case Studies",
99
- },
100
- ],
101
- "meta-info": null,
102
- "date-wrapper": null,
103
- "calendar-icon": DUMMY_ICON,
104
- "publish-date": "2025-01-16T10:23:31.297Z",
105
- "time-wrapper": null,
106
- "time-icon": DUMMY_ICON,
107
- "reading-time": "12 Minutes",
108
- // Content
109
- "content-section": null,
110
- content: "Corporate law governs the formation, operation, and dissolution of corporations. Understanding these fundamentals is crucial for business leaders, entrepreneurs, and legal professionals. This comprehensive guide explores the key principles, regulatory frameworks, and practical applications that shape modern corporate governance.",
111
- };
112
- export const BlogPost2 = {
113
- category_id: "blogs",
114
- title: "Blog Post 2",
115
- key: "blog-post-2",
116
- version: "v1",
117
- prompt_description: "Two-column layout with a left sidebar containing three feature cards and social media icons, paired with main blog content including meta icons, calendar, time, and article content.",
118
- content_schema: [
119
- {
120
- key: "layout",
121
- label: "Layout",
122
- field_interface: "LayoutWidget",
123
- hint: {
124
- prompt_description: "Defines the overall page structure and layout. No content needed.",
125
- },
126
- },
127
- {
128
- key: "container",
129
- label: "Container",
130
- field_interface: "ContainerWidget",
131
- hint: {
132
- prompt_description: "Wraps the central content and ensures proper spacing on the page. No content needed.",
133
- },
134
- },
135
- {
136
- key: "main-content",
137
- label: "Main Content",
138
- field_interface: "BoxWidget",
139
- hint: {
140
- prompt_description: "Main wrapper for the two-column layout. No content needed.",
141
- },
142
- },
143
- // Sidebar
144
- {
145
- key: "sidebar",
146
- label: "Sidebar",
147
- field_interface: "BoxWidget",
148
- hint: {
149
- prompt_description: "Left sidebar container for cards and social icons. No content needed.",
150
- },
151
- },
152
- {
153
- key: "sidebar-cards",
154
- label: "Sidebar Cards",
155
- field_interface: "BoxWidget",
156
- kind: "group",
157
- hint: {
158
- prompt_description: "Three feature cards in the sidebar showcasing services or features.",
159
- },
160
- fields: [
161
- {
162
- key: "card",
163
- label: "Card",
164
- field_interface: "BoxWidget",
165
- },
166
- {
167
- key: "heading",
168
- label: "Heading",
169
- field_interface: "HeadingWidget",
170
- hint: {
171
- prompt_description: "Main heading for the card section. Should be descriptive and concise.",
172
- min_characters: 8,
173
- max_characters: 40,
174
- },
175
- },
176
- {
177
- key: "content",
178
- label: "Content",
179
- field_interface: "BoxWidget",
180
- kind: "group",
181
- hint: {
182
- prompt_description: "Repeatable content items with title and description pairs.",
183
- },
184
- fields: [
185
- {
186
- key: "content-item",
187
- label: "Content Item",
188
- field_interface: "BoxWidget",
189
- },
190
- {
191
- key: "title",
192
- label: "Title",
193
- field_interface: "HeadingWidget",
194
- hint: {
195
- prompt_description: "Content title describing the service or feature. Keep it concise and impactful.",
196
- min_characters: 10,
197
- max_characters: 40,
198
- },
199
- },
200
- {
201
- key: "description",
202
- label: "Description",
203
- field_interface: "TypographyWidget",
204
- hint: {
205
- prompt_description: "Brief description explaining the service or feature benefits.",
206
- min_characters: 40,
207
- max_characters: 120,
208
- },
209
- },
210
- ],
211
- },
212
- {
213
- key: "button",
214
- label: "Button",
215
- field_interface: "ButtonWidget",
216
- hint: {
217
- prompt_description: "Call-to-action button for the card. Use action-oriented text.",
218
- min_characters: 5,
219
- max_characters: 20,
220
- },
221
- },
222
- ],
223
- },
224
- // Social section
225
- {
226
- key: "social-section",
227
- label: "Social Section",
228
- field_interface: "BoxWidget",
229
- hint: {
230
- prompt_description: "Container for social media section. No content needed.",
231
- },
232
- },
233
- {
234
- key: "social-title",
235
- label: "Social Title",
236
- field_interface: "HeadingWidget",
237
- hint: {
238
- prompt_description: "Title for the social media section. Keep it short and engaging.",
239
- min_characters: 5,
240
- max_characters: 20,
241
- },
242
- },
243
- {
244
- key: "social-icons",
245
- label: "Social Icons",
246
- field_interface: "BoxWidget",
247
- kind: "group",
248
- hint: {
249
- prompt_description: "Social media platform icons for connecting with the audience.",
250
- },
251
- fields: [
252
- {
253
- key: "icon",
254
- label: "Icon",
255
- field_interface: "IconWidget",
256
- hint: {
257
- prompt_description: "Social media platform icon. Use recognizable platform icons.",
258
- orientation: "square",
259
- size: "icon",
260
- usecase: "icon",
261
- },
262
- },
263
- ],
264
- },
265
- // Blog content
266
- {
267
- key: "blog-content",
268
- label: "Blog Content",
269
- field_interface: "BoxWidget",
270
- hint: {
271
- prompt_description: "Main blog content area. No content needed.",
272
- },
273
- },
274
- // Content meta
275
- {
276
- key: "content-meta",
277
- label: "Content Meta",
278
- field_interface: "BoxWidget",
279
- hint: {
280
- prompt_description: "Container for content metadata and icons. No content needed.",
281
- },
282
- },
283
- {
284
- key: "content-icons",
285
- label: "Content Icons",
286
- field_interface: "BoxWidget",
287
- kind: "group",
288
- hint: {
289
- prompt_description: "Repeatable icons with descriptions for content features or highlights.",
290
- },
291
- fields: [
292
- {
293
- key: "icon-wrapper",
294
- label: "Icon Wrapper",
295
- field_interface: "BoxWidget",
296
- },
297
- {
298
- key: "icon",
299
- label: "Icon",
300
- field_interface: "IconWidget",
301
- hint: {
302
- prompt_description: "Icon representing a content feature or highlight.",
303
- orientation: "square",
304
- size: "icon",
305
- usecase: "icon",
306
- },
307
- },
308
- {
309
- key: "description",
310
- label: "Description",
311
- field_interface: "TypographyWidget",
312
- hint: {
313
- prompt_description: "Brief description of the content feature or highlight.",
314
- min_characters: 8,
315
- max_characters: 30,
316
- },
317
- },
318
- ],
319
- },
320
- {
321
- key: "meta-info",
322
- label: "Meta Info",
323
- field_interface: "BoxWidget",
324
- hint: {
325
- prompt_description: "Container for publication date and reading time. No content needed.",
326
- },
327
- },
328
- {
329
- key: "date-wrapper",
330
- label: "Date Wrapper",
331
- field_interface: "BoxWidget",
332
- },
333
- {
334
- key: "calendar-icon",
335
- label: "Calendar Icon",
336
- field_interface: "IconWidget",
337
- hint: {
338
- prompt_description: "Calendar icon for publication date.",
339
- orientation: "square",
340
- size: "icon",
341
- usecase: "icon",
342
- },
343
- },
344
- {
345
- key: "publish-date",
346
- label: "Publish Date",
347
- field_interface: "TypographyWidget",
348
- hint: {
349
- prompt_description: "Publication date of the blog post.",
350
- min_characters: 8,
351
- max_characters: 20,
352
- },
353
- },
354
- {
355
- key: "time-wrapper",
356
- label: "Time Wrapper",
357
- field_interface: "BoxWidget",
358
- },
359
- {
360
- key: "time-icon",
361
- label: "Time Icon",
362
- field_interface: "IconWidget",
363
- hint: {
364
- prompt_description: "Clock icon for reading time.",
365
- orientation: "square",
366
- size: "icon",
367
- usecase: "icon",
368
- },
369
- },
370
- {
371
- key: "reading-time",
372
- label: "Reading Time",
373
- field_interface: "TypographyWidget",
374
- hint: {
375
- prompt_description: "Estimated reading time for the blog post.",
376
- min_characters: 5,
377
- max_characters: 15,
378
- },
379
- },
380
- // Content
381
- {
382
- key: "content-section",
383
- label: "Content Section",
384
- field_interface: "BoxWidget",
385
- hint: {
386
- prompt_description: "Main blog content container. No content needed.",
387
- },
388
- },
389
- {
390
- key: "content",
391
- label: "Content",
392
- field_interface: "TypographyWidget",
393
- hint: {
394
- prompt_description: "Full blog article content. Should be comprehensive and informative.",
395
- min_characters: 200,
396
- max_characters: 8000,
397
- },
398
- },
399
- ],
400
- layouts: [
401
- {
402
- key: "default",
403
- title: "Default",
404
- styles: {
405
- layout: {
406
- width: "100%",
407
- "padding-top": "8xl",
408
- "padding-bottom": "8xl",
409
- "padding-left": "6xl",
410
- "padding-right": "6xl",
411
- mobile: {
412
- "padding-top": "5xl",
413
- "padding-bottom": "5xl",
414
- "padding-left": "2xl",
415
- "padding-right": "2xl",
416
- },
417
- },
418
- container: {
419
- width: "100%",
420
- "max-width": "1280px",
421
- "margin-left": "auto",
422
- "margin-right": "auto",
423
- },
424
- "main-content": {
425
- display: "flex",
426
- "column-gap": "4xl",
427
- "row-gap": "4xl",
428
- mobile: {
429
- "flex-direction": "column",
430
- },
431
- },
432
- // Sidebar styles
433
- sidebar: {
434
- width: "300px",
435
- "flex-shrink": "0",
436
- display: "flex",
437
- "flex-direction": "column",
438
- "row-gap": "3xl",
439
- mobile: {
440
- width: "100%",
441
- },
442
- },
443
- "sidebar-cards_levoGroup": {
444
- display: "flex",
445
- "flex-direction": "column",
446
- "row-gap": "2xl",
447
- },
448
- "sidebar-cards": [
449
- {
450
- card: {
451
- "padding-top": "xl",
452
- "padding-bottom": "xl",
453
- "padding-left": "lg",
454
- "padding-right": "lg",
455
- "border-radius": "lg",
456
- border: "1px solid",
457
- "border-color": "var(--color-border)",
458
- "background-color": "var(--color-background-1)",
459
- display: "flex",
460
- "flex-direction": "column",
461
- "row-gap": "base",
462
- },
463
- heading: {
464
- "font-size": "xl",
465
- "font-weight": "bold",
466
- color: "var(--color-text-1)",
467
- "margin-bottom": "base",
468
- },
469
- content_levoGroup: {
470
- display: "flex",
471
- "flex-direction": "column",
472
- "row-gap": "base",
473
- },
474
- content: [
475
- {
476
- "content-item": {
477
- "margin-bottom": "sm",
478
- },
479
- title: {
480
- "font-size": "lg",
481
- "font-weight": "semibold",
482
- "margin-bottom": "xs",
483
- color: "var(--color-text-1)",
484
- },
485
- description: {
486
- "font-size": "sm",
487
- color: "var(--color-text-2)",
488
- "line-height": "1.5",
489
- },
490
- },
491
- {
492
- "content-item": {
493
- "margin-bottom": "sm",
494
- },
495
- title: {
496
- "font-size": "lg",
497
- "font-weight": "semibold",
498
- "margin-bottom": "xs",
499
- color: "var(--color-text-1)",
500
- },
501
- description: {
502
- "font-size": "sm",
503
- color: "var(--color-text-2)",
504
- "line-height": "1.5",
505
- },
506
- },
507
- ],
508
- button: {
509
- "padding-top": "xs",
510
- "padding-bottom": "xs",
511
- "padding-left": "base",
512
- "padding-right": "base",
513
- "background-color": "var(--color-background-1)",
514
- "border-radius": "base",
515
- border: "1px solid",
516
- "border-color": "var(--color-border)",
517
- "font-size": "sm",
518
- "font-weight": "medium",
519
- color: "var(--color-text-1)",
520
- "margin-top": "auto",
521
- },
522
- },
523
- {
524
- card: {
525
- "padding-top": "xl",
526
- "padding-bottom": "xl",
527
- "padding-left": "lg",
528
- "padding-right": "lg",
529
- "border-radius": "lg",
530
- border: "1px solid",
531
- "border-color": "var(--color-border)",
532
- "background-color": "var(--color-background-1)",
533
- display: "flex",
534
- "flex-direction": "column",
535
- "row-gap": "base",
536
- },
537
- image: {
538
- width: "48px",
539
- height: "48px",
540
- "border-radius": "base",
541
- },
542
- content_levoGroup: {
543
- display: "flex",
544
- "flex-direction": "column",
545
- "row-gap": "base",
546
- },
547
- content: [
548
- {
549
- "content-item": {
550
- "margin-bottom": "sm",
551
- },
552
- title: {
553
- "font-size": "lg",
554
- "font-weight": "semibold",
555
- "margin-bottom": "xs",
556
- color: "var(--color-text-1)",
557
- },
558
- description: {
559
- "font-size": "sm",
560
- color: "var(--color-text-2)",
561
- "line-height": "1.5",
562
- },
563
- },
564
- ],
565
- button: {
566
- "padding-top": "xs",
567
- "padding-bottom": "xs",
568
- "padding-left": "base",
569
- "padding-right": "base",
570
- "background-color": "var(--color-background-1)",
571
- "border-radius": "base",
572
- border: "1px solid",
573
- "border-color": "var(--color-border)",
574
- "font-size": "sm",
575
- "font-weight": "medium",
576
- color: "var(--color-text-1)",
577
- "margin-top": "auto",
578
- },
579
- },
580
- {
581
- card: {
582
- "padding-top": "xl",
583
- "padding-bottom": "xl",
584
- "padding-left": "lg",
585
- "padding-right": "lg",
586
- "border-radius": "lg",
587
- border: "1px solid",
588
- "border-color": "var(--color-border)",
589
- "background-color": "var(--color-background-1)",
590
- display: "flex",
591
- "flex-direction": "column",
592
- "row-gap": "base",
593
- },
594
- image: {
595
- width: "48px",
596
- height: "48px",
597
- "border-radius": "base",
598
- },
599
- content_levoGroup: {
600
- display: "flex",
601
- "flex-direction": "column",
602
- "row-gap": "base",
603
- },
604
- content: [
605
- {
606
- "content-item": {
607
- "margin-bottom": "sm",
608
- },
609
- title: {
610
- "font-size": "lg",
611
- "font-weight": "semibold",
612
- "margin-bottom": "xs",
613
- color: "var(--color-text-1)",
614
- },
615
- description: {
616
- "font-size": "sm",
617
- color: "var(--color-text-2)",
618
- "line-height": "1.5",
619
- },
620
- },
621
- ],
622
- button: {
623
- "padding-top": "xs",
624
- "padding-bottom": "xs",
625
- "padding-left": "base",
626
- "padding-right": "base",
627
- "background-color": "var(--color-background-1)",
628
- "border-radius": "base",
629
- border: "1px solid",
630
- "border-color": "var(--color-border)",
631
- "font-size": "sm",
632
- "font-weight": "medium",
633
- color: "var(--color-text-1)",
634
- "margin-top": "auto",
635
- },
636
- },
637
- ],
638
- // Social section styles
639
- "social-section": {
640
- "padding-top": "2xl",
641
- "border-top": "1px solid",
642
- "border-color": "var(--color-border)",
643
- },
644
- "social-title": {
645
- "font-size": "lg",
646
- "font-weight": "semibold",
647
- "margin-bottom": "lg",
648
- color: "var(--color-text-1)",
649
- },
650
- "social-icons_levoGroup": {
651
- display: "flex",
652
- "column-gap": "base",
653
- },
654
- "social-icons": [
655
- {
656
- icon: {
657
- width: "32px",
658
- height: "32px",
659
- },
660
- },
661
- {
662
- icon: {
663
- width: "32px",
664
- height: "32px",
665
- },
666
- },
667
- {
668
- icon: {
669
- width: "32px",
670
- height: "32px",
671
- },
672
- },
673
- ],
674
- // Blog content styles
675
- "blog-content": {
676
- "flex-grow": "1",
677
- display: "flex",
678
- "flex-direction": "column",
679
- "row-gap": "3xl",
680
- },
681
- // Content meta styles
682
- "content-meta": {
683
- display: "flex",
684
- "flex-direction": "column",
685
- "row-gap": "lg",
686
- "padding-top": "xl",
687
- "padding-bottom": "xl",
688
- "border-top": "1px solid",
689
- "border-bottom": "1px solid",
690
- "border-color": "var(--color-border)",
691
- },
692
- "content-icons_levoGroup": {
693
- display: "flex",
694
- "column-gap": "2xl",
695
- "row-gap": "lg",
696
- "flex-wrap": "wrap",
697
- },
698
- "content-icons": [
699
- {
700
- "icon-wrapper": {
701
- display: "flex",
702
- "align-items": "center",
703
- "column-gap": "xs",
704
- },
705
- icon: {
706
- width: "24px",
707
- height: "24px",
708
- },
709
- description: {
710
- "font-size": "sm",
711
- "font-weight": "medium",
712
- color: "var(--color-text-1)",
713
- },
714
- },
715
- {
716
- "icon-wrapper": {
717
- display: "flex",
718
- "align-items": "center",
719
- "column-gap": "xs",
720
- },
721
- icon: {
722
- width: "24px",
723
- height: "24px",
724
- },
725
- description: {
726
- "font-size": "sm",
727
- "font-weight": "medium",
728
- color: "var(--color-text-1)",
729
- },
730
- },
731
- ],
732
- "meta-info": {
733
- display: "flex",
734
- "column-gap": "2xl",
735
- "row-gap": "lg",
736
- "flex-wrap": "wrap",
737
- },
738
- "date-wrapper": {
739
- display: "flex",
740
- "align-items": "center",
741
- "column-gap": "xs",
742
- },
743
- "calendar-icon": {
744
- width: "20px",
745
- height: "20px",
746
- },
747
- "publish-date": {
748
- "font-size": "sm",
749
- color: "var(--color-text-2)",
750
- },
751
- "time-wrapper": {
752
- display: "flex",
753
- "align-items": "center",
754
- "column-gap": "xs",
755
- },
756
- "time-icon": {
757
- width: "20px",
758
- height: "20px",
759
- },
760
- "reading-time": {
761
- "font-size": "sm",
762
- color: "var(--color-text-2)",
763
- },
764
- // Content styles
765
- "content-section": {
766
- display: "flex",
767
- "flex-direction": "column",
768
- },
769
- content: {
770
- "font-size": "base",
771
- "line-height": "1.7",
772
- color: "var(--color-text-1)",
773
- },
774
- },
775
- content: DEFAULT_CONTENT,
776
- config: {},
777
- },
778
- ],
779
- };