@levo-so/blocks 0.1.0 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (471) hide show
  1. package/package.json +5 -9
  2. package/src/blocks/about-us/about-us-1.schema.ts +563 -0
  3. package/src/blocks/about-us/about-us-1.tsx +53 -0
  4. package/src/blocks/blogs/blog-listing-1.schema.ts +419 -0
  5. package/src/blocks/blogs/blog-listing-1.tsx +79 -0
  6. package/src/blocks/blogs/blog-listing-2.schema.ts +608 -0
  7. package/src/blocks/blogs/blog-listing-2.tsx +83 -0
  8. package/src/blocks/blogs/blog-post-1.schema.ts +392 -0
  9. package/src/blocks/blogs/blog-post-1.tsx +52 -0
  10. package/src/blocks/blogs/blog-post-2.schema.ts +834 -0
  11. package/src/blocks/blogs/blog-post-2.tsx +131 -0
  12. package/src/blocks/cards/cards-10.schema.ts +433 -0
  13. package/src/blocks/cards/cards-10.tsx +46 -0
  14. package/src/blocks/cards/cards-11.schema.ts +440 -0
  15. package/src/blocks/cards/cards-11.tsx +50 -0
  16. package/src/blocks/cards/cards-12.schema.ts +578 -0
  17. package/src/blocks/cards/cards-12.tsx +54 -0
  18. package/src/blocks/cards/cards-2.schema.ts +293 -0
  19. package/src/blocks/cards/cards-2.tsx +42 -0
  20. package/src/blocks/cards/cards-3.schema.ts +365 -0
  21. package/src/blocks/cards/cards-3.tsx +49 -0
  22. package/src/blocks/cards/cards-4.schema.ts +677 -0
  23. package/src/blocks/cards/cards-4.tsx +50 -0
  24. package/src/blocks/cards/cards-5.schema.ts +264 -0
  25. package/src/blocks/cards/cards-5.tsx +34 -0
  26. package/src/blocks/cards/cards-6.schema.ts +639 -0
  27. package/src/blocks/cards/cards-6.tsx +136 -0
  28. package/src/blocks/cards/cards-7.schema.ts +1793 -0
  29. package/src/blocks/cards/cards-7.tsx +165 -0
  30. package/src/blocks/cards/cards-8.schema.ts +691 -0
  31. package/src/blocks/cards/cards-8.tsx +43 -0
  32. package/src/blocks/cards/cards-9.schema.ts +827 -0
  33. package/src/blocks/cards/cards-9.tsx +54 -0
  34. package/src/blocks/carousel/carousel-1.schema.ts +250 -0
  35. package/src/blocks/carousel/carousel-1.tsx +79 -0
  36. package/src/blocks/contact-us/contact-us-1.schema.ts +226 -0
  37. package/src/blocks/contact-us/contact-us-1.tsx +39 -0
  38. package/src/blocks/contact-us/contact-us-2.schema.ts +524 -0
  39. package/src/blocks/contact-us/contact-us-2.tsx +71 -0
  40. package/src/blocks/content/content-1.schema.ts +884 -0
  41. package/src/blocks/content/content-1.tsx +69 -0
  42. package/src/blocks/content/content-2.schema.ts +209 -0
  43. package/src/blocks/content/content-2.tsx +32 -0
  44. package/src/blocks/content/content-3.schema.ts +864 -0
  45. package/src/blocks/content/content-3.tsx +54 -0
  46. package/src/blocks/content/content-4.schema.ts +287 -0
  47. package/src/blocks/content/content-4.tsx +47 -0
  48. package/src/blocks/content/content-5.schema.ts +944 -0
  49. package/src/blocks/content/content-5.tsx +58 -0
  50. package/src/blocks/content/content-6.schema.ts +991 -0
  51. package/src/blocks/content/content-6.tsx +61 -0
  52. package/src/blocks/cta/cta-1.schema.ts +361 -0
  53. package/src/blocks/cta/cta-1.tsx +33 -0
  54. package/src/blocks/cta/cta-2.schema.ts +209 -0
  55. package/src/blocks/cta/cta-2.tsx +28 -0
  56. package/src/blocks/cta/cta-3.schema.ts +156 -0
  57. package/src/blocks/cta/cta-3.tsx +48 -0
  58. package/src/blocks/embed/embed-1.schema.ts +153 -0
  59. package/src/blocks/embed/embed-1.tsx +38 -0
  60. package/src/blocks/event/event-details.schema.ts +737 -0
  61. package/src/blocks/event/event-details.tsx +107 -0
  62. package/src/blocks/event/event-listing-2.schema.ts +496 -0
  63. package/src/blocks/event/event-listing-2.tsx +70 -0
  64. package/src/blocks/event/event-listing-3.schema.ts +605 -0
  65. package/src/blocks/event/event-listing-3.tsx +95 -0
  66. package/src/blocks/event/event-listing.schema.ts +1358 -0
  67. package/src/blocks/event/event-listing.tsx +90 -0
  68. package/src/blocks/faq/faq-1.schema.ts +357 -0
  69. package/src/blocks/faq/faq-1.tsx +65 -0
  70. package/src/blocks/faq/faq-2.schema.ts +356 -0
  71. package/src/blocks/faq/faq-2.tsx +84 -0
  72. package/src/blocks/faq/faq-3.schema.ts +475 -0
  73. package/src/blocks/faq/faq-3.tsx +70 -0
  74. package/src/blocks/features/features-1/features-1.schema.ts +165 -0
  75. package/src/blocks/features/features-1/features-1.tsx +48 -0
  76. package/src/blocks/features/features-1/variants/default.ts +197 -0
  77. package/{dist/blocks/features/features-1/variants/index.js → src/blocks/features/features-1/variants/index.ts} +7 -1
  78. package/src/blocks/features/features-1/variants/stylized-cards-v1.ts +138 -0
  79. package/src/blocks/features/features-1/variants/stylized-cards-v2.ts +487 -0
  80. package/src/blocks/features/features-2.schema.ts +338 -0
  81. package/src/blocks/features/features-2.tsx +66 -0
  82. package/src/blocks/features/features-3.schema.ts +438 -0
  83. package/src/blocks/features/features-3.tsx +56 -0
  84. package/src/blocks/features/features-4.schema.ts +631 -0
  85. package/src/blocks/features/features-4.tsx +75 -0
  86. package/src/blocks/features/features-5.schema.ts +747 -0
  87. package/src/blocks/features/features-5.tsx +49 -0
  88. package/src/blocks/features/features-6.schema.ts +849 -0
  89. package/src/blocks/features/features-6.tsx +125 -0
  90. package/src/blocks/footer/footer-1.schema.ts +589 -0
  91. package/src/blocks/footer/footer-1.tsx +90 -0
  92. package/src/blocks/footer/footer-2.schema.ts +898 -0
  93. package/src/blocks/footer/footer-2.tsx +77 -0
  94. package/src/blocks/footer/footer-3.schema.ts +487 -0
  95. package/src/blocks/footer/footer-3.tsx +100 -0
  96. package/src/blocks/footer/footer-4.schema.ts +644 -0
  97. package/src/blocks/footer/footer-4.tsx +97 -0
  98. package/src/blocks/footer/footer-5.schema.ts +425 -0
  99. package/src/blocks/footer/footer-5.tsx +91 -0
  100. package/src/blocks/hero/hero-1.schema.ts +766 -0
  101. package/src/blocks/hero/hero-1.tsx +52 -0
  102. package/src/blocks/hero/hero-2.schema.ts +316 -0
  103. package/src/blocks/hero/hero-2.tsx +49 -0
  104. package/src/blocks/hero/hero-3.schema.ts +415 -0
  105. package/src/blocks/hero/hero-3.tsx +50 -0
  106. package/src/blocks/hero/hero-4.schema.ts +325 -0
  107. package/src/blocks/hero/hero-4.tsx +89 -0
  108. package/src/blocks/hero/hero-5.schema.ts +192 -0
  109. package/src/blocks/hero/hero-5.tsx +86 -0
  110. package/src/blocks/hero/hero-6.schema.ts +703 -0
  111. package/src/blocks/hero/hero-6.tsx +62 -0
  112. package/src/blocks/hero/hero-7.schema.ts +508 -0
  113. package/src/blocks/hero/hero-7.tsx +115 -0
  114. package/src/blocks/hero/hero-8.schema.ts +372 -0
  115. package/src/blocks/hero/hero-8.tsx +113 -0
  116. package/src/blocks/hero/hero-9.schema.ts +379 -0
  117. package/src/blocks/hero/hero-9.tsx +49 -0
  118. package/src/blocks/index.ts +78 -0
  119. package/src/blocks/logos/logos-1.schema.ts +264 -0
  120. package/src/blocks/logos/logos-1.tsx +60 -0
  121. package/src/blocks/navbar/navbar-1.schema.ts +961 -0
  122. package/src/blocks/navbar/navbar-1.tsx +398 -0
  123. package/src/blocks/navbar/navbar-2.schema.ts +1226 -0
  124. package/src/blocks/navbar/navbar-2.tsx +417 -0
  125. package/src/blocks/pricing/pricing-1.schema.ts +1002 -0
  126. package/src/blocks/pricing/pricing-1.tsx +88 -0
  127. package/src/blocks/products/products-listing-1.schema.ts +274 -0
  128. package/src/blocks/products/products-listing-1.tsx +48 -0
  129. package/src/blocks/stats/stats-1.schema.ts +231 -0
  130. package/src/blocks/stats/stats-1.tsx +38 -0
  131. package/src/blocks/stats/stats-2.schema.ts +111 -0
  132. package/src/blocks/stats/stats-2.tsx +52 -0
  133. package/src/blocks/stats/variants/default.ts +190 -0
  134. package/src/blocks/stats/variants/hero.ts +153 -0
  135. package/{dist/blocks/stats/variants/index.js → src/blocks/stats/variants/index.ts} +1 -0
  136. package/src/blocks/team/team-1.schema.ts +516 -0
  137. package/src/blocks/team/team-1.tsx +80 -0
  138. package/src/blocks/team/team-2.schema.ts +2813 -0
  139. package/src/blocks/team/team-2.tsx +74 -0
  140. package/src/blocks/team/team-3.schema.ts +707 -0
  141. package/src/blocks/team/team-3.tsx +103 -0
  142. package/src/blocks/termsAndPrivacy/terms-and-conditions-1.schema.ts +168 -0
  143. package/src/blocks/termsAndPrivacy/terms-and-conditions-1.tsx +29 -0
  144. package/src/blocks/testimonial/testimonial-1.schema.ts +345 -0
  145. package/src/blocks/testimonial/testimonial-1.tsx +79 -0
  146. package/src/blocks/testimonial/testimonial-2.schema.ts +816 -0
  147. package/src/blocks/testimonial/testimonial-2.tsx +161 -0
  148. package/src/blocks/testimonial/testimonial-3.schema.ts +279 -0
  149. package/src/blocks/testimonial/testimonial-3.tsx +128 -0
  150. package/src/blocks/testimonial/testimonial-4.schema.ts +3373 -0
  151. package/src/blocks/testimonial/testimonial-4.tsx +202 -0
  152. package/src/blocks/testimonial/testimonial-5.schema.ts +434 -0
  153. package/src/blocks/testimonial/testimonial-5.tsx +106 -0
  154. package/src/blocks/testimonial/testimonial-6.schema.ts +709 -0
  155. package/src/blocks/testimonial/testimonial-6.tsx +128 -0
  156. package/{dist/index.js → src/index.ts} +5 -2
  157. package/{dist/schemas/blocks.js → src/schemas/blocks.ts} +75 -72
  158. package/src/schemas/categories.ts +134 -0
  159. package/src/styles.d.ts +4 -0
  160. package/dist/blocks/about-us/about-us-1.d.ts +0 -5
  161. package/dist/blocks/about-us/about-us-1.js +0 -5
  162. package/dist/blocks/about-us/about-us-1.schema.d.ts +0 -38
  163. package/dist/blocks/about-us/about-us-1.schema.js +0 -537
  164. package/dist/blocks/blogs/blog-listing-1.d.ts +0 -5
  165. package/dist/blocks/blogs/blog-listing-1.js +0 -12
  166. package/dist/blocks/blogs/blog-listing-1.schema.d.ts +0 -59
  167. package/dist/blocks/blogs/blog-listing-1.schema.js +0 -387
  168. package/dist/blocks/blogs/blog-listing-2.d.ts +0 -5
  169. package/dist/blocks/blogs/blog-listing-2.js +0 -9
  170. package/dist/blocks/blogs/blog-listing-2.schema.d.ts +0 -104
  171. package/dist/blocks/blogs/blog-listing-2.schema.js +0 -572
  172. package/dist/blocks/blogs/blog-post-1.d.ts +0 -6
  173. package/dist/blocks/blogs/blog-post-1.js +0 -8
  174. package/dist/blocks/blogs/blog-post-1.schema.d.ts +0 -48
  175. package/dist/blocks/blogs/blog-post-1.schema.js +0 -358
  176. package/dist/blocks/blogs/blog-post-2.d.ts +0 -6
  177. package/dist/blocks/blogs/blog-post-2.js +0 -8
  178. package/dist/blocks/blogs/blog-post-2.schema.d.ts +0 -74
  179. package/dist/blocks/blogs/blog-post-2.schema.js +0 -779
  180. package/dist/blocks/cards/cards-10.d.ts +0 -6
  181. package/dist/blocks/cards/cards-10.js +0 -4
  182. package/dist/blocks/cards/cards-10.schema.d.ts +0 -44
  183. package/dist/blocks/cards/cards-10.schema.js +0 -405
  184. package/dist/blocks/cards/cards-11.d.ts +0 -6
  185. package/dist/blocks/cards/cards-11.js +0 -4
  186. package/dist/blocks/cards/cards-11.schema.d.ts +0 -58
  187. package/dist/blocks/cards/cards-11.schema.js +0 -406
  188. package/dist/blocks/cards/cards-12.d.ts +0 -6
  189. package/dist/blocks/cards/cards-12.js +0 -4
  190. package/dist/blocks/cards/cards-12.schema.d.ts +0 -38
  191. package/dist/blocks/cards/cards-12.schema.js +0 -545
  192. package/dist/blocks/cards/cards-2.d.ts +0 -5
  193. package/dist/blocks/cards/cards-2.js +0 -4
  194. package/dist/blocks/cards/cards-2.schema.d.ts +0 -46
  195. package/dist/blocks/cards/cards-2.schema.js +0 -260
  196. package/dist/blocks/cards/cards-3.d.ts +0 -6
  197. package/dist/blocks/cards/cards-3.js +0 -5
  198. package/dist/blocks/cards/cards-3.schema.d.ts +0 -36
  199. package/dist/blocks/cards/cards-3.schema.js +0 -351
  200. package/dist/blocks/cards/cards-4.d.ts +0 -6
  201. package/dist/blocks/cards/cards-4.js +0 -4
  202. package/dist/blocks/cards/cards-4.schema.d.ts +0 -40
  203. package/dist/blocks/cards/cards-4.schema.js +0 -648
  204. package/dist/blocks/cards/cards-5.d.ts +0 -5
  205. package/dist/blocks/cards/cards-5.js +0 -4
  206. package/dist/blocks/cards/cards-5.schema.d.ts +0 -48
  207. package/dist/blocks/cards/cards-5.schema.js +0 -238
  208. package/dist/blocks/cards/cards-6.d.ts +0 -5
  209. package/dist/blocks/cards/cards-6.js +0 -45
  210. package/dist/blocks/cards/cards-6.schema.d.ts +0 -50
  211. package/dist/blocks/cards/cards-6.schema.js +0 -608
  212. package/dist/blocks/cards/cards-7.d.ts +0 -5
  213. package/dist/blocks/cards/cards-7.js +0 -45
  214. package/dist/blocks/cards/cards-7.schema.d.ts +0 -87
  215. package/dist/blocks/cards/cards-7.schema.js +0 -1732
  216. package/dist/blocks/cards/cards-8.d.ts +0 -6
  217. package/dist/blocks/cards/cards-8.js +0 -4
  218. package/dist/blocks/cards/cards-8.schema.d.ts +0 -40
  219. package/dist/blocks/cards/cards-8.schema.js +0 -660
  220. package/dist/blocks/cards/cards-9.d.ts +0 -5
  221. package/dist/blocks/cards/cards-9.js +0 -4
  222. package/dist/blocks/cards/cards-9.schema.d.ts +0 -55
  223. package/dist/blocks/cards/cards-9.schema.js +0 -798
  224. package/dist/blocks/carousel/carousel-1.d.ts +0 -5
  225. package/dist/blocks/carousel/carousel-1.js +0 -12
  226. package/dist/blocks/carousel/carousel-1.schema.d.ts +0 -51
  227. package/dist/blocks/carousel/carousel-1.schema.js +0 -236
  228. package/dist/blocks/contact-us/contact-us-1.d.ts +0 -5
  229. package/dist/blocks/contact-us/contact-us-1.js +0 -4
  230. package/dist/blocks/contact-us/contact-us-1.schema.d.ts +0 -31
  231. package/dist/blocks/contact-us/contact-us-1.schema.js +0 -202
  232. package/dist/blocks/contact-us/contact-us-2.d.ts +0 -5
  233. package/dist/blocks/contact-us/contact-us-2.js +0 -4
  234. package/dist/blocks/contact-us/contact-us-2.schema.d.ts +0 -59
  235. package/dist/blocks/contact-us/contact-us-2.schema.js +0 -512
  236. package/dist/blocks/content/content-1.d.ts +0 -6
  237. package/dist/blocks/content/content-1.js +0 -4
  238. package/dist/blocks/content/content-1.schema.d.ts +0 -56
  239. package/dist/blocks/content/content-1.schema.js +0 -807
  240. package/dist/blocks/content/content-2.d.ts +0 -5
  241. package/dist/blocks/content/content-2.js +0 -4
  242. package/dist/blocks/content/content-2.schema.d.ts +0 -78
  243. package/dist/blocks/content/content-2.schema.js +0 -200
  244. package/dist/blocks/content/content-3.d.ts +0 -6
  245. package/dist/blocks/content/content-3.js +0 -5
  246. package/dist/blocks/content/content-3.schema.d.ts +0 -23
  247. package/dist/blocks/content/content-3.schema.js +0 -850
  248. package/dist/blocks/content/content-4.d.ts +0 -6
  249. package/dist/blocks/content/content-4.js +0 -6
  250. package/dist/blocks/content/content-4.schema.d.ts +0 -33
  251. package/dist/blocks/content/content-4.schema.js +0 -252
  252. package/dist/blocks/content/content-5.d.ts +0 -6
  253. package/dist/blocks/content/content-5.js +0 -5
  254. package/dist/blocks/content/content-5.schema.d.ts +0 -37
  255. package/dist/blocks/content/content-5.schema.js +0 -932
  256. package/dist/blocks/content/content-6.d.ts +0 -6
  257. package/dist/blocks/content/content-6.js +0 -5
  258. package/dist/blocks/content/content-6.schema.d.ts +0 -41
  259. package/dist/blocks/content/content-6.schema.js +0 -976
  260. package/dist/blocks/cta/cta-1.d.ts +0 -5
  261. package/dist/blocks/cta/cta-1.js +0 -4
  262. package/dist/blocks/cta/cta-1.schema.d.ts +0 -40
  263. package/dist/blocks/cta/cta-1.schema.js +0 -339
  264. package/dist/blocks/cta/cta-2.d.ts +0 -5
  265. package/dist/blocks/cta/cta-2.js +0 -4
  266. package/dist/blocks/cta/cta-2.schema.d.ts +0 -45
  267. package/dist/blocks/cta/cta-2.schema.js +0 -183
  268. package/dist/blocks/cta/cta-3.d.ts +0 -5
  269. package/dist/blocks/cta/cta-3.js +0 -4
  270. package/dist/blocks/cta/cta-3.schema.d.ts +0 -34
  271. package/dist/blocks/cta/cta-3.schema.js +0 -137
  272. package/dist/blocks/embed/embed-1.d.ts +0 -5
  273. package/dist/blocks/embed/embed-1.js +0 -5
  274. package/dist/blocks/embed/embed-1.schema.d.ts +0 -13
  275. package/dist/blocks/embed/embed-1.schema.js +0 -146
  276. package/dist/blocks/event/event-details.d.ts +0 -5
  277. package/dist/blocks/event/event-details.js +0 -9
  278. package/dist/blocks/event/event-details.schema.d.ts +0 -112
  279. package/dist/blocks/event/event-details.schema.js +0 -685
  280. package/dist/blocks/event/event-listing-2.d.ts +0 -5
  281. package/dist/blocks/event/event-listing-2.js +0 -4
  282. package/dist/blocks/event/event-listing-2.schema.d.ts +0 -84
  283. package/dist/blocks/event/event-listing-2.schema.js +0 -455
  284. package/dist/blocks/event/event-listing-3.d.ts +0 -5
  285. package/dist/blocks/event/event-listing-3.js +0 -10
  286. package/dist/blocks/event/event-listing-3.schema.d.ts +0 -77
  287. package/dist/blocks/event/event-listing-3.schema.js +0 -570
  288. package/dist/blocks/event/event-listing.d.ts +0 -5
  289. package/dist/blocks/event/event-listing.js +0 -10
  290. package/dist/blocks/event/event-listing.schema.d.ts +0 -51
  291. package/dist/blocks/event/event-listing.schema.js +0 -1297
  292. package/dist/blocks/faq/faq-1.d.ts +0 -5
  293. package/dist/blocks/faq/faq-1.js +0 -4
  294. package/dist/blocks/faq/faq-1.schema.d.ts +0 -47
  295. package/dist/blocks/faq/faq-1.schema.js +0 -325
  296. package/dist/blocks/faq/faq-2.d.ts +0 -6
  297. package/dist/blocks/faq/faq-2.js +0 -19
  298. package/dist/blocks/faq/faq-2.schema.d.ts +0 -47
  299. package/dist/blocks/faq/faq-2.schema.js +0 -329
  300. package/dist/blocks/faq/faq-3.d.ts +0 -5
  301. package/dist/blocks/faq/faq-3.js +0 -4
  302. package/dist/blocks/faq/faq-3.schema.d.ts +0 -40
  303. package/dist/blocks/faq/faq-3.schema.js +0 -444
  304. package/dist/blocks/features/features-1/features-1.d.ts +0 -5
  305. package/dist/blocks/features/features-1/features-1.js +0 -4
  306. package/dist/blocks/features/features-1/features-1.schema.d.ts +0 -5
  307. package/dist/blocks/features/features-1/features-1.schema.js +0 -142
  308. package/dist/blocks/features/features-1/variants/default.d.ts +0 -37
  309. package/dist/blocks/features/features-1/variants/default.js +0 -185
  310. package/dist/blocks/features/features-1/variants/index.d.ts +0 -5
  311. package/dist/blocks/features/features-1/variants/stylized-cards-v1.d.ts +0 -3
  312. package/dist/blocks/features/features-1/variants/stylized-cards-v1.js +0 -132
  313. package/dist/blocks/features/features-1/variants/stylized-cards-v2.d.ts +0 -3
  314. package/dist/blocks/features/features-1/variants/stylized-cards-v2.js +0 -484
  315. package/dist/blocks/features/features-2.d.ts +0 -5
  316. package/dist/blocks/features/features-2.js +0 -8
  317. package/dist/blocks/features/features-2.schema.d.ts +0 -41
  318. package/dist/blocks/features/features-2.schema.js +0 -321
  319. package/dist/blocks/features/features-3.d.ts +0 -5
  320. package/dist/blocks/features/features-3.js +0 -4
  321. package/dist/blocks/features/features-3.schema.d.ts +0 -40
  322. package/dist/blocks/features/features-3.schema.js +0 -424
  323. package/dist/blocks/features/features-4.d.ts +0 -5
  324. package/dist/blocks/features/features-4.js +0 -4
  325. package/dist/blocks/features/features-4.schema.d.ts +0 -60
  326. package/dist/blocks/features/features-4.schema.js +0 -594
  327. package/dist/blocks/features/features-5.d.ts +0 -6
  328. package/dist/blocks/features/features-5.js +0 -5
  329. package/dist/blocks/features/features-5.schema.d.ts +0 -28
  330. package/dist/blocks/features/features-5.schema.js +0 -727
  331. package/dist/blocks/features/features-6.d.ts +0 -5
  332. package/dist/blocks/features/features-6.js +0 -31
  333. package/dist/blocks/features/features-6.schema.d.ts +0 -74
  334. package/dist/blocks/features/features-6.schema.js +0 -814
  335. package/dist/blocks/footer/footer-1.d.ts +0 -6
  336. package/dist/blocks/footer/footer-1.js +0 -5
  337. package/dist/blocks/footer/footer-1.schema.d.ts +0 -62
  338. package/dist/blocks/footer/footer-1.schema.js +0 -565
  339. package/dist/blocks/footer/footer-2.d.ts +0 -5
  340. package/dist/blocks/footer/footer-2.js +0 -4
  341. package/dist/blocks/footer/footer-2.schema.d.ts +0 -76
  342. package/dist/blocks/footer/footer-2.schema.js +0 -876
  343. package/dist/blocks/footer/footer-3.d.ts +0 -6
  344. package/dist/blocks/footer/footer-3.js +0 -15
  345. package/dist/blocks/footer/footer-3.schema.d.ts +0 -48
  346. package/dist/blocks/footer/footer-3.schema.js +0 -475
  347. package/dist/blocks/footer/footer-4.d.ts +0 -6
  348. package/dist/blocks/footer/footer-4.js +0 -5
  349. package/dist/blocks/footer/footer-4.schema.d.ts +0 -71
  350. package/dist/blocks/footer/footer-4.schema.js +0 -620
  351. package/dist/blocks/footer/footer-5.d.ts +0 -6
  352. package/dist/blocks/footer/footer-5.js +0 -5
  353. package/dist/blocks/footer/footer-5.schema.d.ts +0 -52
  354. package/dist/blocks/footer/footer-5.schema.js +0 -400
  355. package/dist/blocks/hero/hero-1.d.ts +0 -5
  356. package/dist/blocks/hero/hero-1.js +0 -4
  357. package/dist/blocks/hero/hero-1.schema.d.ts +0 -35
  358. package/dist/blocks/hero/hero-1.schema.js +0 -742
  359. package/dist/blocks/hero/hero-2.d.ts +0 -5
  360. package/dist/blocks/hero/hero-2.js +0 -4
  361. package/dist/blocks/hero/hero-2.schema.d.ts +0 -46
  362. package/dist/blocks/hero/hero-2.schema.js +0 -282
  363. package/dist/blocks/hero/hero-3.d.ts +0 -5
  364. package/dist/blocks/hero/hero-3.js +0 -4
  365. package/dist/blocks/hero/hero-3.schema.d.ts +0 -54
  366. package/dist/blocks/hero/hero-3.schema.js +0 -378
  367. package/dist/blocks/hero/hero-4.d.ts +0 -5
  368. package/dist/blocks/hero/hero-4.js +0 -30
  369. package/dist/blocks/hero/hero-4.schema.d.ts +0 -33
  370. package/dist/blocks/hero/hero-4.schema.js +0 -316
  371. package/dist/blocks/hero/hero-5.d.ts +0 -5
  372. package/dist/blocks/hero/hero-5.js +0 -30
  373. package/dist/blocks/hero/hero-5.schema.d.ts +0 -32
  374. package/dist/blocks/hero/hero-5.schema.js +0 -183
  375. package/dist/blocks/hero/hero-6.d.ts +0 -5
  376. package/dist/blocks/hero/hero-6.js +0 -8
  377. package/dist/blocks/hero/hero-6.schema.d.ts +0 -36
  378. package/dist/blocks/hero/hero-6.schema.js +0 -617
  379. package/dist/blocks/hero/hero-7.d.ts +0 -5
  380. package/dist/blocks/hero/hero-7.js +0 -40
  381. package/dist/blocks/hero/hero-7.schema.d.ts +0 -12
  382. package/dist/blocks/hero/hero-7.schema.js +0 -471
  383. package/dist/blocks/hero/hero-8.d.ts +0 -5
  384. package/dist/blocks/hero/hero-8.js +0 -39
  385. package/dist/blocks/hero/hero-8.schema.d.ts +0 -17
  386. package/dist/blocks/hero/hero-8.schema.js +0 -343
  387. package/dist/blocks/hero/hero-9.d.ts +0 -6
  388. package/dist/blocks/hero/hero-9.js +0 -4
  389. package/dist/blocks/hero/hero-9.schema.d.ts +0 -39
  390. package/dist/blocks/hero/hero-9.schema.js +0 -355
  391. package/dist/blocks/index.d.ts +0 -3
  392. package/dist/blocks/index.js +0 -74
  393. package/dist/blocks/logos/logos-1.d.ts +0 -5
  394. package/dist/blocks/logos/logos-1.js +0 -10
  395. package/dist/blocks/logos/logos-1.schema.d.ts +0 -34
  396. package/dist/blocks/logos/logos-1.schema.js +0 -239
  397. package/dist/blocks/navbar/navbar-1.d.ts +0 -6
  398. package/dist/blocks/navbar/navbar-1.js +0 -100
  399. package/dist/blocks/navbar/navbar-1.schema.d.ts +0 -117
  400. package/dist/blocks/navbar/navbar-1.schema.js +0 -938
  401. package/dist/blocks/navbar/navbar-2.d.ts +0 -6
  402. package/dist/blocks/navbar/navbar-2.js +0 -99
  403. package/dist/blocks/navbar/navbar-2.schema.d.ts +0 -134
  404. package/dist/blocks/navbar/navbar-2.schema.js +0 -1200
  405. package/dist/blocks/pricing/pricing-1.d.ts +0 -5
  406. package/dist/blocks/pricing/pricing-1.js +0 -4
  407. package/dist/blocks/pricing/pricing-1.schema.d.ts +0 -87
  408. package/dist/blocks/pricing/pricing-1.schema.js +0 -976
  409. package/dist/blocks/products/products-listing-1.d.ts +0 -5
  410. package/dist/blocks/products/products-listing-1.js +0 -4
  411. package/dist/blocks/products/products-listing-1.schema.d.ts +0 -36
  412. package/dist/blocks/products/products-listing-1.schema.js +0 -264
  413. package/dist/blocks/stats/stats-1.d.ts +0 -6
  414. package/dist/blocks/stats/stats-1.js +0 -6
  415. package/dist/blocks/stats/stats-1.schema.d.ts +0 -25
  416. package/dist/blocks/stats/stats-1.schema.js +0 -213
  417. package/dist/blocks/stats/stats-2.d.ts +0 -6
  418. package/dist/blocks/stats/stats-2.js +0 -6
  419. package/dist/blocks/stats/stats-2.schema.d.ts +0 -5
  420. package/dist/blocks/stats/stats-2.schema.js +0 -104
  421. package/dist/blocks/stats/variants/default.d.ts +0 -22
  422. package/dist/blocks/stats/variants/default.js +0 -185
  423. package/dist/blocks/stats/variants/hero.d.ts +0 -3
  424. package/dist/blocks/stats/variants/hero.js +0 -151
  425. package/dist/blocks/stats/variants/index.d.ts +0 -4
  426. package/dist/blocks/team/team-1.d.ts +0 -6
  427. package/dist/blocks/team/team-1.js +0 -6
  428. package/dist/blocks/team/team-1.schema.d.ts +0 -65
  429. package/dist/blocks/team/team-1.schema.js +0 -476
  430. package/dist/blocks/team/team-2.d.ts +0 -6
  431. package/dist/blocks/team/team-2.js +0 -6
  432. package/dist/blocks/team/team-2.schema.d.ts +0 -52
  433. package/dist/blocks/team/team-2.schema.js +0 -2732
  434. package/dist/blocks/team/team-3.d.ts +0 -5
  435. package/dist/blocks/team/team-3.js +0 -30
  436. package/dist/blocks/team/team-3.schema.d.ts +0 -32
  437. package/dist/blocks/team/team-3.schema.js +0 -679
  438. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.d.ts +0 -6
  439. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.js +0 -4
  440. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.schema.d.ts +0 -14
  441. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.schema.js +0 -154
  442. package/dist/blocks/testimonial/testimonial-1.d.ts +0 -5
  443. package/dist/blocks/testimonial/testimonial-1.js +0 -10
  444. package/dist/blocks/testimonial/testimonial-1.schema.d.ts +0 -16
  445. package/dist/blocks/testimonial/testimonial-1.schema.js +0 -314
  446. package/dist/blocks/testimonial/testimonial-2.d.ts +0 -5
  447. package/dist/blocks/testimonial/testimonial-2.js +0 -42
  448. package/dist/blocks/testimonial/testimonial-2.schema.d.ts +0 -54
  449. package/dist/blocks/testimonial/testimonial-2.schema.js +0 -771
  450. package/dist/blocks/testimonial/testimonial-3.d.ts +0 -5
  451. package/dist/blocks/testimonial/testimonial-3.js +0 -38
  452. package/dist/blocks/testimonial/testimonial-3.schema.d.ts +0 -56
  453. package/dist/blocks/testimonial/testimonial-3.schema.js +0 -260
  454. package/dist/blocks/testimonial/testimonial-4.d.ts +0 -5
  455. package/dist/blocks/testimonial/testimonial-4.js +0 -51
  456. package/dist/blocks/testimonial/testimonial-4.schema.d.ts +0 -145
  457. package/dist/blocks/testimonial/testimonial-4.schema.js +0 -3214
  458. package/dist/blocks/testimonial/testimonial-5.d.ts +0 -5
  459. package/dist/blocks/testimonial/testimonial-5.js +0 -31
  460. package/dist/blocks/testimonial/testimonial-5.schema.d.ts +0 -33
  461. package/dist/blocks/testimonial/testimonial-5.schema.js +0 -401
  462. package/dist/blocks/testimonial/testimonial-6.d.ts +0 -5
  463. package/dist/blocks/testimonial/testimonial-6.js +0 -39
  464. package/dist/blocks/testimonial/testimonial-6.schema.d.ts +0 -60
  465. package/dist/blocks/testimonial/testimonial-6.schema.js +0 -695
  466. package/dist/index.d.ts +0 -6
  467. package/dist/schemas/blocks.d.ts +0 -3
  468. package/dist/schemas/categories.d.ts +0 -3
  469. package/dist/schemas/categories.js +0 -129
  470. package/dist/schemas/index.d.ts +0 -3
  471. /package/{dist/schemas/index.js → src/schemas/index.ts} +0 -0
@@ -0,0 +1,1002 @@
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
+ // Sample pricing cards data following the image structure
15
+ const PRICING_CARDS = [
16
+ {
17
+ card: null,
18
+ badge: "",
19
+ badge_pill: null,
20
+ title: "Basic Plan",
21
+ description: "Free plan, Best for personal use.",
22
+ pricing_wrapper: null,
23
+ price: "$0",
24
+ period: null,
25
+ cta: "Book Now",
26
+ features_wrapper: null,
27
+ features_title: "What you will get",
28
+ features_levoGroup: null,
29
+ features: [
30
+ {
31
+ feature_item: DUMMY_ICON,
32
+ feature_text: "Access to core feature",
33
+ },
34
+ {
35
+ feature_item: DUMMY_ICON,
36
+ feature_text: "Communication tool",
37
+ },
38
+ {
39
+ feature_item: DUMMY_ICON,
40
+ feature_text: "Limited support",
41
+ },
42
+ {
43
+ feature_item: DUMMY_ICON,
44
+ feature_text: "basic reporting tools",
45
+ },
46
+ ],
47
+ },
48
+ {
49
+ card: null,
50
+ badge: "Most Popular",
51
+ badge_pill: null,
52
+ title: "Premium Plan",
53
+ description: "Paid plan, Best for large enterprise",
54
+ pricing_wrapper: null,
55
+ price: "$150",
56
+ period: "/ per month",
57
+ cta: "Book Now",
58
+ features_wrapper: null,
59
+ features_title: "What you will get",
60
+ features_levoGroup: null,
61
+ features: [
62
+ {
63
+ feature_item: DUMMY_ICON,
64
+ feature_text: "Access to core feature",
65
+ },
66
+ {
67
+ feature_item: DUMMY_ICON,
68
+ feature_text: "Communication tool",
69
+ },
70
+ {
71
+ feature_item: DUMMY_ICON,
72
+ feature_text: "Limited support",
73
+ },
74
+ {
75
+ feature_item: DUMMY_ICON,
76
+ feature_text: "basic reporting tools",
77
+ },
78
+ ],
79
+ },
80
+ {
81
+ card: null,
82
+ badge: null,
83
+ badge_pill: null,
84
+ title: "Silver Plan",
85
+ description: "Paid Plan, Best for Business owners.",
86
+ pricing_wrapper: null,
87
+ price: "$50",
88
+ period: "/ per month",
89
+ cta: "Book Now",
90
+ features_wrapper: null,
91
+ features_title: "What you will get",
92
+ features_levoGroup: null,
93
+ features: [
94
+ {
95
+ feature_item: DUMMY_ICON,
96
+ feature_text: "Access to core feature",
97
+ },
98
+ {
99
+ feature_item: DUMMY_ICON,
100
+ feature_text: "Communication tool",
101
+ },
102
+ {
103
+ feature_item: DUMMY_ICON,
104
+ feature_text: "Limited support",
105
+ },
106
+ {
107
+ feature_item: DUMMY_ICON,
108
+ feature_text: "basic reporting tools",
109
+ },
110
+ ],
111
+ },
112
+ ];
113
+
114
+ const DEFAULT_CONTENT = {
115
+ layout: null,
116
+ container: null,
117
+ title: "Our Pricing Plans",
118
+ pricing_cards_levoGroup: null,
119
+ pricing_cards: PRICING_CARDS,
120
+ };
121
+
122
+ export type IPricing1Content = typeof DEFAULT_CONTENT;
123
+
124
+ export const Pricing1: IBlock = {
125
+ category_id: "pricing",
126
+ title: "Pricing 1",
127
+ key: "pricing-1",
128
+ version: "v1",
129
+ prompt_description:
130
+ "Pricing plans section with title and repeatable pricing cards, each featuring a badge, title, description, price, CTA button, and list of features with icons",
131
+ content_schema: [
132
+ {
133
+ key: "layout",
134
+ label: "Layout",
135
+ field_interface: "LayoutWidget",
136
+ hint: {
137
+ prompt_description:
138
+ "Defines the overall structure and spacing for the pricing section",
139
+ },
140
+ },
141
+ {
142
+ key: "container",
143
+ label: "Container",
144
+ field_interface: "ContainerWidget",
145
+ hint: {
146
+ prompt_description:
147
+ "Main container that centers and constrains the pricing content width",
148
+ },
149
+ },
150
+ {
151
+ key: "title",
152
+ label: "Title",
153
+ field_interface: "HeadingWidget",
154
+ hint: {
155
+ prompt_description:
156
+ "Main heading for the pricing section, should be clear and compelling",
157
+ min_characters: 15,
158
+ max_characters: 50,
159
+ },
160
+ },
161
+ {
162
+ key: "pricing_cards",
163
+ label: "Pricing Cards",
164
+ kind: "group",
165
+ field_interface: "BoxWidget",
166
+ fields: [
167
+ {
168
+ key: "card",
169
+ label: "Card",
170
+ field_interface: "BoxWidget",
171
+ hint: {
172
+ prompt_description:
173
+ "Individual pricing card container with border and styling",
174
+ },
175
+ },
176
+ {
177
+ key: "title_badge_container",
178
+ label: "Title Badge Container",
179
+ field_interface: "BoxWidget",
180
+ hint: {
181
+ prompt_description:
182
+ "Container that groups the badge and title together at the top of the card",
183
+ },
184
+ },
185
+ {
186
+ key: "badge",
187
+ label: "Badge Text",
188
+ field_interface: "TypographyWidget",
189
+ hint: {
190
+ prompt_description:
191
+ "Optional badge text like 'Most Popular' or plan type identifier",
192
+ min_characters: 4,
193
+ max_characters: 20,
194
+ },
195
+ },
196
+ {
197
+ key: "primary_content_container",
198
+ label: "Primary Content Container",
199
+ field_interface: "BoxWidget",
200
+ hint: {
201
+ prompt_description:
202
+ "Main content container that groups title, badge, description, pricing, and CTA together",
203
+ },
204
+ },
205
+ {
206
+ key: "title",
207
+ label: "Plan Title",
208
+ field_interface: "HeadingWidget",
209
+ hint: {
210
+ prompt_description:
211
+ "Name of the pricing plan, should be clear and descriptive",
212
+ min_characters: 8,
213
+ max_characters: 30,
214
+ },
215
+ },
216
+ {
217
+ key: "description",
218
+ label: "Plan Description",
219
+ field_interface: "TypographyWidget",
220
+ hint: {
221
+ prompt_description:
222
+ "Brief description explaining who this plan is best for",
223
+ min_characters: 20,
224
+ max_characters: 100,
225
+ },
226
+ },
227
+ {
228
+ key: "pricing_wrapper",
229
+ label: "Pricing Wrapper",
230
+ field_interface: "BoxWidget",
231
+ hint: {
232
+ prompt_description: "Container for the price and period display",
233
+ },
234
+ },
235
+ {
236
+ key: "price",
237
+ label: "Price",
238
+ field_interface: "TypographyWidget",
239
+ hint: {
240
+ prompt_description:
241
+ "Price amount, should include currency symbol like '$50' or '$0'",
242
+ min_characters: 2,
243
+ max_characters: 15,
244
+ },
245
+ },
246
+ {
247
+ key: "period",
248
+ label: "Period",
249
+ field_interface: "TypographyWidget",
250
+ hint: {
251
+ prompt_description:
252
+ "Billing period like '/ per month' or '/ annually', can be empty for free plans",
253
+ min_characters: 0,
254
+ max_characters: 20,
255
+ },
256
+ },
257
+ {
258
+ key: "cta",
259
+ label: "CTA Button",
260
+ field_interface: "ButtonWidget",
261
+ hint: {
262
+ prompt_description:
263
+ "Call-to-action button text to encourage sign-up or booking",
264
+ min_characters: 6,
265
+ max_characters: 20,
266
+ },
267
+ },
268
+ {
269
+ key: "features_wrapper",
270
+ label: "Features Wrapper",
271
+ field_interface: "BoxWidget",
272
+ hint: {
273
+ prompt_description:
274
+ "Container for the features section within each card",
275
+ },
276
+ },
277
+ {
278
+ key: "features_title",
279
+ label: "Features Title",
280
+ field_interface: "HeadingWidget",
281
+ hint: {
282
+ prompt_description:
283
+ "Title for the features list, typically 'What you will get'",
284
+ min_characters: 10,
285
+ max_characters: 30,
286
+ },
287
+ },
288
+ {
289
+ key: "features",
290
+ label: "Features",
291
+ kind: "group",
292
+ field_interface: "BoxWidget",
293
+ fields: [
294
+ {
295
+ key: "feature_container",
296
+ label: "Feature Container",
297
+ field_interface: "BoxWidget",
298
+ hint: {
299
+ prompt_description:
300
+ "Container that groups the feature icon and text together",
301
+ },
302
+ },
303
+ {
304
+ key: "feature_item",
305
+ label: "Feature Icon",
306
+ field_interface: "IconWidget",
307
+ hint: {
308
+ prompt_description:
309
+ "Icon to display next to the feature text, typically a checkmark or bullet point",
310
+ },
311
+ },
312
+ {
313
+ key: "feature_text",
314
+ label: "Feature Text",
315
+ field_interface: "TypographyWidget",
316
+ hint: {
317
+ prompt_description:
318
+ "Description of a specific feature included in this plan",
319
+ min_characters: 10,
320
+ max_characters: 50,
321
+ },
322
+ },
323
+ ],
324
+ },
325
+ ],
326
+ },
327
+ ],
328
+ layouts: [
329
+ {
330
+ key: "default",
331
+ title: "Default",
332
+ styles: {
333
+ layout: {
334
+ "padding-top": "7xl",
335
+ "padding-bottom": "7xl",
336
+ "background-color": "white",
337
+ filter: "none",
338
+ tablet: {
339
+ filter: "none",
340
+ },
341
+ mobile: {
342
+ filter: "none",
343
+ },
344
+ },
345
+ container: {
346
+ "max-width": "1280px",
347
+ "margin-left": "auto",
348
+ "margin-right": "auto",
349
+ "padding-left": "lg",
350
+ "padding-right": "lg",
351
+ filter: "none",
352
+ },
353
+ title: {
354
+ "text-align": "center",
355
+ "margin-bottom": "4xl",
356
+ "font-size": "5xl",
357
+ "font-weight": "700",
358
+ color: "text-1",
359
+ mobile: {
360
+ "font-size": "3xl",
361
+ },
362
+ filter: "none",
363
+ "padding-bottom": "5xl",
364
+ },
365
+ pricing_cards_levoGroup: {
366
+ display: "grid",
367
+ "grid-template-columns": "repeat(3, minmax(0, 1fr))",
368
+ gap: "2xl",
369
+ tablet: {
370
+ "grid-template-columns": "repeat(2, minmax(0, 1fr))",
371
+ },
372
+ mobile: {
373
+ "grid-template-columns": "repeat(1, minmax(0, 1fr))",
374
+ },
375
+ },
376
+ pricing_cards: [
377
+ {
378
+ card: {
379
+ "background-color": "white",
380
+ "border-color": "border",
381
+ "border-width": "1px",
382
+ "border-style": "solid",
383
+ "border-radius": "xl",
384
+ "padding-top": "3xl",
385
+ "padding-bottom": "3xl",
386
+ "padding-left": "sm",
387
+ "padding-right": "sm",
388
+ position: "relative",
389
+ "text-align": "center",
390
+ mobile: {
391
+ "padding-top": "xl",
392
+ "padding-bottom": "xl",
393
+ },
394
+ filter: "none",
395
+ },
396
+ badge_pill: {
397
+ position: "absolute",
398
+ top: "-12px",
399
+ left: "50%",
400
+ transform: "translateX(-50%)",
401
+ "background-color": "brand",
402
+ color: "brandForeground",
403
+ "padding-top": "xs",
404
+ "padding-bottom": "xs",
405
+ "padding-left": "base",
406
+ "padding-right": "base",
407
+ "border-radius": "lg",
408
+ "font-size": "sm",
409
+ "font-weight": "600",
410
+ filter: "none",
411
+ },
412
+ badge: {
413
+ "font-size": "sm",
414
+ "font-weight": "600",
415
+ color: "brandForeground",
416
+ filter: "none",
417
+ },
418
+ title: {
419
+ "font-size": "2xl",
420
+ "font-weight": "700",
421
+ color: "text-1",
422
+ "margin-bottom": "xs",
423
+ mobile: {
424
+ "font-size": "xl",
425
+ },
426
+ filter: "none",
427
+ "text-align": "left",
428
+ },
429
+ description: {
430
+ "font-size": "base",
431
+ color: "text-2",
432
+ "margin-bottom": "xl",
433
+ mobile: {
434
+ "font-size": "sm",
435
+ },
436
+ filter: "none",
437
+ "text-align": "left",
438
+ },
439
+ pricing_wrapper: {
440
+ "margin-bottom": "xl",
441
+ display: "flex",
442
+ "align-items": "start",
443
+ "justify-content": "start",
444
+ gap: "xs",
445
+ filter: "none",
446
+ },
447
+ price: {
448
+ "font-size": "4xl",
449
+ "font-weight": "700",
450
+ color: "brand",
451
+ "line-height": "1",
452
+ mobile: {
453
+ "font-size": "4xl",
454
+ },
455
+ filter: "none",
456
+ "text-align": "left",
457
+ },
458
+ period: {
459
+ "font-size": "base",
460
+ color: "text-2",
461
+ "font-weight": "500",
462
+ },
463
+ cta: {
464
+ width: "100%",
465
+ "background-color": "brand",
466
+ color: "brandForeground",
467
+ "padding-top": "xs",
468
+ "padding-bottom": "xs",
469
+ "border-radius": "3xl",
470
+ "font-weight": 600,
471
+ "margin-bottom": "2xl",
472
+ "border-width": "0",
473
+ mobile: {
474
+ "margin-bottom": "xl",
475
+ },
476
+ filter: "none",
477
+ },
478
+ features_wrapper: {
479
+ "text-align": "left",
480
+ },
481
+ features_title: {
482
+ "font-size": "lg",
483
+ "font-weight": "600",
484
+ color: "text-1",
485
+ "margin-bottom": "base",
486
+ },
487
+ features_levoGroup: {
488
+ display: "flex",
489
+ "flex-direction": "column",
490
+ gap: "sm",
491
+ },
492
+ features: [
493
+ {
494
+ feature_container: {
495
+ display: "flex",
496
+ "align-items": "flex-start",
497
+ gap: "sm",
498
+ },
499
+ feature_item: {
500
+ width: "20px",
501
+ height: "20px",
502
+ "flex-shrink": "0",
503
+ color: "brand",
504
+ },
505
+ feature_text: {
506
+ "font-size": "base",
507
+ color: "text-2",
508
+ "line-height": "1.5",
509
+ mobile: {
510
+ "font-size": "sm",
511
+ },
512
+ filter: "none",
513
+ },
514
+ },
515
+ {
516
+ feature_container: {
517
+ display: "flex",
518
+ "align-items": "flex-start",
519
+ gap: "sm",
520
+ },
521
+ feature_item: {
522
+ width: "20px",
523
+ height: "20px",
524
+ "flex-shrink": "0",
525
+ color: "brand",
526
+ },
527
+ feature_text: {
528
+ "font-size": "base",
529
+ color: "text-2",
530
+ "line-height": "1.5",
531
+ mobile: {
532
+ "font-size": "sm",
533
+ },
534
+ },
535
+ },
536
+ {
537
+ feature_container: {
538
+ display: "flex",
539
+ "align-items": "flex-start",
540
+ gap: "sm",
541
+ },
542
+ feature_item: {
543
+ width: "20px",
544
+ height: "20px",
545
+ "flex-shrink": "0",
546
+ color: "brand",
547
+ },
548
+ feature_text: {
549
+ "font-size": "base",
550
+ color: "text-2",
551
+ "line-height": "1.5",
552
+ mobile: {
553
+ "font-size": "sm",
554
+ },
555
+ },
556
+ },
557
+ {
558
+ feature_container: {
559
+ display: "flex",
560
+ "align-items": "flex-start",
561
+ gap: "sm",
562
+ },
563
+ feature_item: {
564
+ width: "20px",
565
+ height: "20px",
566
+ "flex-shrink": "0",
567
+ color: "brand",
568
+ },
569
+ feature_text: {
570
+ "font-size": "base",
571
+ color: "text-2",
572
+ "line-height": "1.5",
573
+ mobile: {
574
+ "font-size": "sm",
575
+ },
576
+ },
577
+ },
578
+ ],
579
+ },
580
+ {
581
+ card: {
582
+ "background-color": "background-1",
583
+ "border-color": "brand",
584
+ "border-width": "1px",
585
+ "border-style": "solid",
586
+ "border-radius": "xl",
587
+ "padding-top": "3xl",
588
+ "padding-bottom": "3xl",
589
+ "padding-left": "sm",
590
+ "padding-right": "sm",
591
+ position: "relative",
592
+ "text-align": "center",
593
+ mobile: {
594
+ "padding-top": "xl",
595
+ "padding-bottom": "xl",
596
+ },
597
+ filter: "none",
598
+ },
599
+ badge_pill: {
600
+ "background-color": "white",
601
+ color: "brandForeground",
602
+ "padding-top": "4xs",
603
+ "padding-bottom": "4xs",
604
+ "padding-left": "base",
605
+ "padding-right": "base",
606
+ "border-radius": "3xl",
607
+ "font-size": "sm",
608
+ "font-weight": "600",
609
+ filter: "none",
610
+ "border-style": "solid",
611
+ "border-width": "1px",
612
+ "border-color": "brand",
613
+ },
614
+ badge: {
615
+ "font-size": "sm",
616
+ "font-weight": 600,
617
+ color: "brand",
618
+ filter: "none",
619
+ "background-color": "white",
620
+ "padding-top": "5xs",
621
+ "padding-bottom": "5xs",
622
+ "padding-left": "2xs",
623
+ "padding-right": "2xs",
624
+ "border-radius": "3xl",
625
+ "border-style": "solid",
626
+ "border-width": "1px",
627
+ "border-color": "brand",
628
+ display: "flex",
629
+ "justify-content": "center",
630
+ "align-items": "center",
631
+ height: "min-content",
632
+ },
633
+ title: {
634
+ "font-size": "2xl",
635
+ "font-weight": "700",
636
+ color: "text-1",
637
+ "margin-bottom": "xs",
638
+ mobile: {
639
+ "font-size": "xl",
640
+ },
641
+ filter: "none",
642
+ "text-align": "left",
643
+ },
644
+ description: {
645
+ "font-size": "base",
646
+ color: "text-2",
647
+ "margin-bottom": "xl",
648
+ mobile: {
649
+ "font-size": "sm",
650
+ },
651
+ filter: "none",
652
+ "text-align": "left",
653
+ },
654
+ pricing_wrapper: {
655
+ "margin-bottom": "xl",
656
+ display: "flex",
657
+ "align-items": "center",
658
+ "justify-content": "start",
659
+ gap: "xs",
660
+ filter: "none",
661
+ },
662
+ price: {
663
+ "font-size": "5xl",
664
+ "font-weight": "700",
665
+ color: "brand",
666
+ "line-height": "1",
667
+ mobile: {
668
+ "font-size": "4xl",
669
+ },
670
+ },
671
+ period: {
672
+ "font-size": "base",
673
+ color: "text-2",
674
+ "font-weight": "500",
675
+ },
676
+ cta: {
677
+ width: "100%",
678
+ "background-color": "brand",
679
+ color: "brandForeground",
680
+ "padding-top": "xs",
681
+ "padding-bottom": "xs",
682
+ "border-radius": "3xl",
683
+ "font-weight": 600,
684
+ "margin-bottom": "2xl",
685
+ "border-width": "0",
686
+ mobile: {
687
+ "margin-bottom": "xl",
688
+ },
689
+ filter: "none",
690
+ },
691
+ features_wrapper: {
692
+ "text-align": "left",
693
+ },
694
+ features_title: {
695
+ "font-size": "lg",
696
+ "font-weight": "600",
697
+ color: "text-1",
698
+ "margin-bottom": "base",
699
+ },
700
+ features_levoGroup: {
701
+ display: "flex",
702
+ "flex-direction": "column",
703
+ gap: "sm",
704
+ },
705
+ features: [
706
+ {
707
+ feature_container: {
708
+ display: "flex",
709
+ "align-items": "flex-start",
710
+ gap: "sm",
711
+ },
712
+ feature_item: {
713
+ width: "20px",
714
+ height: "20px",
715
+ "flex-shrink": "0",
716
+ color: "brand",
717
+ },
718
+ feature_text: {
719
+ "font-size": "base",
720
+ color: "text-2",
721
+ "line-height": "1.5",
722
+ mobile: {
723
+ "font-size": "sm",
724
+ },
725
+ },
726
+ },
727
+ {
728
+ feature_container: {
729
+ display: "flex",
730
+ "align-items": "flex-start",
731
+ gap: "sm",
732
+ },
733
+ feature_item: {
734
+ width: "20px",
735
+ height: "20px",
736
+ "flex-shrink": "0",
737
+ color: "brand",
738
+ },
739
+ feature_text: {
740
+ "font-size": "base",
741
+ color: "text-2",
742
+ "line-height": "1.5",
743
+ mobile: {
744
+ "font-size": "sm",
745
+ },
746
+ },
747
+ },
748
+ {
749
+ feature_container: {
750
+ display: "flex",
751
+ "align-items": "flex-start",
752
+ gap: "sm",
753
+ },
754
+ feature_item: {
755
+ width: "20px",
756
+ height: "20px",
757
+ "flex-shrink": "0",
758
+ color: "brand",
759
+ },
760
+ feature_text: {
761
+ "font-size": "base",
762
+ color: "text-2",
763
+ "line-height": "1.5",
764
+ mobile: {
765
+ "font-size": "sm",
766
+ },
767
+ },
768
+ },
769
+ {
770
+ feature_container: {
771
+ display: "flex",
772
+ "align-items": "flex-start",
773
+ gap: "sm",
774
+ },
775
+ feature_item: {
776
+ width: "20px",
777
+ height: "20px",
778
+ "flex-shrink": "0",
779
+ color: "brand",
780
+ },
781
+ feature_text: {
782
+ "font-size": "base",
783
+ color: "text-2",
784
+ "line-height": "1.5",
785
+ mobile: {
786
+ "font-size": "sm",
787
+ },
788
+ },
789
+ },
790
+ ],
791
+ title_badge_container: {
792
+ filter: "none",
793
+ display: "flex",
794
+ "flex-direction": "row-reverse",
795
+ "justify-content": "space-between",
796
+ },
797
+ },
798
+ {
799
+ card: {
800
+ "background-color": "white",
801
+ "border-color": "border",
802
+ "border-width": "1px",
803
+ "border-style": "solid",
804
+ "border-radius": "xl",
805
+ "padding-top": "3xl",
806
+ "padding-bottom": "3xl",
807
+ "padding-left": "sm",
808
+ "padding-right": "sm",
809
+ position: "relative",
810
+ "text-align": "center",
811
+ mobile: {
812
+ "padding-top": "xl",
813
+ "padding-bottom": "xl",
814
+ },
815
+ filter: "none",
816
+ },
817
+ badge_pill: {
818
+ position: "absolute",
819
+ top: "-12px",
820
+ left: "50%",
821
+ transform: "translateX(-50%)",
822
+ "background-color": "brand",
823
+ color: "brandForeground",
824
+ "padding-top": "xs",
825
+ "padding-bottom": "xs",
826
+ "padding-left": "base",
827
+ "padding-right": "base",
828
+ "border-radius": "lg",
829
+ "font-size": "sm",
830
+ "font-weight": "600",
831
+ },
832
+ badge: {
833
+ "font-size": "sm",
834
+ "font-weight": "600",
835
+ color: "brandForeground",
836
+ },
837
+ title: {
838
+ "font-size": "2xl",
839
+ "font-weight": "700",
840
+ color: "text-1",
841
+ "margin-bottom": "xs",
842
+ mobile: {
843
+ "font-size": "xl",
844
+ },
845
+ filter: "none",
846
+ "text-align": "left",
847
+ },
848
+ description: {
849
+ "font-size": "base",
850
+ color: "text-2",
851
+ "margin-bottom": "xl",
852
+ mobile: {
853
+ "font-size": "sm",
854
+ },
855
+ filter: "none",
856
+ "text-align": "left",
857
+ },
858
+ pricing_wrapper: {
859
+ "margin-bottom": "xl",
860
+ display: "flex",
861
+ "align-items": "center",
862
+ "justify-content": "start",
863
+ gap: "xs",
864
+ filter: "none",
865
+ },
866
+ price: {
867
+ "font-size": "5xl",
868
+ "font-weight": "700",
869
+ color: "brand",
870
+ "line-height": "1",
871
+ mobile: {
872
+ "font-size": "4xl",
873
+ },
874
+ },
875
+ period: {
876
+ "font-size": "base",
877
+ color: "text-2",
878
+ "font-weight": "500",
879
+ },
880
+ cta: {
881
+ width: "100%",
882
+ "background-color": "brand",
883
+ color: "brandForeground",
884
+ "padding-top": "xs",
885
+ "padding-bottom": "xs",
886
+ "border-radius": "3xl",
887
+ "font-weight": 600,
888
+ "margin-bottom": "2xl",
889
+ "border-width": "0",
890
+ mobile: {
891
+ "margin-bottom": "xl",
892
+ },
893
+ filter: "none",
894
+ },
895
+ features_wrapper: {
896
+ "text-align": "left",
897
+ },
898
+ features_title: {
899
+ "font-size": "lg",
900
+ "font-weight": "600",
901
+ color: "text-1",
902
+ "margin-bottom": "base",
903
+ },
904
+ features_levoGroup: {
905
+ display: "flex",
906
+ "flex-direction": "column",
907
+ gap: "sm",
908
+ },
909
+ features: [
910
+ {
911
+ feature_container: {
912
+ display: "flex",
913
+ "align-items": "flex-start",
914
+ gap: "sm",
915
+ },
916
+ feature_item: {
917
+ width: "20px",
918
+ height: "20px",
919
+ "flex-shrink": "0",
920
+ color: "brand",
921
+ },
922
+ feature_text: {
923
+ "font-size": "base",
924
+ color: "text-2",
925
+ "line-height": "1.5",
926
+ mobile: {
927
+ "font-size": "sm",
928
+ },
929
+ },
930
+ },
931
+ {
932
+ feature_container: {
933
+ display: "flex",
934
+ "align-items": "flex-start",
935
+ gap: "sm",
936
+ },
937
+ feature_item: {
938
+ width: "20px",
939
+ height: "20px",
940
+ "flex-shrink": "0",
941
+ color: "brand",
942
+ },
943
+ feature_text: {
944
+ "font-size": "base",
945
+ color: "text-2",
946
+ "line-height": "1.5",
947
+ mobile: {
948
+ "font-size": "sm",
949
+ },
950
+ },
951
+ },
952
+ {
953
+ feature_container: {
954
+ display: "flex",
955
+ "align-items": "flex-start",
956
+ gap: "sm",
957
+ },
958
+ feature_item: {
959
+ width: "20px",
960
+ height: "20px",
961
+ "flex-shrink": "0",
962
+ color: "brand",
963
+ },
964
+ feature_text: {
965
+ "font-size": "base",
966
+ color: "text-2",
967
+ "line-height": "1.5",
968
+ mobile: {
969
+ "font-size": "sm",
970
+ },
971
+ },
972
+ },
973
+ {
974
+ feature_container: {
975
+ display: "flex",
976
+ "align-items": "flex-start",
977
+ gap: "sm",
978
+ },
979
+ feature_item: {
980
+ width: "20px",
981
+ height: "20px",
982
+ "flex-shrink": "0",
983
+ color: "brand",
984
+ },
985
+ feature_text: {
986
+ "font-size": "base",
987
+ color: "text-2",
988
+ "line-height": "1.5",
989
+ mobile: {
990
+ "font-size": "sm",
991
+ },
992
+ },
993
+ },
994
+ ],
995
+ },
996
+ ],
997
+ },
998
+ content: DEFAULT_CONTENT,
999
+ config: {},
1000
+ },
1001
+ ],
1002
+ };