@levo-so/blocks 0.1.52 → 0.1.58

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 (117) hide show
  1. package/package.json +4 -4
  2. package/src/blocks/about-us/about-us-1.schema.ts +14 -0
  3. package/src/blocks/about-us/about-us-1.tsx +4 -2
  4. package/src/blocks/about-us/about-us-2.schema.ts +48 -0
  5. package/src/blocks/about-us/about-us-2.tsx +6 -0
  6. package/src/blocks/blogs/blog-listing-1.schema.ts +10 -0
  7. package/src/blocks/blogs/blog-listing-2.schema.ts +42 -162
  8. package/src/blocks/blogs/blog-listing-2.tsx +7 -0
  9. package/src/blocks/blogs/blog-listing-3.schema.ts +9 -0
  10. package/src/blocks/blogs/blog-post-1.schema.ts +7 -1
  11. package/src/blocks/blogs/blog-post-1.tsx +1 -1
  12. package/src/blocks/blogs/blog-post-2.schema.ts +464 -28
  13. package/src/blocks/blogs/blog-post-2.tsx +6 -13
  14. package/src/blocks/blogs/blog-post-3.schema.ts +42 -0
  15. package/src/blocks/blogs/blog-post-3.tsx +4 -1
  16. package/src/blocks/calendar/calendar-1.schema.ts +537 -0
  17. package/src/blocks/calendar/calendar-1.tsx +145 -0
  18. package/src/blocks/cards/cards-10.schema.ts +52 -4
  19. package/src/blocks/cards/cards-10.tsx +13 -1
  20. package/src/blocks/cards/cards-14.schema.ts +532 -0
  21. package/src/blocks/cards/cards-14.tsx +54 -0
  22. package/src/blocks/cards/cards-15.schema.ts +277 -0
  23. package/src/blocks/cards/cards-15.tsx +40 -0
  24. package/src/blocks/cards/cards-6.schema.ts +46 -0
  25. package/src/blocks/cards/cards-6.tsx +27 -1
  26. package/src/blocks/cards/cards-7.tsx +2 -0
  27. package/src/blocks/carousel/carousel-2.schema.ts +1128 -0
  28. package/src/blocks/carousel/carousel-2.tsx +159 -0
  29. package/src/blocks/content/content-5.schema.ts +112 -6
  30. package/src/blocks/content/content-5.tsx +19 -3
  31. package/src/blocks/content/content-6.schema.ts +16 -3
  32. package/src/blocks/content/content-6.tsx +1 -0
  33. package/src/blocks/content/content-8.schema.ts +125 -0
  34. package/src/blocks/content/content-8.tsx +27 -0
  35. package/src/blocks/content/content-9.schema.ts +2729 -0
  36. package/src/blocks/content/content-9.tsx +91 -0
  37. package/src/blocks/cta/cta-2.schema.ts +46 -4
  38. package/src/blocks/cta/cta-2.tsx +9 -1
  39. package/src/blocks/embed/embed-1.schema.ts +100 -0
  40. package/src/blocks/event/ClientOnly.tsx +27 -0
  41. package/src/blocks/event/event-details.tsx +10 -3
  42. package/src/blocks/event/event-listing-3.tsx +9 -2
  43. package/src/blocks/event/event-listing-4.tsx +11 -2
  44. package/src/blocks/event/event-listing.tsx +11 -4
  45. package/src/blocks/faq/faq-1.schema.ts +58 -1
  46. package/src/blocks/faq/faq-1.tsx +18 -1
  47. package/src/blocks/faq/faq-2.tsx +2 -1
  48. package/src/blocks/faq/faq-3.schema.ts +6 -1
  49. package/src/blocks/faq/faq-3.tsx +1 -0
  50. package/src/blocks/features/features-1/features-1.schema.ts +2 -0
  51. package/src/blocks/features/features-1/variants/index.ts +2 -0
  52. package/src/blocks/features/features-1/variants/stylized-cards-v3.ts +451 -0
  53. package/src/blocks/features/features-4.schema.ts +358 -20
  54. package/src/blocks/features/features-4.tsx +3 -1
  55. package/src/blocks/features/features-6.tsx +2 -0
  56. package/src/blocks/filter-listing/filter-listing-1.schema.ts +614 -0
  57. package/src/blocks/filter-listing/filter-listing-1.tsx +128 -0
  58. package/src/blocks/footer/footer-6.schema.ts +2 -2
  59. package/src/blocks/hero/hero-11.schema.ts +849 -0
  60. package/src/blocks/hero/hero-11.tsx +59 -0
  61. package/src/blocks/hero/hero-12.schema.ts +712 -0
  62. package/src/blocks/hero/hero-12.tsx +76 -0
  63. package/src/blocks/hero/hero-13.schema.ts +238 -0
  64. package/src/blocks/hero/hero-13.tsx +31 -0
  65. package/src/blocks/hero/hero-4.tsx +2 -0
  66. package/src/blocks/hero/hero-5.tsx +2 -0
  67. package/src/blocks/hero/hero-7.tsx +2 -1
  68. package/src/blocks/hero/hero-8.tsx +2 -0
  69. package/src/blocks/hero/hero-9.schema.ts +5 -0
  70. package/src/blocks/hero/hero-9.tsx +2 -0
  71. package/src/blocks/index.ts +27 -0
  72. package/src/blocks/navbar/navbar-1.schema.ts +6 -6
  73. package/src/blocks/navbar/navbar-1.tsx +6 -7
  74. package/src/blocks/navbar/navbar-2.schema.ts +9 -9
  75. package/src/blocks/navbar/navbar-2.tsx +7 -8
  76. package/src/blocks/navbar/navbar-3.schema.ts +9 -9
  77. package/src/blocks/navbar/navbar-3.tsx +139 -114
  78. package/src/blocks/polling/polling-1.schema.ts +134 -0
  79. package/src/blocks/polling/polling-1.tsx +466 -0
  80. package/src/blocks/products/products-listing-2.schema.ts +596 -0
  81. package/src/blocks/products/products-listing-2.tsx +56 -0
  82. package/src/blocks/products/products-listing-3.schema.ts +818 -0
  83. package/src/blocks/products/products-listing-3.tsx +125 -0
  84. package/src/blocks/profile/profile-2.schema.ts +505 -0
  85. package/src/blocks/profile/profile-2.tsx +64 -0
  86. package/src/blocks/profile/profile-3.schema.ts +867 -0
  87. package/src/blocks/profile/profile-3.tsx +98 -0
  88. package/src/blocks/services/service-1.schema.ts +1743 -0
  89. package/src/blocks/services/service-1.tsx +139 -0
  90. package/src/blocks/services/service-2.schema.ts +433 -0
  91. package/src/blocks/services/service-2.tsx +98 -0
  92. package/src/blocks/services/service-3.schema.ts +631 -0
  93. package/src/blocks/services/service-3.tsx +135 -0
  94. package/src/blocks/tabs/tab-1.schema.ts +831 -0
  95. package/src/blocks/tabs/tab-1.tsx +126 -0
  96. package/src/blocks/tabs/tab-2.schema.ts +767 -0
  97. package/src/blocks/tabs/tab-2.tsx +60 -0
  98. package/src/blocks/team/team-3.schema.ts +5 -1
  99. package/src/blocks/team/team-3.tsx +7 -0
  100. package/src/blocks/team/team-4.schema.ts +17 -13
  101. package/src/blocks/team/team-4.tsx +4 -1
  102. package/src/blocks/team/team-5.schema.ts +369 -0
  103. package/src/blocks/team/team-5.tsx +38 -0
  104. package/src/blocks/testimonial/testimonial-1.tsx +0 -1
  105. package/src/blocks/testimonial/testimonial-2.tsx +2 -1
  106. package/src/blocks/testimonial/testimonial-3.tsx +2 -0
  107. package/src/blocks/testimonial/testimonial-4.tsx +2 -1
  108. package/src/blocks/testimonial/testimonial-5.tsx +2 -0
  109. package/src/blocks/testimonial/testimonial-6.tsx +2 -1
  110. package/src/blocks/testimonial/testimonial-7.schema.ts +438 -0
  111. package/src/blocks/testimonial/testimonial-7.tsx +125 -0
  112. package/src/blocks/timeline/timeline-1.schema.ts +741 -0
  113. package/src/blocks/timeline/timeline-1.tsx +52 -0
  114. package/src/blocks/users/edit-profile.schema.ts +294 -0
  115. package/src/blocks/users/edit-profile.tsx +184 -0
  116. package/src/schemas/blocks.ts +64 -12
  117. package/src/schemas/categories.ts +36 -0
@@ -0,0 +1,849 @@
1
+ import type { IBlock } from "@levo-so/studio";
2
+
3
+ const DEFAULT_CONTENT = {
4
+ layout: null,
5
+ container: null,
6
+ content_wrapper: null,
7
+ title: "World's First Fusion Reactor Powering Clean Energy Singularity",
8
+ description:
9
+ "<p>Over 25 years of ERP expertise, delivering 500+ successful implementations worldwide.</p>",
10
+ cta: [
11
+ {
12
+ button: "Get Started",
13
+ },
14
+ ],
15
+ features_levoGroup: null,
16
+ features: [
17
+ {
18
+ item_wrapper: null,
19
+ icon_content_wrapper: null,
20
+ icon: {
21
+ kind: "icon",
22
+ data: {
23
+ id: "activity",
24
+ label: "Activity",
25
+ tags: ["activity", "business", "custom", "directional"],
26
+ svgCode:
27
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M15 22.75H9C3.57 22.75 1.25 20.43 1.25 15V9C1.25 3.57 3.57 1.25 9 1.25H15C20.43 1.25 22.75 3.57 22.75 9V15C22.75 20.43 20.43 22.75 15 22.75ZM9 2.75C4.39 2.75 2.75 4.39 2.75 9V15C2.75 19.61 4.39 21.25 9 21.25H15C19.61 21.25 21.25 19.61 21.25 15V9C21.25 4.39 19.61 2.75 15 2.75H9Z" fill="var(--color-icon-primary)"/>\n<path d="M7.33011 15.24C7.17011 15.24 7.01011 15.19 6.87011 15.08C6.54011 14.83 6.48011 14.36 6.73011 14.03L9.11011 10.94C9.40011 10.57 9.81011 10.33 10.2801 10.27C10.7401 10.21 11.2101 10.34 11.5801 10.63L13.4101 12.07C13.4801 12.13 13.5501 12.13 13.6001 12.12C13.6401 12.12 13.7101 12.1 13.7701 12.02L16.0801 9.04001C16.3301 8.71001 16.8101 8.65001 17.1301 8.91001C17.4601 9.16001 17.5201 9.63001 17.2601 9.96001L14.9501 12.94C14.6601 13.31 14.2501 13.55 13.7801 13.6C13.3101 13.66 12.8501 13.53 12.4801 13.24L10.6501 11.8C10.5801 11.74 10.5001 11.74 10.4601 11.75C10.4201 11.75 10.3501 11.77 10.2901 11.85L7.91011 14.94C7.78011 15.14 7.56011 15.24 7.33011 15.24Z" fill="var(--color-icon-primary)"/>\n</svg>',
28
+ },
29
+ },
30
+ content_wrapper: null,
31
+ title: "1.8",
32
+ description: "<p>CoP</p>",
33
+ cta: "Register",
34
+ separator: null,
35
+ },
36
+ {
37
+ item_wrapper: null,
38
+ icon_content_wrapper: null,
39
+ icon: {
40
+ kind: "icon",
41
+ data: {
42
+ id: "chart-21",
43
+ label: "Chart 21",
44
+ tags: ["21", "business", "chart", "custom"],
45
+ svgCode:
46
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M21 22.75H3C2.59 22.75 2.25 22.41 2.25 22C2.25 21.59 2.59 21.25 3 21.25H21C21.41 21.25 21.75 21.59 21.75 22C21.75 22.41 21.41 22.75 21 22.75Z" fill="var(--color-icon-primary)"/>\n<path d="M5.59998 19.75H4C3.04 19.75 2.25 18.96 2.25 18V9.38C2.25 8.42 3.04 7.63 4 7.63H5.59998C6.55998 7.63 7.34998 8.42 7.34998 9.38V18C7.34998 18.96 6.55998 19.75 5.59998 19.75ZM4 9.12C3.86 9.12 3.75 9.23 3.75 9.37V18C3.75 18.14 3.86 18.25 4 18.25H5.59998C5.73998 18.25 5.84998 18.14 5.84998 18V9.38C5.84998 9.24 5.73998 9.13 5.59998 9.13H4V9.12Z" fill="var(--color-icon-primary)"/>\n<path d="M12.8002 19.75H11.2002C10.2402 19.75 9.4502 18.96 9.4502 18V6.19C9.4502 5.23 10.2402 4.44 11.2002 4.44H12.8002C13.7602 4.44 14.5502 5.23 14.5502 6.19V18C14.5502 18.96 13.7602 19.75 12.8002 19.75ZM11.2002 5.94C11.0602 5.94 10.9502 6.05 10.9502 6.19V18C10.9502 18.14 11.0602 18.25 11.2002 18.25H12.8002C12.9402 18.25 13.0502 18.14 13.0502 18V6.19C13.0502 6.05 12.9402 5.94 12.8002 5.94H11.2002Z" fill="var(--color-icon-primary)"/>\n<path d="M20.0004 19.75H18.4004C17.4404 19.75 16.6504 18.96 16.6504 18V3C16.6504 2.04 17.4404 1.25 18.4004 1.25H20.0004C20.9604 1.25 21.7504 2.04 21.7504 3V18C21.7504 18.96 20.9604 19.75 20.0004 19.75ZM18.4004 2.75C18.2604 2.75 18.1504 2.86 18.1504 3V18C18.1504 18.14 18.2604 18.25 18.4004 18.25H20.0004C20.1404 18.25 20.2504 18.14 20.2504 18V3C20.2504 2.86 20.1404 2.75 20.0004 2.75H18.4004Z" fill="var(--color-icon-primary)"/>\n</svg>',
47
+ },
48
+ },
49
+ content_wrapper: null,
50
+ title: "$3.5M",
51
+ description: "<p>Pre-Series A</p>",
52
+ cta: "Get Started",
53
+ separator: null,
54
+ },
55
+ {
56
+ item_wrapper: null,
57
+ icon_content_wrapper: null,
58
+ icon: {
59
+ kind: "icon",
60
+ data: {
61
+ id: "personalcard",
62
+ label: "Personalcard",
63
+ tags: ["business", "custom", "personalcard"],
64
+ svgCode:
65
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M17 21.75H7C2.59 21.75 1.25 20.41 1.25 16V8C1.25 3.59 2.59 2.25 7 2.25H17C21.41 2.25 22.75 3.59 22.75 8V16C22.75 20.41 21.41 21.75 17 21.75ZM7 3.75C3.42 3.75 2.75 4.43 2.75 8V16C2.75 19.57 3.42 20.25 7 20.25H17C20.58 20.25 21.25 19.57 21.25 16V8C21.25 4.43 20.58 3.75 17 3.75H7Z" fill="var(--color-icon-primary)"/>\n<path d="M19 8.75H14C13.59 8.75 13.25 8.41 13.25 8C13.25 7.59 13.59 7.25 14 7.25H19C19.41 7.25 19.75 7.59 19.75 8C19.75 8.41 19.41 8.75 19 8.75Z" fill="var(--color-icon-primary)"/>\n<path d="M19 12.75H15C14.59 12.75 14.25 12.41 14.25 12C14.25 11.59 14.59 11.25 15 11.25H19C19.41 11.25 19.75 11.59 19.75 12C19.75 12.41 19.41 12.75 19 12.75Z" fill="var(--color-icon-primary)"/>\n<path d="M19 16.75H17C16.59 16.75 16.25 16.41 16.25 16C16.25 15.59 16.59 15.25 17 15.25H19C19.41 15.25 19.75 15.59 19.75 16C19.75 16.41 19.41 16.75 19 16.75Z" fill="var(--color-icon-primary)"/>\n<path d="M8.50043 12.04C7.09043 12.04 5.94043 10.89 5.94043 9.48001C5.94043 8.07001 7.09043 6.92001 8.50043 6.92001C9.91043 6.92001 11.0604 8.07001 11.0604 9.48001C11.0604 10.89 9.91043 12.04 8.50043 12.04ZM8.50043 8.42001C7.92043 8.42001 7.44043 8.90001 7.44043 9.48001C7.44043 10.06 7.92043 10.54 8.50043 10.54C9.08043 10.54 9.56043 10.06 9.56043 9.48001C9.56043 8.90001 9.08043 8.42001 8.50043 8.42001Z" fill="var(--color-icon-primary)"/>\n<path d="M11.9999 17.08C11.6199 17.08 11.2899 16.79 11.2499 16.4C11.1399 15.32 10.2699 14.45 9.17991 14.35C8.71991 14.31 8.25991 14.31 7.79991 14.35C6.70991 14.45 5.83991 15.31 5.72991 16.4C5.68991 16.81 5.31991 17.12 4.90991 17.07C4.49991 17.03 4.19991 16.66 4.23991 16.25C4.41991 14.45 5.84991 13.02 7.65991 12.86C8.20991 12.81 8.76991 12.81 9.31991 12.86C11.1199 13.03 12.5599 14.46 12.7399 16.25C12.7799 16.66 12.4799 17.03 12.0699 17.07C12.0499 17.08 12.0199 17.08 11.9999 17.08Z" fill="var(--color-icon-primary)"/>\n</svg>',
66
+ },
67
+ },
68
+ content_wrapper: null,
69
+ title: "9",
70
+ description: "<p>Scientists</p>",
71
+ cta: "Join Today",
72
+ separator: null,
73
+ },
74
+ {
75
+ item_wrapper: null,
76
+ icon_content_wrapper: null,
77
+ icon: {
78
+ kind: "icon",
79
+ data: {
80
+ id: "archive-book",
81
+ label: "Archive Book",
82
+ tags: ["archive", "book", "content-edit", "custom", "directional"],
83
+ svgCode:
84
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M16 22.75H8C4.35 22.75 2.25 20.65 2.25 17V7C2.25 3.35 4.35 1.25 8 1.25H16C19.65 1.25 21.75 3.35 21.75 7V17C21.75 20.65 19.65 22.75 16 22.75ZM8 2.75C5.14 2.75 3.75 4.14 3.75 7V17C3.75 19.86 5.14 21.25 8 21.25H16C18.86 21.25 20.25 19.86 20.25 17V7C20.25 4.14 18.86 2.75 16 2.75H8Z" fill="var(--color-icon-primary)"/>\n<path d="M9 11.11C8.83 11.11 8.66 11.08 8.5 11.01C8.04 10.81 7.75 10.36 7.75 9.87V2C7.75 1.59 8.09 1.25 8.5 1.25H15.5C15.91 1.25 16.25 1.59 16.25 2V9.85999C16.25 10.36 15.96 10.81 15.5 11C15.05 11.2 14.52 11.11 14.15 10.77L12 8.79999L9.84998 10.78C9.60998 11 9.31 11.11 9 11.11ZM12 7.21002C12.3 7.21002 12.61 7.31998 12.85 7.53998L14.75 9.28998V2.75H9.25V9.28998L11.15 7.53998C11.39 7.31998 11.7 7.21002 12 7.21002Z" fill="var(--color-icon-primary)"/>\n<path d="M17.5 14.75H13.25C12.84 14.75 12.5 14.41 12.5 14C12.5 13.59 12.84 13.25 13.25 13.25H17.5C17.91 13.25 18.25 13.59 18.25 14C18.25 14.41 17.91 14.75 17.5 14.75Z" fill="var(--color-icon-primary)"/>\n<path d="M17.5 18.75H9C8.59 18.75 8.25 18.41 8.25 18C8.25 17.59 8.59 17.25 9 17.25H17.5C17.91 17.25 18.25 17.59 18.25 18C18.25 18.41 17.91 18.75 17.5 18.75Z" fill="var(--color-icon-primary)"/>\n</svg>',
85
+ },
86
+ },
87
+ content_wrapper: null,
88
+ title: "3",
89
+ description: "<p>Ongoing MoUs</p>",
90
+ cta: "Donate Now",
91
+ separator: null,
92
+ },
93
+ ],
94
+ };
95
+
96
+ export type IHero11Content = typeof DEFAULT_CONTENT;
97
+
98
+ export const Hero11: IBlock = {
99
+ category_id: "hero",
100
+ title: "Hero 11",
101
+ key: "hero-11",
102
+ version: "v1",
103
+ prompt_description:
104
+ "Hero section with title, description, CTA, and horizontal features layout with icons, titles, descriptions, and CTAs.",
105
+ content_schema: [
106
+ {
107
+ key: "layout",
108
+ label: "Layout",
109
+ field_interface: "LayoutWidget",
110
+ hint: {
111
+ prompt_description:
112
+ "Main layout container for the hero section with proper spacing and background.",
113
+ },
114
+ },
115
+ {
116
+ key: "container",
117
+ label: "Container",
118
+ field_interface: "ContainerWidget",
119
+ hint: {
120
+ prompt_description:
121
+ "Container providing structural alignment and padding for the hero section.",
122
+ },
123
+ },
124
+ {
125
+ key: "content_wrapper",
126
+ label: "Content Wrapper",
127
+ field_interface: "BoxWidget",
128
+ hint: {
129
+ prompt_description:
130
+ "Wrapper that contains all hero content with proper spacing and alignment.",
131
+ },
132
+ },
133
+ {
134
+ key: "title",
135
+ label: "Title",
136
+ field_interface: "HeadingWidget",
137
+ hint: {
138
+ prompt_description: "Main heading for the hero section",
139
+ min_characters: 24,
140
+ max_characters: 48,
141
+ },
142
+ },
143
+ {
144
+ key: "description",
145
+ label: "Description",
146
+ field_interface: "TypographyWidget",
147
+ hint: {
148
+ prompt_description: "Supporting description text",
149
+ min_characters: 80,
150
+ max_characters: 180,
151
+ },
152
+ },
153
+ {
154
+ key: "cta",
155
+ label: "Call to Action",
156
+ kind: "group",
157
+ field_interface: "BoxWidget",
158
+ fields: [
159
+ {
160
+ key: "button",
161
+ label: "Button",
162
+ field_interface: "ButtonWidget",
163
+ hint: {
164
+ prompt_description: "Primary call-to-action button",
165
+ min_characters: 8,
166
+ max_characters: 18,
167
+ },
168
+ },
169
+ ],
170
+ },
171
+ {
172
+ key: "features",
173
+ label: "Features",
174
+ field_interface: "BoxWidget",
175
+ kind: "group",
176
+ fields: [
177
+ {
178
+ key: "item_wrapper",
179
+ label: "Item Wrapper",
180
+ field_interface: "BoxWidget",
181
+ hint: {
182
+ prompt_description:
183
+ "Container for each individual feature item with appropriate spacing and alignment.",
184
+ },
185
+ },
186
+ {
187
+ key: "icon_content_wrapper",
188
+ label: "Icon Content Wrapper",
189
+ field_interface: "BoxWidget",
190
+ hint: {
191
+ prompt_description:
192
+ "Wrapper that holds the icon and content in a flex layout for proper alignment.",
193
+ },
194
+ },
195
+ {
196
+ key: "icon",
197
+ label: "Icon",
198
+ field_interface: "IconWidget",
199
+ hint: {
200
+ prompt_description:
201
+ "Icon representing the feature, displayed alongside the content in a flex layout.",
202
+ orientation: "landscape",
203
+ size: "small",
204
+ usecase: "icon",
205
+ },
206
+ },
207
+ {
208
+ key: "content_wrapper",
209
+ label: "Content Wrapper",
210
+ field_interface: "BoxWidget",
211
+ hint: {
212
+ prompt_description:
213
+ "Container for the text content (title, description, CTA) with proper spacing.",
214
+ },
215
+ },
216
+ {
217
+ key: "title",
218
+ label: "Title",
219
+ field_interface: "TypographyWidget",
220
+ hint: {
221
+ prompt_description:
222
+ "Feature title displayed prominently. Use clear, action-oriented language (2-4 words).",
223
+ min_characters: 8,
224
+ max_characters: 24,
225
+ },
226
+ },
227
+ {
228
+ key: "description",
229
+ label: "Description",
230
+ field_interface: "TypographyWidget",
231
+ hint: {
232
+ prompt_description:
233
+ "Brief description explaining the feature benefit. Keep it concise and engaging (1-2 sentences).",
234
+ min_characters: 20,
235
+ max_characters: 80,
236
+ },
237
+ },
238
+
239
+ {
240
+ key: "separator",
241
+ label: "Separator",
242
+ field_interface: "BoxWidget",
243
+ hint: {
244
+ prompt_description:
245
+ "Visual separator between feature items for better visual distinction.",
246
+ },
247
+ },
248
+ ],
249
+ hint: {
250
+ prompt_description:
251
+ "Collection of 4 features displayed horizontally in a row with icons, titles, descriptions, and CTAs. Include separators between items for visual clarity.",
252
+ min_items: 4,
253
+ max_items: 4,
254
+ },
255
+ },
256
+ ],
257
+
258
+ layouts: [
259
+ {
260
+ key: "default",
261
+ title: "Default",
262
+ styles: {
263
+ layout: {
264
+ "padding-top": "10xl",
265
+ "padding-bottom": "10xl",
266
+ },
267
+ container: {},
268
+ content_wrapper: {
269
+ display: "flex",
270
+ "flex-direction": "column",
271
+ "align-items": "center",
272
+ "row-gap": "3xl",
273
+ "text-align": "center",
274
+ width: "100%",
275
+ mobile: {
276
+ "row-gap": "2xl",
277
+ filter: "none",
278
+ },
279
+ filter: "none",
280
+ },
281
+ title: {
282
+ color: "text-1",
283
+ "font-size": "5xl",
284
+ "font-weight": "700",
285
+ mobile: {
286
+ "font-size": "3xl",
287
+ },
288
+ "max-width": "700px",
289
+ },
290
+ description: {
291
+ color: "text-2",
292
+ "font-size": "lg",
293
+ "max-width": "600px",
294
+ mobile: {
295
+ "font-size": "base",
296
+ },
297
+ },
298
+ cta_levoGroup: {
299
+ display: "flex",
300
+ "column-gap": "base",
301
+ "row-gap": "base",
302
+ mobile: {
303
+ "flex-direction": "column",
304
+ filter: "none",
305
+ },
306
+ filter: "none",
307
+ },
308
+ cta: [
309
+ {
310
+ button: {},
311
+ },
312
+ ],
313
+ features_levoGroup: {
314
+ display: "flex",
315
+ width: "100%",
316
+ "align-items": "center",
317
+ "justify-content": "space-between",
318
+ filter: "none",
319
+ tablet: {
320
+ filter: "none",
321
+ display: "grid",
322
+ "column-gap": "none",
323
+ "flex-direction": "row",
324
+ "row-gap": "3xl",
325
+ },
326
+ "grid-template-columns": "repeat(2, minmax(0, 1fr))",
327
+ "grid-template-rows": "repeat(1, minmax(0, 1fr))",
328
+ mobile: {
329
+ display: "grid",
330
+ "column-gap": "xs",
331
+ },
332
+ },
333
+ features: [
334
+ {
335
+ item_wrapper: {
336
+ display: "flex",
337
+ "align-items": "end",
338
+ "flex-grow": "1",
339
+ mobile: {
340
+ "flex-direction": "column",
341
+ width: "100%",
342
+ filter: "none",
343
+ "border-bottom": "1px s",
344
+ "justify-content": "start",
345
+ "align-items": "start",
346
+ },
347
+ tablet: {
348
+ filter: "none",
349
+ "justify-content": "center",
350
+ "align-items": "center",
351
+ "margin-right": "3xl",
352
+ },
353
+ "justify-content": "end",
354
+ },
355
+ icon_content_wrapper: {
356
+ display: "flex",
357
+ "align-items": "start",
358
+ "column-gap": "base",
359
+ "text-align": "left",
360
+ mobile: {
361
+ "flex-direction": "row",
362
+ "row-gap": "sm",
363
+ "text-align": "center",
364
+ filter: "none",
365
+ "column-gap": "base",
366
+ "justify-content": "center",
367
+ "align-items": "center",
368
+ },
369
+ filter: "none",
370
+ "justify-content": "start",
371
+ tablet: {
372
+ "justify-content": "start",
373
+ "align-items": "start",
374
+ },
375
+ },
376
+ icon: {
377
+ width: "48px",
378
+ height: "48px",
379
+ "flex-shrink": "0",
380
+ mobile: {
381
+ width: "40px",
382
+ height: "40px",
383
+ },
384
+ filter: "none",
385
+ },
386
+ content_wrapper: {
387
+ display: "flex",
388
+ "flex-direction": "column",
389
+ "row-gap": "xs",
390
+ filter: "none",
391
+ "justify-content": "start",
392
+ "align-items": "start",
393
+ mobile: {
394
+ filter: "none",
395
+ "justify-content": "start",
396
+ "align-items": "start",
397
+ },
398
+ },
399
+ title: {
400
+ color: "text-1",
401
+ "font-size": "lg",
402
+ "font-weight": "600",
403
+ mobile: {
404
+ "text-align": "center",
405
+ "font-size": "base",
406
+ },
407
+ },
408
+ description: {
409
+ "font-family": "var(--font-body)",
410
+ color: "text-2",
411
+ "line-height": "normal",
412
+ "max-width": "200px",
413
+ mobile: {
414
+ "max-width": "180px",
415
+ "text-align": "left",
416
+ filter: "none",
417
+ },
418
+ },
419
+ cta: {
420
+ "background-color": "white",
421
+ color: "text-1",
422
+ "padding-top": "xs",
423
+ "padding-bottom": "xs",
424
+ "padding-left": "none",
425
+ "padding-right": "sm",
426
+ "border-radius": "base",
427
+ "border-width": "1px",
428
+ "border-color": "border",
429
+ "text-decoration": "none",
430
+ "margin-top": "xs",
431
+ mobile: {
432
+ "padding-top": "xs",
433
+ "padding-bottom": "xs",
434
+ "padding-left": "base",
435
+ "padding-right": "base",
436
+ },
437
+ filter: "none",
438
+ tablet: {
439
+ filter: "none",
440
+ "margin-top": "none",
441
+ "padding-top": "none",
442
+ "padding-bottom": "none",
443
+ },
444
+ },
445
+ separator: {
446
+ width: "1px",
447
+ height: "100px",
448
+ "background-color": "var(--color-border)",
449
+ "margin-left": "xl",
450
+ "margin-right": "xl",
451
+ mobile: {
452
+ display: "none",
453
+ filter: "none",
454
+ },
455
+ filter: "none",
456
+ tablet: {
457
+ filter: "none",
458
+ display: "none",
459
+ height: "80px",
460
+ "margin-left": "none",
461
+ "margin-right": "none",
462
+ },
463
+ },
464
+ },
465
+ {
466
+ item_wrapper: {
467
+ display: "flex",
468
+ "align-items": "center",
469
+ "flex-grow": "1",
470
+ mobile: {
471
+ "flex-direction": "column",
472
+ width: "100%",
473
+ "justify-content": "center",
474
+ "align-items": "end",
475
+ },
476
+ tablet: {
477
+ filter: "none",
478
+ },
479
+ "justify-content": "center",
480
+ },
481
+ icon_content_wrapper: {
482
+ display: "flex",
483
+ "align-items": "start",
484
+ "column-gap": "base",
485
+ "text-align": "left",
486
+ mobile: {
487
+ "flex-direction": "row",
488
+ "row-gap": "sm",
489
+ "text-align": "center",
490
+ filter: "none",
491
+ "column-gap": "base",
492
+ "justify-content": "center",
493
+ "align-items": "center",
494
+ },
495
+ filter: "none",
496
+ "justify-content": "start",
497
+ },
498
+ icon: {
499
+ width: "48px",
500
+ height: "48px",
501
+ "flex-shrink": "0",
502
+ mobile: {
503
+ width: "40px",
504
+ height: "40px",
505
+ },
506
+ filter: "none",
507
+ },
508
+ content_wrapper: {
509
+ display: "flex",
510
+ "flex-direction": "column",
511
+ "row-gap": "xs",
512
+ filter: "none",
513
+ "justify-content": "start",
514
+ "align-items": "start",
515
+ mobile: {
516
+ filter: "none",
517
+ "justify-content": "start",
518
+ "align-items": "start",
519
+ },
520
+ },
521
+ title: {
522
+ color: "text-1",
523
+ "font-size": "lg",
524
+ "font-weight": "600",
525
+ mobile: {
526
+ "text-align": "center",
527
+ "font-size": "base",
528
+ },
529
+ },
530
+ description: {
531
+ color: "text-2",
532
+ "max-width": "200px",
533
+ mobile: {
534
+ "max-width": "180px",
535
+ "text-align": "left",
536
+ filter: "none",
537
+ },
538
+ },
539
+ cta: {
540
+ display: "flex",
541
+ "align-items": "center",
542
+ "justify-content": "center",
543
+ "border-radius": "base",
544
+ "background-color": "white",
545
+ color: "text-1",
546
+ cursor: "pointer",
547
+ "padding-top": "xs",
548
+ "padding-bottom": "xs",
549
+ "padding-left": "none",
550
+ "padding-right": "sm",
551
+ "border-color": "border",
552
+ "border-width": "1px",
553
+ "border-style": "solid",
554
+ "text-decoration": "none",
555
+ "margin-top": "xs",
556
+ mobile: {
557
+ "padding-top": "xs",
558
+ "padding-bottom": "xs",
559
+ "padding-left": "base",
560
+ "padding-right": "base",
561
+ },
562
+ filter: "none",
563
+ tablet: {
564
+ filter: "none",
565
+ "margin-top": "none",
566
+ "padding-top": "none",
567
+ "padding-bottom": "none",
568
+ },
569
+ },
570
+ separator: {
571
+ width: "1px",
572
+ height: "100px",
573
+ "background-color": "var(--color-border)",
574
+ "margin-left": "xl",
575
+ "margin-right": "xl",
576
+ mobile: {
577
+ display: "none",
578
+ },
579
+ filter: "none",
580
+ tablet: {
581
+ filter: "none",
582
+ display: "none",
583
+ },
584
+ },
585
+ },
586
+ {
587
+ item_wrapper: {
588
+ display: "flex",
589
+ "align-items": "center",
590
+ "flex-grow": "1",
591
+ mobile: {
592
+ "flex-direction": "column",
593
+ width: "100%",
594
+ "justify-content": "start",
595
+ "align-items": "start",
596
+ },
597
+ "justify-content": "center",
598
+ tablet: {
599
+ "justify-content": "center",
600
+ "align-items": "center",
601
+ },
602
+ },
603
+ icon_content_wrapper: {
604
+ display: "flex",
605
+ "align-items": "start",
606
+ "column-gap": "base",
607
+ "text-align": "left",
608
+ mobile: {
609
+ "flex-direction": "row",
610
+ "row-gap": "sm",
611
+ "text-align": "center",
612
+ filter: "none",
613
+ "column-gap": "base",
614
+ "justify-content": "center",
615
+ "align-items": "center",
616
+ },
617
+ filter: "none",
618
+ "justify-content": "start",
619
+ },
620
+ icon: {
621
+ width: "48px",
622
+ height: "48px",
623
+ "flex-shrink": "0",
624
+ mobile: {
625
+ width: "40px",
626
+ height: "40px",
627
+ },
628
+ filter: "none",
629
+ },
630
+ content_wrapper: {
631
+ display: "flex",
632
+ "flex-direction": "column",
633
+ "row-gap": "xs",
634
+ filter: "none",
635
+ "justify-content": "start",
636
+ "align-items": "start",
637
+ mobile: {
638
+ filter: "none",
639
+ "justify-content": "start",
640
+ "align-items": "start",
641
+ },
642
+ },
643
+ title: {
644
+ color: "text-1",
645
+ "font-size": "lg",
646
+ "font-weight": "600",
647
+ mobile: {
648
+ "text-align": "center",
649
+ "font-size": "base",
650
+ },
651
+ },
652
+ description: {
653
+ "font-family": "var(--font-body)",
654
+ color: "text-2",
655
+ "line-height": "normal",
656
+ "max-width": "200px",
657
+ mobile: {
658
+ "max-width": "180px",
659
+ "text-align": "left",
660
+ filter: "none",
661
+ },
662
+ },
663
+ cta: {
664
+ display: "flex",
665
+ "align-items": "center",
666
+ "justify-content": "center",
667
+ "border-radius": "base",
668
+ "background-color": "white",
669
+ color: "text-1",
670
+ cursor: "pointer",
671
+ "padding-top": "xs",
672
+ "padding-bottom": "xs",
673
+ "padding-left": "none",
674
+ "padding-right": "sm",
675
+ "border-color": "border",
676
+ "border-width": "1px",
677
+ "border-style": "solid",
678
+ "text-decoration": "none",
679
+ "margin-top": "xs",
680
+ mobile: {
681
+ "padding-top": "xs",
682
+ "padding-bottom": "xs",
683
+ "padding-left": "base",
684
+ "padding-right": "base",
685
+ },
686
+ filter: "none",
687
+ tablet: {
688
+ filter: "none",
689
+ "margin-top": "none",
690
+ "padding-top": "none",
691
+ "padding-bottom": "none",
692
+ },
693
+ },
694
+ separator: {
695
+ width: "1px",
696
+ height: "100px",
697
+ "background-color": "var(--color-border)",
698
+ "margin-left": "xl",
699
+ "margin-right": "xl",
700
+ mobile: {
701
+ display: "none",
702
+ },
703
+ filter: "none",
704
+ tablet: {
705
+ filter: "none",
706
+ display: "none",
707
+ },
708
+ },
709
+ },
710
+ {
711
+ item_wrapper: {
712
+ display: "flex",
713
+ "align-items": "start",
714
+ "flex-grow": "1",
715
+ mobile: {
716
+ "flex-direction": "column",
717
+ width: "100%",
718
+ "justify-content": "end",
719
+ "align-items": "end",
720
+ },
721
+ "justify-content": "start",
722
+ tablet: {
723
+ "justify-content": "center",
724
+ "align-items": "center",
725
+ },
726
+ },
727
+ icon_content_wrapper: {
728
+ display: "flex",
729
+ "align-items": "start",
730
+ "column-gap": "base",
731
+ "text-align": "left",
732
+ mobile: {
733
+ "flex-direction": "row",
734
+ "row-gap": "sm",
735
+ "text-align": "center",
736
+ filter: "none",
737
+ "column-gap": "base",
738
+ "justify-content": "center",
739
+ "align-items": "center",
740
+ },
741
+ filter: "none",
742
+ "justify-content": "start",
743
+ },
744
+ icon: {
745
+ width: "48px",
746
+ height: "48px",
747
+ "flex-shrink": "0",
748
+ mobile: {
749
+ width: "40px",
750
+ height: "40px",
751
+ filter: "none",
752
+ },
753
+ filter: "none",
754
+ },
755
+ content_wrapper: {
756
+ display: "flex",
757
+ "flex-direction": "column",
758
+ "row-gap": "xs",
759
+ filter: "none",
760
+ "justify-content": "start",
761
+ "align-items": "start",
762
+ mobile: {
763
+ filter: "none",
764
+ "justify-content": "start",
765
+ "align-items": "start",
766
+ },
767
+ },
768
+ title: {
769
+ color: "text-1",
770
+ "font-size": "lg",
771
+ "font-weight": "600",
772
+ mobile: {
773
+ "text-align": "center",
774
+ "font-size": "base",
775
+ },
776
+ },
777
+ description: {
778
+ "font-family": "var(--font-body)",
779
+ color: "text-2",
780
+ "line-height": "normal",
781
+ "max-width": "200px",
782
+ mobile: {
783
+ "max-width": "180px",
784
+ "text-align": "left",
785
+ filter: "none",
786
+ },
787
+ },
788
+ cta: {
789
+ display: "flex",
790
+ "align-items": "center",
791
+ "justify-content": "center",
792
+ "border-radius": "base",
793
+ "background-color": "white",
794
+ color: "text-1",
795
+ cursor: "pointer",
796
+ "padding-top": "xs",
797
+ "padding-bottom": "xs",
798
+ "padding-left": "none",
799
+ "padding-right": "sm",
800
+ "border-color": "border",
801
+ "border-width": "1px",
802
+ "border-style": "solid",
803
+ "text-decoration": "none",
804
+ "margin-top": "xs",
805
+ mobile: {
806
+ "padding-top": "xs",
807
+ "padding-bottom": "xs",
808
+ "padding-left": "base",
809
+ "padding-right": "base",
810
+ },
811
+ filter: "none",
812
+ tablet: {
813
+ filter: "none",
814
+ "margin-top": "none",
815
+ "padding-top": "none",
816
+ "padding-bottom": "none",
817
+ },
818
+ },
819
+ separator: {
820
+ width: "1px",
821
+ height: "80px",
822
+ "background-color": "var(--color-border)",
823
+ "margin-left": "xl",
824
+ "margin-right": "xl",
825
+ mobile: {
826
+ display: "none",
827
+ },
828
+ },
829
+ },
830
+ ],
831
+ },
832
+ content: DEFAULT_CONTENT,
833
+ config: {
834
+ title: {
835
+ heading: {
836
+ level: 1,
837
+ },
838
+ },
839
+ features: {
840
+ title: {
841
+ heading: {
842
+ level: 4,
843
+ },
844
+ },
845
+ },
846
+ },
847
+ },
848
+ ],
849
+ };