@levo-so/blocks 0.1.0 → 0.1.2

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