@levo-so/blocks 0.1.75 → 0.1.76

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 (58) hide show
  1. package/package.json +4 -4
  2. package/src/blocks/about-us/about-us-1.schema.ts +0 -3
  3. package/src/blocks/blogs/ClientOnly.tsx +24 -0
  4. package/src/blocks/blogs/blog-listing-1.schema.ts +750 -111
  5. package/src/blocks/blogs/blog-listing-1.tsx +123 -41
  6. package/src/blocks/blogs/blog-listing-2.schema.ts +1127 -2640
  7. package/src/blocks/blogs/blog-listing-2.tsx +110 -23
  8. package/src/blocks/blogs/blog-listing-3.schema.ts +713 -2010
  9. package/src/blocks/blogs/blog-listing-3.tsx +118 -20
  10. package/src/blocks/blogs/blog-post-1.schema.ts +262 -32
  11. package/src/blocks/blogs/blog-post-1.tsx +217 -28
  12. package/src/blocks/cards/cards-16.schema.ts +947 -0
  13. package/src/blocks/cards/cards-16.tsx +106 -0
  14. package/src/blocks/cards/cards-17.schema.ts +1945 -0
  15. package/src/blocks/cards/cards-17.tsx +112 -0
  16. package/src/blocks/cards/cards-18.schema.ts +1040 -0
  17. package/src/blocks/cards/cards-18.tsx +102 -0
  18. package/src/blocks/cards/cards-2.schema.ts +2 -2
  19. package/src/blocks/cards/cards-3.schema.ts +3 -16
  20. package/src/blocks/cards/cards-4.schema.ts +3 -28
  21. package/src/blocks/cards/cards-7.schema.ts +4 -7
  22. package/src/blocks/cards/cards-8.schema.ts +1 -10
  23. package/src/blocks/carousel/carousel-2.schema.ts +1 -2
  24. package/src/blocks/content/content-10.schema.ts +450 -0
  25. package/src/blocks/content/content-10.tsx +43 -0
  26. package/src/blocks/content/content-3.schema.ts +22 -28
  27. package/src/blocks/content/content-5.schema.ts +0 -4
  28. package/src/blocks/cta/cta-1.schema.ts +0 -3
  29. package/src/blocks/event/event-details.schema.ts +41 -175
  30. package/src/blocks/event/event-details.tsx +45 -50
  31. package/src/blocks/event/event-listing-2.schema.ts +437 -202
  32. package/src/blocks/event/event-listing-2.tsx +86 -22
  33. package/src/blocks/event/event-listing-3.schema.ts +232 -196
  34. package/src/blocks/event/event-listing-3.tsx +62 -29
  35. package/src/blocks/event/event-listing-4.schema.ts +314 -2824
  36. package/src/blocks/event/event-listing-4.tsx +68 -32
  37. package/src/blocks/event/event-listing.schema.ts +176 -1032
  38. package/src/blocks/event/event-listing.tsx +59 -25
  39. package/src/blocks/features/features-1/variants/stylized-cards-v2.ts +0 -1
  40. package/src/blocks/features/features-4.schema.ts +4 -14
  41. package/src/blocks/features/features-5.schema.ts +30 -51
  42. package/src/blocks/features/features-6.schema.ts +0 -1
  43. package/src/blocks/filter-listing/filter-listing-1.schema.ts +1 -3
  44. package/src/blocks/footer/footer-3.schema.ts +6 -14
  45. package/src/blocks/hero/hero-11.schema.ts +25 -54
  46. package/src/blocks/hero/hero-5.schema.ts +2 -6
  47. package/src/blocks/hero/hero-6.schema.ts +1 -10
  48. package/src/blocks/index.ts +4 -0
  49. package/src/blocks/logos/logos-1.schema.ts +0 -30
  50. package/src/blocks/pricing/pricing-1.schema.ts +0 -3
  51. package/src/blocks/stats/variants/default.ts +4 -5
  52. package/src/blocks/team/team-2.schema.ts +57 -154
  53. package/src/blocks/team/team-3.schema.ts +14 -31
  54. package/src/blocks/testimonial/testimonial-4.schema.ts +67 -152
  55. package/src/blocks/testimonial/testimonial-5/variants/default.ts +0 -1
  56. package/src/blocks/testimonial/testimonial-5/variants/testimonialWithLogo.ts +0 -1
  57. package/src/blocks/testimonial/testimonial-5/variants/testimonialWithRatings.ts +0 -1
  58. package/src/schemas/blocks.ts +8 -0
@@ -18,7 +18,6 @@ const DEFAULT_CONTENT = {
18
18
  title: "Events",
19
19
  description:
20
20
  "Stay updated on our upcoming community gatherings, workshops, and networking events!",
21
- "cta-button": "View all",
22
21
  events: [
23
22
  {
24
23
  eventWrapper: null,
@@ -43,23 +42,19 @@ const DEFAULT_CONTENT = {
43
42
  title: "Afghan American Inauguration",
44
43
  description:
45
44
  "Join us for this historic celebration of community leadership and cultural pride.",
46
- details: [
47
- {
48
- detailWrapper: null,
49
- icon: DUMMY_ICON,
50
- text: "3:00 PM - 6:00 PM",
51
- },
52
- {
53
- detailWrapper: null,
54
- icon: DUMMY_ICON,
55
- text: "2200 Harvard St, Sacramento, CA 95815",
56
- },
57
- {
58
- detailWrapper: null,
59
- icon: DUMMY_ICON,
60
- text: "11 Apr",
61
- },
62
- ],
45
+ details_container: null,
46
+ date_detail_wrapper: null,
47
+ date_icon: DUMMY_ICON,
48
+ date_text: "Apr 11, 2024",
49
+ time_detail_wrapper: null,
50
+ time_icon: DUMMY_ICON,
51
+ time_text: "3:00 PM - 6:00 PM",
52
+ location_detail_wrapper: null,
53
+ location_icon: DUMMY_ICON,
54
+ location_text: "2200 Harvard St, Sacramento, CA 95815",
55
+ type_detail_wrapper: null,
56
+ type_icon: DUMMY_ICON,
57
+ type_text: "In-Person Event",
63
58
  },
64
59
  {
65
60
  eventWrapper: null,
@@ -82,29 +77,26 @@ const DEFAULT_CONTENT = {
82
77
  "content-wrapper": null,
83
78
  title: "Community Health Workshop",
84
79
  description: "Learn about wellness resources and health services available in our community.",
85
- details: [
86
- {
87
- detailWrapper: null,
88
- icon: DUMMY_ICON,
89
- text: "10:00 AM - 2:00 PM",
90
- },
91
- {
92
- detailWrapper: null,
93
- icon: DUMMY_ICON,
94
- text: "1500 Main St, Sacramento, CA 95814",
95
- },
96
- {
97
- detailWrapper: null,
98
- icon: DUMMY_ICON,
99
- text: "25 Apr",
100
- },
101
- ],
80
+ details_container: null,
81
+ date_detail_wrapper: null,
82
+ date_icon: DUMMY_ICON,
83
+ date_text: "Apr 25, 2024",
84
+ time_detail_wrapper: null,
85
+ time_icon: DUMMY_ICON,
86
+ time_text: "10:00 AM - 2:00 PM",
87
+ location_detail_wrapper: null,
88
+ location_icon: DUMMY_ICON,
89
+ location_text: "1500 Main St, Sacramento, CA 95814",
90
+ type_detail_wrapper: null,
91
+ type_icon: DUMMY_ICON,
92
+ type_text: "Virtual Event",
102
93
  },
103
94
  ],
104
95
  paginationWrapper: null,
105
96
  paginationLeftButton: "Previous",
106
97
  paginationText: "",
107
98
  paginationRightButton: "Next",
99
+ "cta-buttons": [{ "cta-button": "Learn More" }, { "cta-button": "View All" }],
108
100
  };
109
101
 
110
102
  export type IEventListing2Content = typeof DEFAULT_CONTENT;
@@ -115,7 +107,7 @@ export const EventListing2: IBlock = {
115
107
  key: "event-listing-2",
116
108
  version: "v1",
117
109
  prompt_description:
118
- "Event listing with header section containing title, description and CTA button, followed by event cards with images and detailed information including time, location, and date with icons",
110
+ "Event listing with header section containing title and description, followed by event cards with images and 4 auto-populated detail items (date, time, location, event type) with manually configurable icons. Uses opinionated integration with real event data.",
119
111
  content_schema: [
120
112
  {
121
113
  key: "layout",
@@ -176,21 +168,35 @@ export const EventListing2: IBlock = {
176
168
  },
177
169
  },
178
170
  {
179
- key: "cta-button",
180
- label: "CTA Button",
181
- field_interface: "ButtonWidget",
182
- hint: {
183
- prompt_description:
184
- "Call-to-action button that encourages users to explore more events. Should be action-oriented.",
185
- min_characters: 6,
186
- max_characters: 15,
187
- },
171
+ key: "cta-buttons",
172
+ label: "CTA Buttons",
173
+ field_interface: "BoxWidget",
174
+ kind: "group",
175
+ fields: [
176
+ {
177
+ key: "cta-button",
178
+ label: "CTA Button",
179
+ field_interface: "ButtonWidget",
180
+ hint: {
181
+ prompt_description:
182
+ "Call-to-action button that encourages users to explore more events. Should be action-oriented.",
183
+ min_characters: 6,
184
+ max_characters: 15,
185
+ },
186
+ },
187
+ ],
188
188
  },
189
+
189
190
  {
190
191
  key: "events",
191
192
  label: "Events",
192
193
  field_interface: "BoxWidget",
193
194
  kind: "group",
195
+ options: {
196
+ module_field: {
197
+ module: "event",
198
+ },
199
+ },
194
200
  fields: [
195
201
  {
196
202
  key: "eventWrapper",
@@ -208,6 +214,12 @@ export const EventListing2: IBlock = {
208
214
  size: "medium",
209
215
  usecase: "hero",
210
216
  },
217
+ options: {
218
+ module_field: {
219
+ module: "event",
220
+ key: "cover_image",
221
+ },
222
+ },
211
223
  },
212
224
  {
213
225
  key: "content-wrapper",
@@ -223,6 +235,12 @@ export const EventListing2: IBlock = {
223
235
  min_characters: 15,
224
236
  max_characters: 50,
225
237
  },
238
+ options: {
239
+ module_field: {
240
+ module: "event",
241
+ key: "title",
242
+ },
243
+ },
226
244
  },
227
245
  {
228
246
  key: "description",
@@ -234,47 +252,149 @@ export const EventListing2: IBlock = {
234
252
  min_characters: 40,
235
253
  max_characters: 120,
236
254
  },
255
+ options: {
256
+ module_field: {
257
+ module: "event",
258
+ key: "description",
259
+ },
260
+ },
261
+ },
262
+ {
263
+ key: "details_container",
264
+ label: "Details Container",
265
+ field_interface: "BoxWidget",
237
266
  },
238
267
  {
239
- key: "details",
240
- label: "Event Details",
268
+ key: "date_detail_wrapper",
269
+ label: "Date Detail Wrapper",
241
270
  field_interface: "BoxWidget",
242
- kind: "group",
243
- fields: [
244
- {
245
- key: "detailWrapper",
246
- label: "Detail Wrapper",
247
- field_interface: "BoxWidget",
271
+ },
272
+ {
273
+ key: "date_icon",
274
+ label: "Date Icon",
275
+ field_interface: "IconWidget",
276
+ hint: {
277
+ prompt_description: "Icon for the event date. Typically a calendar icon.",
278
+ orientation: "square",
279
+ size: "icon",
280
+ usecase: "icon",
281
+ },
282
+ },
283
+ {
284
+ key: "date_text",
285
+ label: "Date Text (Auto-populated)",
286
+ field_interface: "TypographyWidget",
287
+ hint: {
288
+ prompt_description:
289
+ "Event date automatically populated from starts_at field in format 'MMM D, YYYY'. This text is auto-generated and not editable.",
290
+ min_characters: 5,
291
+ max_characters: 50,
292
+ },
293
+ options: {
294
+ module_field: {
295
+ module: "event",
296
+ key: "starts_at",
248
297
  },
249
- {
250
- key: "icon",
251
- label: "Detail Icon",
252
- field_interface: "ImageWidget",
253
- hint: {
254
- prompt_description:
255
- "Icon representing the type of detail (time, location, date). Should be simple and recognizable.",
256
- orientation: "square",
257
- size: "icon",
258
- usecase: "icon",
259
- },
298
+ },
299
+ },
300
+ {
301
+ key: "time_detail_wrapper",
302
+ label: "Time Detail Wrapper",
303
+ field_interface: "BoxWidget",
304
+ },
305
+ {
306
+ key: "time_icon",
307
+ label: "Time Icon",
308
+ field_interface: "IconWidget",
309
+ hint: {
310
+ prompt_description: "Icon for the event time. Typically a clock icon.",
311
+ orientation: "square",
312
+ size: "icon",
313
+ usecase: "icon",
314
+ },
315
+ },
316
+ {
317
+ key: "time_text",
318
+ label: "Time Text (Auto-populated)",
319
+ field_interface: "TypographyWidget",
320
+ hint: {
321
+ prompt_description:
322
+ "Event time range automatically populated from starts_at and ends_at fields in format 'h:mm A - h:mm A'. This text is auto-generated and not editable.",
323
+ min_characters: 5,
324
+ max_characters: 50,
325
+ },
326
+ options: {
327
+ module_field: {
328
+ module: "event",
329
+ key: "starts_at",
260
330
  },
261
- {
262
- key: "text",
263
- label: "Detail Text",
264
- field_interface: "TypographyWidget",
265
- hint: {
266
- prompt_description:
267
- "Detail information such as time, location, or date. Should be clear and specific.",
268
- min_characters: 5,
269
- max_characters: 50,
270
- },
331
+ },
332
+ },
333
+ {
334
+ key: "location_detail_wrapper",
335
+ label: "Location Detail Wrapper",
336
+ field_interface: "BoxWidget",
337
+ },
338
+ {
339
+ key: "location_icon",
340
+ label: "Location Icon",
341
+ field_interface: "IconWidget",
342
+ hint: {
343
+ prompt_description: "Icon for the event location. Typically a map pin icon.",
344
+ orientation: "square",
345
+ size: "icon",
346
+ usecase: "icon",
347
+ },
348
+ },
349
+ {
350
+ key: "location_text",
351
+ label: "Location Text (Auto-populated)",
352
+ field_interface: "TypographyWidget",
353
+ hint: {
354
+ prompt_description:
355
+ "Event location automatically populated from location.place_name field. Shows 'Location TBA' if not available. This text is auto-generated and not editable.",
356
+ min_characters: 5,
357
+ max_characters: 50,
358
+ },
359
+ options: {
360
+ module_field: {
361
+ module: "event",
362
+ key: "location",
271
363
  },
272
- ],
364
+ },
365
+ },
366
+ {
367
+ key: "type_detail_wrapper",
368
+ label: "Event Type Detail Wrapper",
369
+ field_interface: "BoxWidget",
370
+ },
371
+ {
372
+ key: "type_icon",
373
+ label: "Event Type Icon",
374
+ field_interface: "IconWidget",
375
+ hint: {
376
+ prompt_description:
377
+ "Icon for the event type. Typically a computer/monitor icon for virtual or location pin for in-person.",
378
+ orientation: "square",
379
+ size: "icon",
380
+ usecase: "icon",
381
+ },
382
+ },
383
+ {
384
+ key: "type_text",
385
+ label: "Event Type Text (Auto-populated)",
386
+ field_interface: "TypographyWidget",
273
387
  hint: {
274
388
  prompt_description:
275
- "Collection of event details including time, location, and date with corresponding icons.",
276
- min_items: 3,
277
- max_items: 3,
389
+ "Event type automatically populated from kind field. Shows 'Virtual Event' or 'In-Person Event'. This text is auto-generated and not editable.",
390
+ min_characters: 5,
391
+ max_characters: 50,
392
+ },
393
+ options: {
394
+ module_field: {
395
+ module: "event",
396
+ key: "kind",
397
+ },
278
398
  },
279
399
  },
280
400
  ],
@@ -339,26 +459,34 @@ export const EventListing2: IBlock = {
339
459
  },
340
460
  },
341
461
  ],
462
+ source: [{ required: true, module: "event", type: "block", field_key: "events" }],
342
463
  layouts: [
343
464
  {
344
465
  key: "default",
345
466
  title: "Default",
346
467
  styles: {
347
- layout: {
348
- "padding-top": "4xl",
349
- "padding-bottom": "4xl",
350
- "padding-left": "xl",
351
- "padding-right": "xl",
352
- filter: "none",
468
+ "cta-buttons_levoGroup": {
469
+ display: "flex",
470
+ "column-gap": "md",
471
+ "align-items": "center",
353
472
  },
473
+ "cta-buttons": [
474
+ {
475
+ "cta-button": {
476
+ "white-space": "nowrap",
477
+ },
478
+ },
479
+ {
480
+ "cta-button": {
481
+ "white-space": "nowrap",
482
+ },
483
+ },
484
+ ],
485
+ layout: {},
354
486
  container: {
355
- "max-width": "1280px",
356
- "margin-left": "auto",
357
- "margin-right": "auto",
358
487
  display: "flex",
359
488
  "flex-direction": "column",
360
489
  "row-gap": "3xl",
361
- filter: "none",
362
490
  },
363
491
  "header-section": {
364
492
  display: "flex",
@@ -367,34 +495,32 @@ export const EventListing2: IBlock = {
367
495
  "text-align": "center",
368
496
  "row-gap": "lg",
369
497
  "margin-bottom": "xl",
370
- filter: "none",
371
498
  "justify-content": "space-between",
372
499
  tablet: {
373
500
  "flex-direction": "column",
501
+ "align-items": "start",
374
502
  },
375
503
  mobile: {
376
504
  "flex-direction": "column",
505
+ "align-items": "center",
377
506
  },
507
+ "column-gap": "base",
378
508
  },
379
509
  "header-content": {
380
510
  display: "flex",
381
511
  "flex-direction": "column",
382
- "row-gap": "base",
512
+ "row-gap": "none",
383
513
  "text-align": "left",
384
514
  mobile: {
385
515
  "text-align": "center",
386
516
  },
517
+ width: "100%",
518
+ "justify-content": "start",
387
519
  },
388
- title: {
389
- color: "text-1",
390
- },
520
+ title: {},
391
521
  description: {
392
- "font-size": "lg",
393
- color: "text-2",
394
522
  "max-width": "600px",
395
- "line-height": "1.6",
396
523
  },
397
-
398
524
  events_levoGroup: {
399
525
  display: "grid",
400
526
  "grid-template-columns": "repeat(2, minmax(0, 1fr))",
@@ -406,7 +532,6 @@ export const EventListing2: IBlock = {
406
532
  mobile: {
407
533
  "grid-template-columns": "repeat(1, minmax(0, 1fr))",
408
534
  },
409
- filter: "none",
410
535
  },
411
536
  paginationWrapper: {
412
537
  width: "100%",
@@ -415,110 +540,94 @@ export const EventListing2: IBlock = {
415
540
  "column-gap": "lg",
416
541
  "align-items": "center",
417
542
  },
418
- events: Array(2)
419
- ?.fill(0)
420
- .map((v) => {
421
- return {
422
- eventWrapper: {
423
- "background-color": "white",
424
- "border-radius": "xl",
425
- overflow: "hidden",
426
- "box-shadow": "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
427
- display: "flex",
428
- "flex-direction": "column",
429
- filter: "none",
430
- "padding-bottom": "none",
431
- height: "min-content",
432
- },
433
- image: {
434
- width: "100%",
435
- height: "auto",
436
- "object-fit": "cover",
437
- filter: "none",
438
- "min-height": "260px",
439
- },
440
- "content-wrapper": {
441
- "padding-left": "xl",
442
- "padding-right": "xl",
443
- "padding-top": "lg",
444
- "padding-bottom": "xl",
445
- display: "flex",
446
- "flex-direction": "column",
447
- "row-gap": "base",
448
- filter: "none",
449
- "background-color": "white",
450
- },
451
- title: {
452
- "font-size": "xl",
453
- "font-weight": "600",
454
- color: "text-1",
455
- "line-height": "1.3",
456
- filter: "none",
457
- },
458
- description: {
459
- "font-size": "base",
460
- color: "text-2",
461
- "line-height": "1.5",
462
- "margin-bottom": "sm",
463
- filter: "none",
464
- display: "none",
465
- },
466
- details_levoGroup: {
467
- display: "flex",
468
- "flex-direction": "column",
469
- "row-gap": "xs",
470
- filter: "none",
471
- },
472
- details: [
473
- {
474
- detailWrapper: {
475
- display: "flex",
476
- "align-items": "center",
477
- "column-gap": "sm",
478
- filter: "none",
479
- },
480
- icon: {
481
- width: "22px",
482
- height: "22px",
483
- "flex-shrink": "0",
484
- filter: "none",
485
- },
486
- text: {
487
- "font-size": "sm",
488
- color: "text-2",
489
- "line-height": "1.4",
490
- },
491
- },
492
- {
493
- icon: {
494
- filter: "none",
495
- width: "22px",
496
- height: "22px",
497
- },
498
- detailWrapper: {
499
- filter: "none",
500
- display: "flex",
501
- "column-gap": "sm",
502
- },
503
- text: {
504
- filter: "none",
505
- },
506
- },
507
- {
508
- icon: {
509
- filter: "none",
510
- height: "22px",
511
- width: "22px",
512
- },
513
- detailWrapper: {
514
- filter: "none",
515
- display: "flex",
516
- "column-gap": "sm",
517
- },
518
- },
519
- ],
520
- };
521
- }),
543
+ events_levoGroupItem: {
544
+ eventWrapper: {
545
+ "background-color": "white",
546
+ "border-radius": "xl",
547
+ overflow: "hidden",
548
+ "box-shadow": "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
549
+ display: "flex",
550
+ "flex-direction": "column",
551
+ "padding-bottom": "none",
552
+ height: "min-content",
553
+ },
554
+ image: {
555
+ width: "100%",
556
+ height: "auto",
557
+ "object-fit": "cover",
558
+ "min-height": "260px",
559
+ "max-height": "260px",
560
+ },
561
+ "content-wrapper": {
562
+ "padding-left": "xl",
563
+ "padding-right": "xl",
564
+ "padding-top": "lg",
565
+ "padding-bottom": "xl",
566
+ display: "flex",
567
+ "flex-direction": "column",
568
+ "row-gap": "base",
569
+ "background-color": "white",
570
+ },
571
+ title: {
572
+ "font-weight": "600",
573
+ },
574
+ description: {
575
+ "margin-bottom": "sm",
576
+ display: "none",
577
+ "-webkit-line-clamp": "3",
578
+ "-webkit-box-orient": "vertical",
579
+ overflow: "hidden",
580
+ },
581
+ details_container: {
582
+ display: "flex",
583
+ "flex-direction": "column",
584
+ "row-gap": "xs",
585
+ },
586
+ date_detail_wrapper: {
587
+ display: "flex",
588
+ "align-items": "center",
589
+ "column-gap": "sm",
590
+ },
591
+ date_icon: {
592
+ width: "22px",
593
+ height: "22px",
594
+ "flex-shrink": "0",
595
+ },
596
+ date_text: {},
597
+ time_detail_wrapper: {
598
+ display: "flex",
599
+ "align-items": "center",
600
+ "column-gap": "sm",
601
+ },
602
+ time_icon: {
603
+ width: "22px",
604
+ height: "22px",
605
+ "flex-shrink": "0",
606
+ },
607
+ time_text: {},
608
+ location_detail_wrapper: {
609
+ display: "flex",
610
+ "align-items": "center",
611
+ "column-gap": "sm",
612
+ },
613
+ location_icon: {
614
+ width: "22px",
615
+ height: "22px",
616
+ "flex-shrink": "0",
617
+ },
618
+ location_text: {},
619
+ type_detail_wrapper: {
620
+ display: "flex",
621
+ "align-items": "center",
622
+ "column-gap": "sm",
623
+ },
624
+ type_icon: {
625
+ width: "22px",
626
+ height: "22px",
627
+ "flex-shrink": "0",
628
+ },
629
+ type_text: {},
630
+ },
522
631
  },
523
632
  content: DEFAULT_CONTENT,
524
633
  config: {
@@ -530,6 +639,132 @@ export const EventListing2: IBlock = {
530
639
  level: 2,
531
640
  },
532
641
  },
642
+ description: {
643
+ selectedVariants: {
644
+ Typography_Variants: "Large",
645
+ },
646
+ },
647
+ "cta-buttons": [
648
+ {
649
+ "cta-button": {
650
+ selectedVariants: {},
651
+ },
652
+ },
653
+ {
654
+ "cta-button": {
655
+ selectedVariants: {
656
+ Button_Variants: "Secondary",
657
+ },
658
+ },
659
+ },
660
+ ],
661
+ events: [
662
+ {
663
+ title: {
664
+ heading: {
665
+ level: "4",
666
+ },
667
+ selectedVariants: {
668
+ Heading_Level: "H5",
669
+ },
670
+ },
671
+ description: {
672
+ selectedVariants: {
673
+ Typography_Variants: "Body",
674
+ },
675
+ },
676
+ date_text: {
677
+ selectedVariants: {
678
+ Typography_Variants: "Small",
679
+ },
680
+ },
681
+ time_text: {
682
+ selectedVariants: {
683
+ Typography_Variants: "Small",
684
+ },
685
+ },
686
+ location_text: {
687
+ selectedVariants: {
688
+ Typography_Variants: "Small",
689
+ },
690
+ },
691
+ type_text: {
692
+ selectedVariants: {
693
+ Typography_Variants: "Small",
694
+ },
695
+ },
696
+ },
697
+ {
698
+ title: {
699
+ heading: {
700
+ level: "4",
701
+ },
702
+ selectedVariants: {
703
+ Heading_Level: "H5",
704
+ },
705
+ },
706
+ description: {
707
+ selectedVariants: {
708
+ Typography_Variants: "Body",
709
+ },
710
+ },
711
+ date_text: {
712
+ selectedVariants: {
713
+ Typography_Variants: "Small",
714
+ },
715
+ },
716
+ time_text: {
717
+ selectedVariants: {
718
+ Typography_Variants: "Small",
719
+ },
720
+ },
721
+ location_text: {
722
+ selectedVariants: {
723
+ Typography_Variants: "Small",
724
+ },
725
+ },
726
+ type_text: {
727
+ selectedVariants: {
728
+ Typography_Variants: "Small",
729
+ },
730
+ },
731
+ },
732
+ {
733
+ title: {
734
+ heading: {
735
+ level: "4",
736
+ },
737
+ selectedVariants: {
738
+ Heading_Level: "H5",
739
+ },
740
+ },
741
+ description: {
742
+ selectedVariants: {
743
+ Typography_Variants: "Body",
744
+ },
745
+ },
746
+ date_text: {
747
+ selectedVariants: {
748
+ Typography_Variants: "Small",
749
+ },
750
+ },
751
+ time_text: {
752
+ selectedVariants: {
753
+ Typography_Variants: "Small",
754
+ },
755
+ },
756
+ location_text: {
757
+ selectedVariants: {
758
+ Typography_Variants: "Small",
759
+ },
760
+ },
761
+ type_text: {
762
+ selectedVariants: {
763
+ Typography_Variants: "Small",
764
+ },
765
+ },
766
+ },
767
+ ],
533
768
  },
534
769
  },
535
770
  ],