@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,867 @@
1
+ import type { IBlock } from "@levo-so/studio";
2
+
3
+ const PROFILE_CONTENT = {
4
+ main_container: null,
5
+ left_container: null,
6
+ image: {
7
+ id: "CISQRrr8Fa61r",
8
+ filename: "image.png",
9
+ kind: "image",
10
+ location: "https://static.levostg.online/W6OEVMW8/image-gVHXsJu0gnbHV.png",
11
+ srcset: {
12
+ "1080w":
13
+ "https://static.levostg.online/W6OEVMW8/image-gVHXsJu0gnbHV-1080w.webp",
14
+ "1200w":
15
+ "https://static.levostg.online/W6OEVMW8/image-gVHXsJu0gnbHV-1200w.webp",
16
+ "1920w":
17
+ "https://static.levostg.online/W6OEVMW8/image-gVHXsJu0gnbHV-1920w.webp",
18
+ "320w":
19
+ "https://static.levostg.online/W6OEVMW8/image-gVHXsJu0gnbHV-320w.webp",
20
+ "640w":
21
+ "https://static.levostg.online/W6OEVMW8/image-gVHXsJu0gnbHV-640w.webp",
22
+ "750w":
23
+ "https://static.levostg.online/W6OEVMW8/image-gVHXsJu0gnbHV-750w.webp",
24
+ "828w":
25
+ "https://static.levostg.online/W6OEVMW8/image-gVHXsJu0gnbHV-828w.webp",
26
+ path: "https://static.levostg.online/W6OEVMW8/image-gVHXsJu0gnbHV-640w.webp 640w, https://static.levostg.online/W6OEVMW8/image-gVHXsJu0gnbHV-320w.webp 320w, https://static.levostg.online/W6OEVMW8/image-gVHXsJu0gnbHV-828w.webp 828w, https://static.levostg.online/W6OEVMW8/image-gVHXsJu0gnbHV-750w.webp 750w, https://static.levostg.online/W6OEVMW8/image-gVHXsJu0gnbHV-1080w.webp 1080w, https://static.levostg.online/W6OEVMW8/image-gVHXsJu0gnbHV-1200w.webp 1200w, https://static.levostg.online/W6OEVMW8/image-gVHXsJu0gnbHV-1920w.webp 1920w",
27
+ },
28
+ mimetype: "image/png",
29
+ },
30
+ ctas: [],
31
+ right_container: null,
32
+ content_container: null,
33
+ content_description:
34
+ "Our team of expert developers and designers work collaboratively to deliver innovative solutions that drive business growth. We combine cutting-edge technology with industry best practices to create digital experiences that engage and inspire users.",
35
+ groups: [
36
+ {
37
+ title: "<p>Experience</p>",
38
+ description: "<p>4-5 + </p>",
39
+ },
40
+ {
41
+ title: "<p>Technical Expertise</p>",
42
+ description: "<p>Scaling , HR , Operations</p>",
43
+ },
44
+ ],
45
+ name: "<p>Spohia Reed</p>",
46
+ social_icon: [
47
+ {
48
+ icon: {
49
+ kind: "icon",
50
+ data: {
51
+ id: "facebook",
52
+ label: "Facebook",
53
+ tags: ["crypto", "custom", "directional", "facebook"],
54
+ svgCode:
55
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M14.75 22.75H10.25V15.5H9.29999C8.71999 15.5 8.25 15.03 8.25 14.45V12.55C8.25 11.97 8.71999 11.5 9.29999 11.5H10.25V9C10.25 6.93 11.93 5.25 14 5.25H16.7C17.28 5.25 17.75 5.71999 17.75 6.29999V8.70001C17.75 9.28001 17.28 9.75 16.7 9.75H14.75V11.5H16.63C16.95 11.5 17.24 11.64 17.44 11.88C17.64 12.12 17.72 12.44 17.66 12.75L17.28 14.65C17.18 15.14 16.75 15.49 16.25 15.49H14.75V22.75ZM11.75 21.25H13.25V14H15.89L16.09 13H13.26V9.29999C13.26 8.71999 13.73 8.25 14.31 8.25H16.26V6.75H14C12.76 6.75 11.75 7.76 11.75 9V13H9.75V14H11.75V21.25Z" fill="var(--color-icon-primary)"/>\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</svg>',
56
+ },
57
+ },
58
+ },
59
+ {
60
+ icon: {
61
+ kind: "icon",
62
+ data: {
63
+ id: "youtube",
64
+ label: "Youtube",
65
+ tags: ["crypto", "custom", "directional", "youtube"],
66
+ svgCode:
67
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M17 20.75H7C3.56 20.75 1.25 18.44 1.25 15V9C1.25 5.56 3.56 3.25 7 3.25H17C20.44 3.25 22.75 5.56 22.75 9V15C22.75 18.44 20.44 20.75 17 20.75ZM7 4.75C4.42 4.75 2.75 6.42 2.75 9V15C2.75 17.58 4.42 19.25 7 19.25H17C19.58 19.25 21.25 17.58 21.25 15V9C21.25 6.42 19.58 4.75 17 4.75H7Z" fill="var(--color-icon-primary)"/>\n<path d="M10.5897 15.53C10.2997 15.53 10.0197 15.46 9.76965 15.32C9.18965 14.99 8.84961 14.32 8.84961 13.49V10.53C8.84961 9.7 9.17965 9.03002 9.76965 8.70002C10.3497 8.37002 11.0996 8.42999 11.8096 8.85999L14.2797 10.34C14.9597 10.75 15.3496 11.36 15.3496 12.01C15.3496 12.66 14.9597 13.27 14.2797 13.68L11.8096 15.16C11.3996 15.4 10.9797 15.53 10.5897 15.53ZM10.5897 9.97001C10.5497 9.97001 10.5196 9.98 10.4996 9.99C10.4296 10.03 10.3496 10.21 10.3496 10.52V13.48C10.3496 13.78 10.4296 13.96 10.4996 14.01C10.5796 14.05 10.7697 14.03 11.0297 13.87L13.4996 12.39C13.7496 12.24 13.8397 12.09 13.8397 12C13.8397 11.91 13.7496 11.77 13.4996 11.61L11.0297 10.13C10.8497 10.02 10.6897 9.97001 10.5897 9.97001Z" fill="var(--color-icon-primary)"/>\n</svg>',
68
+ },
69
+ },
70
+ },
71
+ ],
72
+ };
73
+
74
+ const DEFAULT_CONTENT = {
75
+ layout: null,
76
+ container: null,
77
+ header_container: null,
78
+ title: "Meet Our Team",
79
+ description: "<p>Dedicated professionals committed to success.</p>",
80
+ profiles: [PROFILE_CONTENT, PROFILE_CONTENT, PROFILE_CONTENT],
81
+ };
82
+
83
+ export type IProfile3Content = typeof DEFAULT_CONTENT;
84
+
85
+ const PROFILE_ITEM_STYLES = {
86
+ main_container: {
87
+ display: "flex",
88
+ "flex-direction": "row",
89
+ "align-items": "flex-start",
90
+ "column-gap": "48px",
91
+ tablet: {
92
+ "flex-direction": "column",
93
+ },
94
+ },
95
+ left_container: {
96
+ display: "flex",
97
+ "flex-direction": "column",
98
+ "align-items": "center",
99
+ flex: "1",
100
+ "max-width": "400px",
101
+ tablet: {
102
+ "max-width": "100%",
103
+ },
104
+ },
105
+ image: {
106
+ "border-radius": "12px",
107
+ "margin-bottom": "24px",
108
+ width: "100%",
109
+ height: "300px",
110
+ "object-fit": "cover",
111
+ },
112
+ social_icon_levoGroup: {
113
+ display: "flex",
114
+ "column-gap": "md",
115
+ "margin-bottom": "24px",
116
+ },
117
+ social_icon: [
118
+ {
119
+ icon: {
120
+ height: "40px",
121
+ width: "40px",
122
+ "font-size": "40px",
123
+ "background-color": "background-1",
124
+ color: "text-1",
125
+ "padding-top": "8px",
126
+ "padding-bottom": "8px",
127
+ "padding-left": "8px",
128
+ "padding-right": "8px",
129
+ "border-radius": "50%",
130
+ "border-color": "border",
131
+ "border-width": "1px",
132
+ },
133
+ },
134
+ {
135
+ icon: {
136
+ height: "40px",
137
+ width: "40px",
138
+ "font-size": "40px",
139
+ "background-color": "background-1",
140
+ color: "text-1",
141
+ "padding-top": "8px",
142
+ "padding-bottom": "8px",
143
+ "padding-left": "8px",
144
+ "padding-right": "8px",
145
+ "border-radius": "50%",
146
+ "border-color": "border",
147
+ "border-width": "1px",
148
+ },
149
+ },
150
+ {
151
+ icon: {
152
+ height: "40px",
153
+ width: "40px",
154
+ "font-size": "40px",
155
+ "background-color": "background-1",
156
+ color: "text-1",
157
+ "padding-top": "8px",
158
+ "padding-bottom": "8px",
159
+ "padding-left": "8px",
160
+ "padding-right": "8px",
161
+ "border-radius": "50%",
162
+ "border-color": "border",
163
+ "border-width": "1px",
164
+ },
165
+ },
166
+ ],
167
+ right_container: {
168
+ display: "flex",
169
+ "flex-direction": "column",
170
+ "align-items": "flex-start",
171
+ flex: "2",
172
+ "row-gap": "32px",
173
+ },
174
+ name: {
175
+ "font-size": "5xl",
176
+ "font-weight": 700,
177
+ },
178
+ groups_levoGroup: {
179
+ display: "flex",
180
+ "column-gap": "base",
181
+ "flex-direction": "row",
182
+ flex: 1,
183
+ width: "100%",
184
+ },
185
+ groups: [
186
+ {
187
+ title: {
188
+ "font-size": "2xl",
189
+ "font-weight": 600,
190
+ "margin-bottom": "8px",
191
+ color: "text-1",
192
+ },
193
+ wrapper: {
194
+ display: "flex",
195
+ "flex-direction": "column",
196
+ "row-gap": "base",
197
+ flex: 1,
198
+ },
199
+ description: {
200
+ "font-size": "16px",
201
+ color: "text-2",
202
+ "line-height": "1.6",
203
+ },
204
+ },
205
+ {
206
+ title: {
207
+ "font-size": "2xl",
208
+ "font-weight": 600,
209
+ "margin-bottom": "8px",
210
+ color: "text-1",
211
+ },
212
+ wrapper: {
213
+ display: "flex",
214
+ "flex-direction": "column",
215
+ "row-gap": "base",
216
+ flex: 1,
217
+ },
218
+ description: {
219
+ "font-size": "16px",
220
+ color: "text-2",
221
+ "line-height": "1.6",
222
+ },
223
+ },
224
+ ],
225
+ content_container: {
226
+ display: "flex",
227
+ "flex-direction": "column",
228
+ "align-items": "flex-start",
229
+ },
230
+ content_description: {
231
+ "font-size": "16px",
232
+ color: "text-2",
233
+ "line-height": "1.6",
234
+ },
235
+ ctas: [],
236
+ };
237
+
238
+ export const Profile3: IBlock = {
239
+ category_id: "profile",
240
+ title: "Profile 3",
241
+ key: "profile-3",
242
+ version: "v1",
243
+ prompt_description:
244
+ "List of detailed profile layouts with left side image/socials and right side content/details.",
245
+ content_schema: [
246
+ {
247
+ key: "layout",
248
+ label: "Layout",
249
+ field_interface: "LayoutWidget",
250
+ },
251
+ {
252
+ key: "container",
253
+ label: "Container",
254
+ field_interface: "ContainerWidget",
255
+ },
256
+ {
257
+ key: "header_container",
258
+ label: "Header Container",
259
+ field_interface: "BoxWidget",
260
+ },
261
+ {
262
+ key: "title",
263
+ label: "Title",
264
+ field_interface: "HeadingWidget",
265
+ },
266
+ {
267
+ key: "description",
268
+ label: "Description",
269
+ field_interface: "TypographyWidget",
270
+ },
271
+ {
272
+ key: "profiles",
273
+ label: "Profiles",
274
+ field_interface: "BoxWidget",
275
+ kind: "group",
276
+ fields: [
277
+ {
278
+ key: "main_container",
279
+ label: "Main Container",
280
+ field_interface: "BoxWidget",
281
+ },
282
+ {
283
+ key: "left_container",
284
+ label: "Left Container",
285
+ field_interface: "BoxWidget",
286
+ },
287
+ {
288
+ key: "image",
289
+ label: "Image",
290
+ field_interface: "ImageWidget",
291
+ },
292
+ {
293
+ key: "social_icon",
294
+ label: "Social Icon",
295
+ kind: "group",
296
+ field_interface: "BoxWidget",
297
+ fields: [
298
+ {
299
+ key: "icon",
300
+ label: "Icon",
301
+ field_interface: "IconWidget",
302
+ },
303
+ ],
304
+ },
305
+ {
306
+ key: "ctas",
307
+ label: "Call to Action",
308
+ kind: "group",
309
+ field_interface: "BoxWidget",
310
+ fields: [
311
+ {
312
+ key: "button",
313
+ label: "Button",
314
+ field_interface: "ButtonWidget",
315
+ },
316
+ ],
317
+ },
318
+ {
319
+ key: "right_container",
320
+ label: "Right Container",
321
+ field_interface: "BoxWidget",
322
+ },
323
+ {
324
+ key: "name",
325
+ label: "Name",
326
+ field_interface: "TypographyWidget",
327
+ },
328
+ {
329
+ key: "groups",
330
+ label: "Groups",
331
+ kind: "group",
332
+ field_interface: "BoxWidget",
333
+ fields: [
334
+ {
335
+ key: "wrapper",
336
+ label: "Wrapper",
337
+ field_interface: "BoxWidget",
338
+ },
339
+ {
340
+ key: "title",
341
+ label: "Label Title",
342
+ field_interface: "TypographyWidget",
343
+ },
344
+ {
345
+ key: "description",
346
+ label: "Label Value",
347
+ field_interface: "TypographyWidget",
348
+ },
349
+ ],
350
+ },
351
+ {
352
+ key: "content_container",
353
+ label: "Content Container",
354
+ field_interface: "BoxWidget",
355
+ },
356
+ {
357
+ key: "content_description",
358
+ label: "Content Description",
359
+ field_interface: "TypographyWidget",
360
+ },
361
+ ],
362
+ },
363
+ ],
364
+ layouts: [
365
+ {
366
+ title: "Default",
367
+ key: "default",
368
+ config: {},
369
+ styles: {
370
+ layout: {
371
+ "padding-top": "5xl",
372
+ "padding-bottom": "5xl",
373
+ "padding-left": "xl",
374
+ "padding-right": "xl",
375
+ },
376
+ container: {
377
+ "max-width": "1280px",
378
+ "margin-left": "auto",
379
+ "margin-right": "auto",
380
+ },
381
+ header_container: {
382
+ display: "flex",
383
+ "flex-direction": "column",
384
+ "align-items": "center",
385
+ "margin-bottom": "5xl",
386
+ "text-align": "center",
387
+ "row-gap": "md",
388
+ },
389
+ title: {
390
+ "font-size": "4xl",
391
+ "font-weight": 700,
392
+ },
393
+ description: {
394
+ "font-size": "lg",
395
+ color: "text-2",
396
+ },
397
+ profiles_levoGroup: {
398
+ display: "grid",
399
+ "flex-direction": "column",
400
+ "row-gap": "5xl",
401
+ "grid-template-columns": "repeat(1, minmax(0, 1fr))",
402
+ "column-gap": "5xl",
403
+ },
404
+ profiles: [
405
+ {
406
+ main_container: {
407
+ display: "flex",
408
+ "flex-direction": "row",
409
+ "align-items": "flex-start",
410
+ "column-gap": "48px",
411
+ tablet: {
412
+ "flex-direction": "column",
413
+ },
414
+ },
415
+ left_container: {
416
+ display: "flex",
417
+ "flex-direction": "column",
418
+ "align-items": "center",
419
+ flex: "1",
420
+ "max-width": "400px",
421
+ tablet: {
422
+ "max-width": "100%",
423
+ },
424
+ },
425
+ image: {
426
+ "border-radius": "12px",
427
+ "margin-bottom": "24px",
428
+ width: "100%",
429
+ height: "300px",
430
+ "object-fit": "cover",
431
+ },
432
+ social_icon_levoGroup: {
433
+ display: "flex",
434
+ "column-gap": "md",
435
+ "margin-bottom": "24px",
436
+ },
437
+ social_icon: [
438
+ {
439
+ icon: {
440
+ height: "40px",
441
+ width: "40px",
442
+ "font-size": "40px",
443
+ "background-color": "background-1",
444
+ color: "text-1",
445
+ "padding-top": "8px",
446
+ "padding-bottom": "8px",
447
+ "padding-left": "8px",
448
+ "padding-right": "8px",
449
+ "border-radius": "50%",
450
+ "border-color": "border",
451
+ "border-width": "1px",
452
+ },
453
+ },
454
+ {
455
+ icon: {
456
+ height: "40px",
457
+ width: "40px",
458
+ "font-size": "40px",
459
+ "background-color": "background-1",
460
+ color: "text-1",
461
+ "padding-top": "8px",
462
+ "padding-bottom": "8px",
463
+ "padding-left": "8px",
464
+ "padding-right": "8px",
465
+ "border-radius": "50%",
466
+ "border-color": "border",
467
+ "border-width": "1px",
468
+ },
469
+ },
470
+ {
471
+ icon: {
472
+ height: "40px",
473
+ width: "40px",
474
+ "font-size": "40px",
475
+ "background-color": "background-1",
476
+ color: "text-1",
477
+ "padding-top": "8px",
478
+ "padding-bottom": "8px",
479
+ "padding-left": "8px",
480
+ "padding-right": "8px",
481
+ "border-radius": "50%",
482
+ "border-color": "border",
483
+ "border-width": "1px",
484
+ },
485
+ },
486
+ ],
487
+ right_container: {
488
+ display: "flex",
489
+ "flex-direction": "column",
490
+ "align-items": "flex-start",
491
+ flex: "2",
492
+ "row-gap": "32px",
493
+ },
494
+ name: {
495
+ "font-size": "5xl",
496
+ "font-weight": 700,
497
+ color: "icon-primary",
498
+ },
499
+ groups_levoGroup: {
500
+ display: "flex",
501
+ "column-gap": "base",
502
+ "flex-direction": "row",
503
+ flex: 1,
504
+ width: "100%",
505
+ },
506
+ groups: [
507
+ {
508
+ title: {
509
+ "font-size": "2xl",
510
+ "font-weight": 600,
511
+ "margin-bottom": "8px",
512
+ color: "text-1",
513
+ },
514
+ wrapper: {
515
+ display: "flex",
516
+ "flex-direction": "column",
517
+ "row-gap": "base",
518
+ flex: 1,
519
+ },
520
+ description: {
521
+ "font-size": "16px",
522
+ color: "text-2",
523
+ "line-height": "1.6",
524
+ },
525
+ },
526
+ {
527
+ title: {
528
+ "font-size": "2xl",
529
+ "font-weight": 600,
530
+ "margin-bottom": "8px",
531
+ color: "text-1",
532
+ },
533
+ wrapper: {
534
+ display: "flex",
535
+ "flex-direction": "column",
536
+ "row-gap": "base",
537
+ flex: 1,
538
+ },
539
+ description: {
540
+ "font-size": "16px",
541
+ color: "text-2",
542
+ "line-height": "1.6",
543
+ },
544
+ },
545
+ ],
546
+ content_container: {
547
+ display: "flex",
548
+ "flex-direction": "column",
549
+ "align-items": "flex-start",
550
+ },
551
+ content_description: {
552
+ "font-size": "16px",
553
+ color: "text-2",
554
+ "line-height": "1.6",
555
+ },
556
+ ctas: [],
557
+ },
558
+ {
559
+ main_container: {
560
+ display: "flex",
561
+ "flex-direction": "row",
562
+ "align-items": "flex-start",
563
+ "column-gap": "48px",
564
+ tablet: {
565
+ "flex-direction": "column",
566
+ },
567
+ },
568
+ left_container: {
569
+ display: "flex",
570
+ "flex-direction": "column",
571
+ "align-items": "center",
572
+ flex: "1",
573
+ "max-width": "400px",
574
+ tablet: {
575
+ "max-width": "100%",
576
+ },
577
+ },
578
+ image: {
579
+ "border-radius": "12px",
580
+ "margin-bottom": "24px",
581
+ width: "100%",
582
+ height: "300px",
583
+ "object-fit": "cover",
584
+ },
585
+ social_icon_levoGroup: {
586
+ display: "flex",
587
+ "column-gap": "md",
588
+ "margin-bottom": "24px",
589
+ },
590
+ social_icon: [
591
+ {
592
+ icon: {
593
+ height: "40px",
594
+ width: "40px",
595
+ "font-size": "40px",
596
+ "background-color": "background-1",
597
+ color: "text-1",
598
+ "padding-top": "8px",
599
+ "padding-bottom": "8px",
600
+ "padding-left": "8px",
601
+ "padding-right": "8px",
602
+ "border-radius": "50%",
603
+ "border-color": "border",
604
+ "border-width": "1px",
605
+ },
606
+ },
607
+ {
608
+ icon: {
609
+ height: "40px",
610
+ width: "40px",
611
+ "font-size": "40px",
612
+ "background-color": "background-1",
613
+ color: "text-1",
614
+ "padding-top": "8px",
615
+ "padding-bottom": "8px",
616
+ "padding-left": "8px",
617
+ "padding-right": "8px",
618
+ "border-radius": "50%",
619
+ "border-color": "border",
620
+ "border-width": "1px",
621
+ },
622
+ },
623
+ {
624
+ icon: {
625
+ height: "40px",
626
+ width: "40px",
627
+ "font-size": "40px",
628
+ "background-color": "background-1",
629
+ color: "text-1",
630
+ "padding-top": "8px",
631
+ "padding-bottom": "8px",
632
+ "padding-left": "8px",
633
+ "padding-right": "8px",
634
+ "border-radius": "50%",
635
+ "border-color": "border",
636
+ "border-width": "1px",
637
+ },
638
+ },
639
+ ],
640
+ right_container: {
641
+ display: "flex",
642
+ "flex-direction": "column",
643
+ "align-items": "flex-start",
644
+ flex: "2",
645
+ "row-gap": "32px",
646
+ },
647
+ name: {
648
+ "font-size": "5xl",
649
+ "font-weight": 700,
650
+ },
651
+ groups_levoGroup: {
652
+ display: "flex",
653
+ "column-gap": "base",
654
+ "flex-direction": "row",
655
+ flex: 1,
656
+ width: "100%",
657
+ },
658
+ groups: [
659
+ {
660
+ title: {
661
+ "font-size": "2xl",
662
+ "font-weight": 600,
663
+ "margin-bottom": "8px",
664
+ color: "text-1",
665
+ },
666
+ wrapper: {
667
+ display: "flex",
668
+ "flex-direction": "column",
669
+ "row-gap": "base",
670
+ flex: 1,
671
+ },
672
+ description: {
673
+ "font-size": "16px",
674
+ color: "text-2",
675
+ "line-height": "1.6",
676
+ },
677
+ },
678
+ {
679
+ title: {
680
+ "font-size": "2xl",
681
+ "font-weight": 600,
682
+ "margin-bottom": "8px",
683
+ color: "text-1",
684
+ },
685
+ wrapper: {
686
+ display: "flex",
687
+ "flex-direction": "column",
688
+ "row-gap": "base",
689
+ flex: 1,
690
+ },
691
+ description: {
692
+ "font-size": "16px",
693
+ color: "text-2",
694
+ "line-height": "1.6",
695
+ },
696
+ },
697
+ ],
698
+ content_container: {
699
+ display: "flex",
700
+ "flex-direction": "column",
701
+ "align-items": "flex-start",
702
+ },
703
+ content_description: {
704
+ "font-size": "16px",
705
+ color: "text-2",
706
+ "line-height": "1.6",
707
+ },
708
+ ctas: [],
709
+ },
710
+ {
711
+ main_container: {
712
+ display: "flex",
713
+ "flex-direction": "row",
714
+ "align-items": "flex-start",
715
+ "column-gap": "48px",
716
+ tablet: {
717
+ "flex-direction": "column",
718
+ },
719
+ },
720
+ left_container: {
721
+ display: "flex",
722
+ "flex-direction": "column",
723
+ "align-items": "center",
724
+ flex: "1",
725
+ "max-width": "400px",
726
+ tablet: {
727
+ "max-width": "100%",
728
+ },
729
+ },
730
+ image: {
731
+ "border-radius": "12px",
732
+ "margin-bottom": "24px",
733
+ width: "100%",
734
+ height: "300px",
735
+ "object-fit": "cover",
736
+ },
737
+ social_icon_levoGroup: {
738
+ display: "flex",
739
+ "column-gap": "md",
740
+ "margin-bottom": "24px",
741
+ },
742
+ social_icon: [
743
+ {
744
+ icon: {
745
+ height: "40px",
746
+ width: "40px",
747
+ "font-size": "40px",
748
+ "background-color": "background-1",
749
+ color: "text-1",
750
+ "padding-top": "8px",
751
+ "padding-bottom": "8px",
752
+ "padding-left": "8px",
753
+ "padding-right": "8px",
754
+ "border-radius": "50%",
755
+ "border-color": "border",
756
+ "border-width": "1px",
757
+ },
758
+ },
759
+ {
760
+ icon: {
761
+ height: "40px",
762
+ width: "40px",
763
+ "font-size": "40px",
764
+ "background-color": "background-1",
765
+ color: "text-1",
766
+ "padding-top": "8px",
767
+ "padding-bottom": "8px",
768
+ "padding-left": "8px",
769
+ "padding-right": "8px",
770
+ "border-radius": "50%",
771
+ "border-color": "border",
772
+ "border-width": "1px",
773
+ },
774
+ },
775
+ {
776
+ icon: {
777
+ height: "40px",
778
+ width: "40px",
779
+ "font-size": "40px",
780
+ "background-color": "background-1",
781
+ color: "text-1",
782
+ "padding-top": "8px",
783
+ "padding-bottom": "8px",
784
+ "padding-left": "8px",
785
+ "padding-right": "8px",
786
+ "border-radius": "50%",
787
+ "border-color": "border",
788
+ "border-width": "1px",
789
+ },
790
+ },
791
+ ],
792
+ right_container: {
793
+ display: "flex",
794
+ "flex-direction": "column",
795
+ "align-items": "flex-start",
796
+ flex: "2",
797
+ "row-gap": "32px",
798
+ },
799
+ name: {
800
+ "font-size": "5xl",
801
+ "font-weight": 700,
802
+ },
803
+ groups_levoGroup: {
804
+ display: "flex",
805
+ "column-gap": "base",
806
+ "flex-direction": "row",
807
+ flex: 1,
808
+ width: "100%",
809
+ },
810
+ groups: [
811
+ {
812
+ title: {
813
+ "font-size": "2xl",
814
+ "font-weight": 600,
815
+ "margin-bottom": "8px",
816
+ color: "text-1",
817
+ },
818
+ wrapper: {
819
+ display: "flex",
820
+ "flex-direction": "column",
821
+ "row-gap": "base",
822
+ flex: 1,
823
+ },
824
+ description: {
825
+ "font-size": "16px",
826
+ color: "text-2",
827
+ "line-height": "1.6",
828
+ },
829
+ },
830
+ {
831
+ title: {
832
+ "font-size": "2xl",
833
+ "font-weight": 600,
834
+ "margin-bottom": "8px",
835
+ color: "text-1",
836
+ },
837
+ wrapper: {
838
+ display: "flex",
839
+ "flex-direction": "column",
840
+ "row-gap": "base",
841
+ flex: 1,
842
+ },
843
+ description: {
844
+ "font-size": "16px",
845
+ color: "text-2",
846
+ "line-height": "1.6",
847
+ },
848
+ },
849
+ ],
850
+ content_container: {
851
+ display: "flex",
852
+ "flex-direction": "column",
853
+ "align-items": "flex-start",
854
+ },
855
+ content_description: {
856
+ "font-size": "16px",
857
+ color: "text-2",
858
+ "line-height": "1.6",
859
+ },
860
+ ctas: [],
861
+ },
862
+ ],
863
+ },
864
+ content: DEFAULT_CONTENT,
865
+ },
866
+ ],
867
+ };