@levo-so/blocks 0.1.54 → 0.1.59

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 +2 -2
  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,1128 @@
1
+ import type { IBlock } from "@levo-so/studio";
2
+
3
+ const DEFAULT_IMAGE = {
4
+ id: "7141014160938075687",
5
+ location: "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH.png",
6
+ kind: "image",
7
+ mimetype: "image/png",
8
+ srcset: {
9
+ "1080w":
10
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1080w.webp",
11
+ "1200w":
12
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1200w.webp",
13
+ "1920w":
14
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1920w.webp",
15
+ "320w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-320w.webp",
16
+ "640w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-640w.webp",
17
+ "750w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-750w.webp",
18
+ "828w": "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-828w.webp",
19
+ path: "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-640w.webp 640w, https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1080w.webp 1080w, https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1200w.webp 1200w, https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1920w.webp 1920w, https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-320w.webp 320w, https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-750w.webp 750w, https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-828w.webp 828w",
20
+ },
21
+ };
22
+
23
+ const DEFAULT_CONTENT = {
24
+ layout: null,
25
+ container: null,
26
+ header: null,
27
+ "header-content": null,
28
+ title: "Our Trainers",
29
+ description:
30
+ "More Than Instructors — They're Mentors Who Push, Inspire, and Guide You Toward Your Strongest Self, One Session at a Time.",
31
+ team: [
32
+ {
33
+ card: null,
34
+ info: null,
35
+ "name-position-wrapper": null,
36
+ name: "Lisa Kudro",
37
+ description: "Senior Fitness Trainer",
38
+ social: [
39
+ {
40
+ icon: {
41
+ kind: "icon",
42
+ data: {
43
+ id: "arrow-right-1",
44
+ label: "Arrow Right 1",
45
+ tags: ["arrow", "custom", "directional", "right"],
46
+ svgCode:
47
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M14.4301 18.82C14.2401 18.82 14.0501 18.75 13.9001 18.6C13.6101 18.31 13.6101 17.83 13.9001 17.54L19.4401 12L13.9001 6.46C13.6101 6.17 13.6101 5.69 13.9001 5.4C14.1901 5.11 14.6701 5.11 14.9601 5.4L21.0301 11.47C21.3201 11.76 21.3201 12.24 21.0301 12.53L14.9601 18.6C14.8101 18.75 14.6201 18.82 14.4301 18.82Z" fill="var(--color-icon-primary)"/>\n<path d="M20.33 12.75H3.5C3.09 12.75 2.75 12.41 2.75 12C2.75 11.59 3.09 11.25 3.5 11.25H20.33C20.74 11.25 21.08 11.59 21.08 12C21.08 12.41 20.74 12.75 20.33 12.75Z" fill="var(--color-icon-primary)"/>\n</svg>',
48
+ },
49
+ },
50
+ },
51
+ ],
52
+ img: DEFAULT_IMAGE,
53
+ },
54
+ {
55
+ card: null,
56
+ info: null,
57
+ "name-position-wrapper": null,
58
+ name: "Lisa Kudro",
59
+ description: "Senior Fitness Trainer",
60
+ social: [
61
+ {
62
+ icon: {
63
+ kind: "icon",
64
+ data: {
65
+ id: "arrow-right-1",
66
+ label: "Arrow Right 1",
67
+ tags: ["arrow", "custom", "directional", "right"],
68
+ svgCode:
69
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M14.4301 18.82C14.2401 18.82 14.0501 18.75 13.9001 18.6C13.6101 18.31 13.6101 17.83 13.9001 17.54L19.4401 12L13.9001 6.46C13.6101 6.17 13.6101 5.69 13.9001 5.4C14.1901 5.11 14.6701 5.11 14.9601 5.4L21.0301 11.47C21.3201 11.76 21.3201 12.24 21.0301 12.53L14.9601 18.6C14.8101 18.75 14.6201 18.82 14.4301 18.82Z" fill="var(--color-icon-primary)"/>\n<path d="M20.33 12.75H3.5C3.09 12.75 2.75 12.41 2.75 12C2.75 11.59 3.09 11.25 3.5 11.25H20.33C20.74 11.25 21.08 11.59 21.08 12C21.08 12.41 20.74 12.75 20.33 12.75Z" fill="var(--color-icon-primary)"/>\n</svg>',
70
+ },
71
+ },
72
+ },
73
+ ],
74
+ img: DEFAULT_IMAGE,
75
+ },
76
+ {
77
+ card: null,
78
+ info: null,
79
+ "name-position-wrapper": null,
80
+ name: "Lisa Kudro",
81
+ description: "Senior Fitness Trainer",
82
+ social: [
83
+ {
84
+ icon: {
85
+ kind: "icon",
86
+ data: {
87
+ id: "arrow-right-1",
88
+ label: "Arrow Right 1",
89
+ tags: ["arrow", "custom", "directional", "right"],
90
+ svgCode:
91
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M14.4301 18.82C14.2401 18.82 14.0501 18.75 13.9001 18.6C13.6101 18.31 13.6101 17.83 13.9001 17.54L19.4401 12L13.9001 6.46C13.6101 6.17 13.6101 5.69 13.9001 5.4C14.1901 5.11 14.6701 5.11 14.9601 5.4L21.0301 11.47C21.3201 11.76 21.3201 12.24 21.0301 12.53L14.9601 18.6C14.8101 18.75 14.6201 18.82 14.4301 18.82Z" fill="var(--color-icon-primary)"/>\n<path d="M20.33 12.75H3.5C3.09 12.75 2.75 12.41 2.75 12C2.75 11.59 3.09 11.25 3.5 11.25H20.33C20.74 11.25 21.08 11.59 21.08 12C21.08 12.41 20.74 12.75 20.33 12.75Z" fill="var(--color-icon-primary)"/>\n</svg>',
92
+ },
93
+ },
94
+ },
95
+ ],
96
+ img: DEFAULT_IMAGE,
97
+ },
98
+ ],
99
+ "carousel-navigation-container": null,
100
+ "carousel-navigation": null,
101
+ "carousel-navigation-pill": null,
102
+ "carousel-navigation-arrow-left": " ",
103
+ "carousel-navigation-arrow-right": " ",
104
+ "carousel-navigation-arrow-left_leftIcon": {
105
+ kind: "icon",
106
+ data: {
107
+ id: "arrow-left",
108
+ label: "Arrow Left",
109
+ tags: ["arrow", "custom", "directional", "left"],
110
+ svgCode:
111
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M9.57043 18.82C9.38043 18.82 9.19043 18.75 9.04043 18.6L2.97043 12.53C2.68043 12.24 2.68043 11.76 2.97043 11.47L9.04043 5.4C9.33043 5.11 9.81043 5.11 10.1004 5.4C10.3904 5.69 10.3904 6.17 10.1004 6.46L4.56043 12L10.1004 17.54C10.3904 17.83 10.3904 18.31 10.1004 18.6C9.96043 18.75 9.76043 18.82 9.57043 18.82Z" fill="currentColor"/>\n<path d="M20.4999 12.75H3.66992C3.25992 12.75 2.91992 12.41 2.91992 12C2.91992 11.59 3.25992 11.25 3.66992 11.25H20.4999C20.9099 11.25 21.2499 11.59 21.2499 12C21.2499 12.41 20.9099 12.75 20.4999 12.75Z" fill="currentColor"/>\n</svg>',
112
+ },
113
+ },
114
+ "carousel-navigation-arrow-right_rightIcon": {
115
+ kind: "icon",
116
+ data: {
117
+ id: "arrow-right-1",
118
+ label: "Arrow Right 1",
119
+ tags: ["arrow", "custom", "directional", "right"],
120
+ svgCode:
121
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M14.4301 18.82C14.2401 18.82 14.0501 18.75 13.9001 18.6C13.6101 18.31 13.6101 17.83 13.9001 17.54L19.4401 12L13.9001 6.46C13.6101 6.17 13.6101 5.69 13.9001 5.4C14.1901 5.11 14.6701 5.11 14.9601 5.4L21.0301 11.47C21.3201 11.76 21.3201 12.24 21.0301 12.53L14.9601 18.6C14.8101 18.75 14.6201 18.82 14.4301 18.82Z" fill="currentColor"/>\n<path d="M20.33 12.75H3.5C3.09 12.75 2.75 12.41 2.75 12C2.75 11.59 3.09 11.25 3.5 11.25H20.33C20.74 11.25 21.08 11.59 21.08 12C21.08 12.41 20.74 12.75 20.33 12.75Z" fill="currentColor"/>\n</svg>',
122
+ },
123
+ },
124
+ cta_wrapper: null,
125
+ cta: "Explore All Trainers",
126
+ };
127
+
128
+ export type ICarousel2Content = typeof DEFAULT_CONTENT;
129
+
130
+ export const Carousel2: IBlock = {
131
+ category_id: "carousel",
132
+ title: "Carousel 2",
133
+ key: "carousel-2",
134
+ version: "v1",
135
+ prompt_description:
136
+ "Team carousel showcasing team member profiles with background images, names, positions and social icons, featuring a header with title and description, and a call-to-action button below.",
137
+ content_schema: [
138
+ {
139
+ key: "layout",
140
+ label: "Layout",
141
+ field_interface: "LayoutWidget",
142
+ hint: {
143
+ prompt_description:
144
+ "Defines the overall layout structure for the team grid block, providing consistent spacing and alignment.",
145
+ },
146
+ },
147
+ {
148
+ key: "container",
149
+ label: "Container",
150
+ field_interface: "ContainerWidget",
151
+ hint: {
152
+ prompt_description:
153
+ "Main container providing padding and centering for the team section.",
154
+ },
155
+ },
156
+ {
157
+ key: "header",
158
+ label: "Header",
159
+ field_interface: "BoxWidget",
160
+ hint: {
161
+ prompt_description:
162
+ "Container for the section title and description, positioned above the team grid.",
163
+ },
164
+ },
165
+ {
166
+ key: "header-content",
167
+ label: "Header Content",
168
+ field_interface: "BoxWidget",
169
+ hint: {
170
+ prompt_description: "Wrapper for title and description.",
171
+ },
172
+ },
173
+ {
174
+ key: "title",
175
+ label: "Title",
176
+ field_interface: "HeadingWidget",
177
+ hint: {
178
+ prompt_description:
179
+ "Main heading for the team section. Use a clear, engaging title that introduces the team.",
180
+ min_characters: 8,
181
+ max_characters: 30,
182
+ },
183
+ },
184
+ {
185
+ key: "description",
186
+ label: "Description",
187
+ field_interface: "TypographyWidget",
188
+ hint: {
189
+ prompt_description:
190
+ "Descriptive text explaining the team's role or mission. Keep it engaging and professional.",
191
+ min_characters: 50,
192
+ max_characters: 200,
193
+ },
194
+ },
195
+ {
196
+ key: "carousel-navigation-container",
197
+ label: "Carousel Navigation Container",
198
+ field_interface: "BoxWidget",
199
+ hint: {
200
+ prompt_description:
201
+ "Container for the carousel navigation dots, positioned below the team carousel.",
202
+ },
203
+ },
204
+ {
205
+ key: "carousel-navigation",
206
+ label: "Carousel Navigation",
207
+ field_interface: "BoxWidget",
208
+ hint: {
209
+ prompt_description:
210
+ "Container for the navigation pills or dots indicating carousel position.",
211
+ },
212
+ },
213
+ {
214
+ key: "carousel-navigation-pill",
215
+ label: "Carousel Navigation Pill",
216
+ field_interface: "BoxWidget",
217
+ hint: {
218
+ prompt_description:
219
+ "Individual navigation dot for the carousel, indicating current position.",
220
+ },
221
+ },
222
+ {
223
+ key: "carousel-navigation-arrow-left",
224
+ label: "Left Arrow",
225
+ field_interface: "ButtonWidget",
226
+ hint: {
227
+ prompt_description: "Arrow button to slide carousel to the left.",
228
+ },
229
+ },
230
+ {
231
+ key: "carousel-navigation-arrow-right",
232
+ label: "Right Arrow",
233
+ field_interface: "ButtonWidget",
234
+ hint: {
235
+ prompt_description: "Arrow button to slide carousel to the right.",
236
+ },
237
+ },
238
+ {
239
+ key: "carousel-navigation-top-container",
240
+ label: "Carousel Navigation Top Container",
241
+ field_interface: "BoxWidget",
242
+ hint: {
243
+ prompt_description: "Container for navigation arrows in the header.",
244
+ },
245
+ },
246
+ {
247
+ key: "team",
248
+ label: "Team Members",
249
+ field_interface: "CarouselWidget",
250
+ kind: "group",
251
+ fields: [
252
+ {
253
+ key: "card",
254
+ label: "Card Container",
255
+ field_interface: "BoxWidget",
256
+ hint: {
257
+ prompt_description:
258
+ "Wrapper for each team member card, providing structure and spacing with background image.",
259
+ },
260
+ },
261
+ {
262
+ key: "img",
263
+ label: "Card Image",
264
+ field_interface: "MediaWidget",
265
+ },
266
+ {
267
+ key: "info",
268
+ label: "Member Info",
269
+ field_interface: "BoxWidget",
270
+ hint: {
271
+ prompt_description:
272
+ "Container for team member information including name, position, and social links.",
273
+ },
274
+ },
275
+ {
276
+ key: "name-position-wrapper",
277
+ label: "Name Position Wrapper",
278
+ field_interface: "BoxWidget",
279
+ hint: {
280
+ prompt_description:
281
+ "Container for name and position that allows flex styling and proper spacing.",
282
+ },
283
+ },
284
+ {
285
+ key: "name",
286
+ label: "Member Name",
287
+ field_interface: "TypographyWidget",
288
+ hint: {
289
+ prompt_description:
290
+ "Full name of the team member. Use professional, clear naming.",
291
+ min_characters: 8,
292
+ max_characters: 30,
293
+ },
294
+ },
295
+ {
296
+ key: "description",
297
+ label: "Description/Position",
298
+ field_interface: "TypographyWidget",
299
+ hint: {
300
+ prompt_description:
301
+ "Full name of the team member. Use professional, clear naming.",
302
+ min_characters: 8,
303
+ max_characters: 30,
304
+ },
305
+ },
306
+ {
307
+ key: "social",
308
+ label: "Social Links",
309
+ field_interface: "BoxWidget",
310
+ kind: "group",
311
+ fields: [
312
+ {
313
+ key: "icon",
314
+ label: "Social Icon",
315
+ field_interface: "IconWidget",
316
+ hint: {
317
+ prompt_description:
318
+ "Social media platform icon, typically LinkedIn for professional teams. Can be any social media platform icon.",
319
+ orientation: "square",
320
+ size: "icon",
321
+ usecase: "icon",
322
+ },
323
+ },
324
+ ],
325
+ hint: {
326
+ prompt_description:
327
+ "Collection of social media icons for the team member, typically just LinkedIn.",
328
+ min_items: 1,
329
+ max_items: 3,
330
+ },
331
+ },
332
+ ],
333
+ hint: {
334
+ prompt_description:
335
+ "A grid of team member cards showcasing the team with professional photos and contact information.",
336
+ min_items: 3,
337
+ max_items: 12,
338
+ },
339
+ },
340
+ {
341
+ key: "cta_wrapper",
342
+ label: "CTA Wrapper",
343
+ field_interface: "BoxWidget",
344
+ hint: {
345
+ prompt_description:
346
+ "Container for the call-to-action button, positioned below the team grid.",
347
+ },
348
+ },
349
+ {
350
+ key: "cta",
351
+ label: "CTA Button",
352
+ field_interface: "ButtonWidget",
353
+ hint: {
354
+ prompt_description:
355
+ "Call-to-action button to encourage further engagement with the team or company.",
356
+ min_characters: 10,
357
+ max_characters: 30,
358
+ },
359
+ },
360
+ ],
361
+ layouts: [
362
+ {
363
+ key: "default",
364
+ title: "Default",
365
+ config: {
366
+ team_levoGroup: {
367
+ carousel: {
368
+ loop: true,
369
+ },
370
+ },
371
+ "carousel-navigation-arrow-left": {
372
+ button_icons: {
373
+ left: {
374
+ enabled: true,
375
+ },
376
+ },
377
+ },
378
+ "carousel-navigation-arrow-right": {
379
+ button_icons: {
380
+ right: {
381
+ enabled: true,
382
+ },
383
+ },
384
+ },
385
+ },
386
+ content: DEFAULT_CONTENT,
387
+ styles: {
388
+ layout: {
389
+ "background-color": "white",
390
+ "padding-top": "4xl",
391
+ "padding-bottom": "4xl",
392
+ mobile: {
393
+ "padding-top": "2xl",
394
+ "padding-bottom": "2xl",
395
+ },
396
+ },
397
+ container: {
398
+ "max-width": "1280px",
399
+ "margin-left": "auto",
400
+ "margin-right": "auto",
401
+ "padding-left": "xl",
402
+ "padding-right": "xl",
403
+ },
404
+ header: {
405
+ "margin-bottom": "3xl",
406
+ mobile: {
407
+ "margin-bottom": "2xl",
408
+ "flex-direction": "column",
409
+ "justify-content": "center",
410
+ "align-items": "center",
411
+ },
412
+ display: "flex",
413
+ "justify-content": "space-between",
414
+ "align-items": "end",
415
+ "flex-direction": "row",
416
+ "column-gap": "none",
417
+ },
418
+ "header-content": {
419
+ display: "flex",
420
+ "flex-direction": "column",
421
+ "row-gap": "xs",
422
+ "max-width": "600px",
423
+ },
424
+ title: {
425
+ "font-size": "5xl",
426
+ "font-weight": "700",
427
+ color: "text-1",
428
+ "line-height": "1.2",
429
+ "margin-bottom": "none",
430
+ width: "100%",
431
+ mobile: {
432
+ "font-size": "3xl",
433
+ "text-align": "center",
434
+ },
435
+ },
436
+ description: {
437
+ "font-size": "lg",
438
+ color: "text-2",
439
+ "line-height": "1.6",
440
+ "text-align": "left",
441
+ "margin-bottom": "none",
442
+ mobile: {
443
+ "text-align": "center",
444
+ },
445
+ },
446
+ team_levoGroup: {
447
+ number_of_slides: 3,
448
+ "column-gap": "xl",
449
+ mobile: {
450
+ number_of_slides: 1,
451
+ },
452
+ tablet: {
453
+ number_of_slides: 2,
454
+ },
455
+ },
456
+ team: [
457
+ {
458
+ card: {
459
+ display: "flex",
460
+ "flex-direction": "column",
461
+ "align-items": "center",
462
+ "border-radius": "lg",
463
+ "box-shadow": "0 4px 6px -1px rgba(0, 0, 0, 0.1)",
464
+ "min-height": "500px",
465
+ position: "relative",
466
+ "margin-left": "4xs",
467
+ "margin-right": "4xs",
468
+ },
469
+ info: {
470
+ display: "flex",
471
+ "flex-direction": "row",
472
+ "align-items": "center",
473
+ "justify-content": "space-between",
474
+ width: "100%",
475
+ "margin-top": "auto",
476
+ "padding-top": "none",
477
+ "padding-bottom": "none",
478
+ "padding-left": "base",
479
+ "padding-right": "base",
480
+ "box-shadow": "none",
481
+ position: "absolute",
482
+ bottom: "20px",
483
+ },
484
+ "name-position-wrapper": {
485
+ display: "flex",
486
+ "flex-direction": "column",
487
+ "align-items": "flex-start",
488
+ "row-gap": "4xs",
489
+ },
490
+ name: {},
491
+ description: {
492
+ "font-size": "base",
493
+ color: "text-2",
494
+ "font-weight": "400",
495
+ display: "none",
496
+ },
497
+ social_levoGroup: {
498
+ display: "flex",
499
+ "justify-content": "center",
500
+ "column-gap": "xs",
501
+ },
502
+ social: [
503
+ {
504
+ icon: {
505
+ width: "40px",
506
+ height: "40px",
507
+ "object-fit": "contain",
508
+ "border-style": "solid",
509
+ "border-width": "1px",
510
+ "border-color": "brand",
511
+ "border-radius": "full",
512
+ "background-color": "white",
513
+ display: "block",
514
+ padding: "xs",
515
+ "font-size": "40px",
516
+ },
517
+ },
518
+ ],
519
+ img: {
520
+ "min-height": "500px",
521
+ "object-fit": "cover",
522
+ position: "relative",
523
+ },
524
+ },
525
+ {
526
+ card: {
527
+ display: "flex",
528
+ "flex-direction": "column",
529
+ "align-items": "center",
530
+ "border-radius": "lg",
531
+ "box-shadow": "0 4px 6px -1px rgba(0, 0, 0, 0.1)",
532
+ "min-height": "500px",
533
+ position: "relative",
534
+ "margin-left": "4xs",
535
+ "margin-right": "4xs",
536
+ },
537
+ info: {
538
+ display: "flex",
539
+ "flex-direction": "row",
540
+ "align-items": "center",
541
+ "justify-content": "space-between",
542
+ width: "100%",
543
+ "margin-top": "auto",
544
+ "padding-top": "none",
545
+ "padding-bottom": "none",
546
+ "padding-left": "base",
547
+ "padding-right": "base",
548
+ "box-shadow": "none",
549
+ position: "absolute",
550
+ bottom: "20px",
551
+ },
552
+ "name-position-wrapper": {
553
+ display: "flex",
554
+ "flex-direction": "column",
555
+ "align-items": "flex-start",
556
+ "row-gap": "4xs",
557
+ },
558
+ name: {},
559
+ description: {
560
+ "font-size": "base",
561
+ color: "text-2",
562
+ "font-weight": "400",
563
+ display: "none",
564
+ },
565
+ social_levoGroup: {
566
+ display: "flex",
567
+ "justify-content": "center",
568
+ "column-gap": "xs",
569
+ },
570
+ social: [
571
+ {
572
+ icon: {
573
+ width: "40px",
574
+ height: "40px",
575
+ "object-fit": "contain",
576
+ "border-style": "solid",
577
+ "border-width": "1px",
578
+ "border-color": "brand",
579
+ "border-radius": "full",
580
+ "background-color": "white",
581
+ display: "block",
582
+ padding: "xs",
583
+ "font-size": "40px",
584
+ },
585
+ },
586
+ ],
587
+ img: {
588
+ "min-height": "500px",
589
+ "object-fit": "cover",
590
+ position: "relative",
591
+ },
592
+ },
593
+ {
594
+ card: {
595
+ display: "flex",
596
+ "flex-direction": "column",
597
+ "align-items": "center",
598
+ "border-radius": "lg",
599
+ "box-shadow": "0 4px 6px -1px rgba(0, 0, 0, 0.1)",
600
+ "min-height": "500px",
601
+ position: "relative",
602
+ "margin-left": "4xs",
603
+ "margin-right": "4xs",
604
+ },
605
+ info: {
606
+ display: "flex",
607
+ "flex-direction": "row",
608
+ "align-items": "center",
609
+ "justify-content": "space-between",
610
+ width: "100%",
611
+ "margin-top": "auto",
612
+ "padding-top": "none",
613
+ "padding-bottom": "none",
614
+ "padding-left": "base",
615
+ "padding-right": "base",
616
+ "box-shadow": "none",
617
+ position: "absolute",
618
+ bottom: "20px",
619
+ },
620
+ "name-position-wrapper": {
621
+ display: "flex",
622
+ "flex-direction": "column",
623
+ "align-items": "flex-start",
624
+ "row-gap": "4xs",
625
+ },
626
+ name: {},
627
+ description: {
628
+ "font-size": "base",
629
+ color: "text-2",
630
+ "font-weight": "400",
631
+ display: "none",
632
+ },
633
+ social_levoGroup: {
634
+ display: "flex",
635
+ "justify-content": "center",
636
+ "column-gap": "xs",
637
+ },
638
+ social: [
639
+ {
640
+ icon: {
641
+ width: "40px",
642
+ height: "40px",
643
+ "object-fit": "contain",
644
+ "border-style": "solid",
645
+ "border-width": "1px",
646
+ "border-color": "brand",
647
+ "border-radius": "full",
648
+ "background-color": "white",
649
+ display: "block",
650
+ padding: "xs",
651
+ "font-size": "40px",
652
+ },
653
+ },
654
+ ],
655
+ img: {
656
+ "min-height": "500px",
657
+ "object-fit": "cover",
658
+ position: "relative",
659
+ },
660
+ },
661
+ {
662
+ card: {
663
+ display: "flex",
664
+ "flex-direction": "column",
665
+ "align-items": "center",
666
+ "border-radius": "lg",
667
+ "box-shadow": "0 4px 6px -1px rgba(0, 0, 0, 0.1)",
668
+ "min-height": "500px",
669
+ position: "relative",
670
+ "margin-left": "4xs",
671
+ "margin-right": "4xs",
672
+ },
673
+ info: {
674
+ display: "flex",
675
+ "flex-direction": "row",
676
+ "align-items": "center",
677
+ "justify-content": "space-between",
678
+ width: "100%",
679
+ "margin-top": "auto",
680
+ "padding-top": "none",
681
+ "padding-bottom": "none",
682
+ "padding-left": "base",
683
+ "padding-right": "base",
684
+ "box-shadow": "none",
685
+ position: "absolute",
686
+ bottom: "20px",
687
+ },
688
+ "name-position-wrapper": {
689
+ display: "flex",
690
+ "flex-direction": "column",
691
+ "align-items": "flex-start",
692
+ "row-gap": "4xs",
693
+ },
694
+ name: {},
695
+ description: {
696
+ "font-size": "base",
697
+ color: "text-2",
698
+ "font-weight": "400",
699
+ display: "none",
700
+ },
701
+ social_levoGroup: {
702
+ display: "flex",
703
+ "justify-content": "center",
704
+ "column-gap": "xs",
705
+ },
706
+ social: [
707
+ {
708
+ icon: {
709
+ width: "40px",
710
+ height: "40px",
711
+ "object-fit": "contain",
712
+ "border-style": "solid",
713
+ "border-width": "1px",
714
+ "border-color": "brand",
715
+ "border-radius": "full",
716
+ "background-color": "white",
717
+ display: "block",
718
+ padding: "xs",
719
+ "font-size": "40px",
720
+ },
721
+ },
722
+ ],
723
+ img: {
724
+ "min-height": "500px",
725
+ "object-fit": "cover",
726
+ position: "relative",
727
+ },
728
+ },
729
+ {
730
+ card: {
731
+ display: "flex",
732
+ "flex-direction": "column",
733
+ "align-items": "center",
734
+ "border-radius": "lg",
735
+ "box-shadow": "0 4px 6px -1px rgba(0, 0, 0, 0.1)",
736
+ "min-height": "500px",
737
+ position: "relative",
738
+ "margin-left": "4xs",
739
+ "margin-right": "4xs",
740
+ },
741
+ info: {
742
+ display: "flex",
743
+ "flex-direction": "row",
744
+ "align-items": "center",
745
+ "justify-content": "space-between",
746
+ width: "100%",
747
+ "margin-top": "auto",
748
+ "padding-top": "none",
749
+ "padding-bottom": "none",
750
+ "padding-left": "base",
751
+ "padding-right": "base",
752
+ "box-shadow": "none",
753
+ position: "absolute",
754
+ bottom: "20px",
755
+ },
756
+ "name-position-wrapper": {
757
+ display: "flex",
758
+ "flex-direction": "column",
759
+ "align-items": "flex-start",
760
+ "row-gap": "4xs",
761
+ },
762
+ name: {},
763
+ description: {
764
+ "font-size": "base",
765
+ color: "text-2",
766
+ "font-weight": "400",
767
+ display: "none",
768
+ },
769
+ social_levoGroup: {
770
+ display: "flex",
771
+ "justify-content": "center",
772
+ "column-gap": "xs",
773
+ },
774
+ social: [
775
+ {
776
+ icon: {
777
+ width: "40px",
778
+ height: "40px",
779
+ "object-fit": "contain",
780
+ "border-style": "solid",
781
+ "border-width": "1px",
782
+ "border-color": "brand",
783
+ "border-radius": "full",
784
+ "background-color": "white",
785
+ display: "block",
786
+ padding: "xs",
787
+ "font-size": "40px",
788
+ },
789
+ },
790
+ ],
791
+ img: {
792
+ "min-height": "500px",
793
+ "object-fit": "cover",
794
+ position: "relative",
795
+ },
796
+ },
797
+ {
798
+ card: {
799
+ display: "flex",
800
+ "flex-direction": "column",
801
+ "align-items": "center",
802
+ "border-radius": "lg",
803
+ "box-shadow": "0 4px 6px -1px rgba(0, 0, 0, 0.1)",
804
+ "min-height": "500px",
805
+ position: "relative",
806
+ "margin-left": "4xs",
807
+ "margin-right": "4xs",
808
+ },
809
+ info: {
810
+ display: "flex",
811
+ "flex-direction": "row",
812
+ "align-items": "center",
813
+ "justify-content": "space-between",
814
+ width: "100%",
815
+ "margin-top": "auto",
816
+ "padding-top": "none",
817
+ "padding-bottom": "none",
818
+ "padding-left": "base",
819
+ "padding-right": "base",
820
+ "box-shadow": "none",
821
+ position: "absolute",
822
+ bottom: "20px",
823
+ },
824
+ "name-position-wrapper": {
825
+ display: "flex",
826
+ "flex-direction": "column",
827
+ "align-items": "flex-start",
828
+ "row-gap": "4xs",
829
+ },
830
+ name: {},
831
+ description: {
832
+ "font-size": "base",
833
+ color: "text-2",
834
+ "font-weight": "400",
835
+ display: "none",
836
+ },
837
+ social_levoGroup: {
838
+ display: "flex",
839
+ "justify-content": "center",
840
+ "column-gap": "xs",
841
+ },
842
+ social: [
843
+ {
844
+ icon: {
845
+ width: "40px",
846
+ height: "40px",
847
+ "object-fit": "contain",
848
+ "border-style": "solid",
849
+ "border-width": "1px",
850
+ "border-color": "brand",
851
+ "border-radius": "full",
852
+ "background-color": "white",
853
+ display: "block",
854
+ padding: "xs",
855
+ "font-size": "40px",
856
+ },
857
+ },
858
+ ],
859
+ img: {
860
+ "min-height": "500px",
861
+ "object-fit": "cover",
862
+ position: "relative",
863
+ },
864
+ },
865
+ {
866
+ card: {
867
+ display: "flex",
868
+ "flex-direction": "column",
869
+ "align-items": "center",
870
+ "border-radius": "lg",
871
+ padding: "lg",
872
+ "box-shadow": "0 4px 6px -1px rgba(0, 0, 0, 0.1)",
873
+ position: "relative",
874
+ "min-height": "500px",
875
+ "margin-left": "4xs",
876
+ "margin-right": "4xs",
877
+ },
878
+ info: {
879
+ display: "flex",
880
+ "flex-direction": "row",
881
+ "align-items": "center",
882
+ "justify-content": "space-between",
883
+ width: "100%",
884
+ "margin-top": "auto",
885
+ "padding-top": "none",
886
+ "padding-bottom": "none",
887
+ "padding-left": "none",
888
+ "padding-right": "none",
889
+ "box-shadow": "none",
890
+ },
891
+ "name-position-wrapper": {
892
+ display: "flex",
893
+ "flex-direction": "column",
894
+ "align-items": "flex-start",
895
+ "row-gap": "4xs",
896
+ },
897
+ name: {
898
+ color: "white",
899
+ },
900
+ description: {
901
+ "font-size": "base",
902
+ color: "text-2",
903
+ "font-weight": "400",
904
+ display: "none",
905
+ },
906
+ social_levoGroup: {
907
+ display: "flex",
908
+ "justify-content": "center",
909
+ "column-gap": "xs",
910
+ },
911
+ social: [
912
+ {
913
+ icon: {
914
+ width: "40px",
915
+ height: "40px",
916
+ "object-fit": "contain",
917
+ "border-style": "solid",
918
+ "border-width": "1px",
919
+ "border-color": "brand",
920
+ "border-radius": "full",
921
+ "background-color": "white",
922
+ display: "block",
923
+ padding: "xs",
924
+ "font-size": "40px",
925
+ },
926
+ },
927
+ ],
928
+ },
929
+ {
930
+ card: {
931
+ display: "flex",
932
+ "flex-direction": "column",
933
+ "align-items": "center",
934
+ "border-radius": "lg",
935
+ padding: "lg",
936
+ "box-shadow": "0 4px 6px -1px rgba(0, 0, 0, 0.1)",
937
+ "min-height": "500px",
938
+ position: "relative",
939
+ "margin-left": "4xs",
940
+ "margin-right": "4xs",
941
+ },
942
+ info: {
943
+ display: "flex",
944
+ "flex-direction": "row",
945
+ "align-items": "center",
946
+ "justify-content": "space-between",
947
+ width: "100%",
948
+ "margin-top": "auto",
949
+ "padding-top": "none",
950
+ "padding-bottom": "none",
951
+ "padding-left": "none",
952
+ "padding-right": "none",
953
+ "box-shadow": "none",
954
+ },
955
+ "name-position-wrapper": {
956
+ display: "flex",
957
+ "flex-direction": "column",
958
+ "align-items": "flex-start",
959
+ "row-gap": "4xs",
960
+ },
961
+ name: {
962
+ color: "white",
963
+ },
964
+ description: {
965
+ "font-size": "base",
966
+ color: "text-2",
967
+ "font-weight": "400",
968
+ display: "none",
969
+ },
970
+ social_levoGroup: {
971
+ display: "flex",
972
+ "justify-content": "center",
973
+ "column-gap": "xs",
974
+ },
975
+ social: [
976
+ {
977
+ icon: {
978
+ width: "40px",
979
+ height: "40px",
980
+ "object-fit": "contain",
981
+ "border-style": "solid",
982
+ "border-width": "1px",
983
+ "border-color": "brand",
984
+ "border-radius": "full",
985
+ "background-color": "white",
986
+ display: "block",
987
+ padding: "xs",
988
+ "font-size": "40px",
989
+ },
990
+ },
991
+ ],
992
+ },
993
+ {
994
+ card: {
995
+ display: "flex",
996
+ "flex-direction": "column",
997
+ "align-items": "center",
998
+ "border-radius": "lg",
999
+ padding: "lg",
1000
+ "box-shadow": "0 4px 6px -1px rgba(0, 0, 0, 0.1)",
1001
+ "min-height": "500px",
1002
+ position: "relative",
1003
+ "margin-left": "4xs",
1004
+ "margin-right": "4xs",
1005
+ },
1006
+ info: {
1007
+ display: "flex",
1008
+ "flex-direction": "row",
1009
+ "align-items": "center",
1010
+ "justify-content": "space-between",
1011
+ width: "100%",
1012
+ "margin-top": "auto",
1013
+ "padding-top": "none",
1014
+ "padding-bottom": "none",
1015
+ "padding-left": "none",
1016
+ "padding-right": "none",
1017
+ "box-shadow": "none",
1018
+ },
1019
+ "name-position-wrapper": {
1020
+ display: "flex",
1021
+ "flex-direction": "column",
1022
+ "align-items": "flex-start",
1023
+ "row-gap": "4xs",
1024
+ },
1025
+ name: {
1026
+ color: "white",
1027
+ },
1028
+ description: {
1029
+ "font-size": "base",
1030
+ color: "text-2",
1031
+ "font-weight": "400",
1032
+ display: "none",
1033
+ },
1034
+ social_levoGroup: {
1035
+ display: "flex",
1036
+ "justify-content": "center",
1037
+ "column-gap": "xs",
1038
+ },
1039
+ social: [
1040
+ {
1041
+ icon: {
1042
+ width: "40px",
1043
+ height: "40px",
1044
+ "object-fit": "contain",
1045
+ "border-style": "solid",
1046
+ "border-width": "1px",
1047
+ "border-color": "brand",
1048
+ "border-radius": "full",
1049
+ "background-color": "white",
1050
+ display: "block",
1051
+ padding: "xs",
1052
+ "font-size": "40px",
1053
+ },
1054
+ },
1055
+ ],
1056
+ },
1057
+ ],
1058
+ cta_wrapper: {
1059
+ display: "flex",
1060
+ "justify-content": "center",
1061
+ "margin-top": "3xl",
1062
+ mobile: {
1063
+ "margin-top": "2xl",
1064
+ },
1065
+ },
1066
+ cta: {
1067
+ "background-color": "brand",
1068
+ color: "white",
1069
+ "padding-top": "base",
1070
+ "padding-bottom": "base",
1071
+ "padding-left": "xl",
1072
+ "padding-right": "xl",
1073
+ "border-radius": "lg",
1074
+ "font-size": "base",
1075
+ "font-weight": "600",
1076
+ "border-style": "none",
1077
+ },
1078
+ "carousel-navigation-container": {
1079
+ display: "flex",
1080
+ "justify-content": "center",
1081
+ "margin-top": "2xl",
1082
+ },
1083
+ "carousel-navigation": {
1084
+ display: "flex",
1085
+ "column-gap": "2xs",
1086
+ "align-items": "center",
1087
+ filter: "none",
1088
+ },
1089
+ "carousel-navigation-pill": {
1090
+ width: "8px",
1091
+ height: "8px",
1092
+ "border-radius": "8px",
1093
+ "background-color": "var(--color-border)",
1094
+ cursor: "pointer",
1095
+ filter: "none",
1096
+ transition: "all 0.3s ease",
1097
+ },
1098
+ "carousel-navigation-arrow-left": {
1099
+ "border-radius": "3xl",
1100
+ width: "40px",
1101
+ height: "40px",
1102
+ padding: "0",
1103
+ },
1104
+ "carousel-navigation-arrow-right": {
1105
+ "border-radius": "3xl",
1106
+ width: "40px",
1107
+ height: "40px",
1108
+ padding: "0",
1109
+ },
1110
+ "carousel-navigation-top-container": {
1111
+ display: "flex",
1112
+ "align-items": "center",
1113
+ "column-gap": "2xs",
1114
+ },
1115
+ "carousel-navigation-arrow-left_leftIcon": {
1116
+ height: "22px",
1117
+ width: "22px",
1118
+ "font-size": "22px",
1119
+ },
1120
+ "carousel-navigation-arrow-right_rightIcon": {
1121
+ height: "22px",
1122
+ width: "22px",
1123
+ "font-size": "22px",
1124
+ },
1125
+ },
1126
+ },
1127
+ ],
1128
+ };