@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,451 @@
1
+ import type { IBlockLayouts } from "@levo-so/studio";
2
+
3
+ const DEFAULT_CONTENT = {
4
+ layout: null,
5
+ container: null,
6
+ text_wrapper: null,
7
+ title: "Our Healthcare Specialties",
8
+ description:
9
+ "Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia consequat duis enim velit mollit. Exercitation veniam.",
10
+ specialties: [
11
+ {
12
+ content_wrapper: null,
13
+ text_wrapper: null,
14
+ icon_wrapper: null,
15
+ title: "<p>Plan Your Dream Day With Us</p>",
16
+ description: "",
17
+ caption: " ",
18
+ icon: {
19
+ kind: "icon",
20
+ data: {
21
+ id: "book-saved",
22
+ label: "Book Saved",
23
+ tags: ["archive", "book", "custom", "directional", "saved"],
24
+ svgCode:
25
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M11.9998 22.08C11.6998 22.08 11.3998 22.01 11.1498 21.87C9.27978 20.85 5.99976 19.77 3.93976 19.5L3.64978 19.46C2.33978 19.3 1.25977 18.07 1.25977 16.74V4.65999C1.25977 3.86999 1.56977 3.15002 2.13977 2.63002C2.70977 2.11002 3.44974 1.86001 4.22974 1.93001C6.41974 2.11001 9.73975 3.21002 11.6198 4.38002L11.8597 4.52003C11.9297 4.55003 12.0798 4.56003 12.1398 4.52003L12.2997 4.42C12.9697 4 13.8097 3.58999 14.7297 3.21999C14.9597 3.12999 15.2197 3.16 15.4297 3.3C15.6397 3.44 15.7598 3.67 15.7598 3.92V6.59999L16.5898 6.05C16.8398 5.88 17.1697 5.88 17.4197 6.05L18.2498 6.59999V2.78004C18.2498 2.42004 18.5097 2.10999 18.8597 2.03999C19.1497 1.98999 19.4398 1.95001 19.6998 1.93001C19.7198 1.93001 19.7998 1.93001 19.8198 1.93001C20.5498 1.87001 21.2997 2.12003 21.8597 2.64003C22.4297 3.16003 22.7397 3.88 22.7397 4.67V16.74C22.7397 18.08 21.6598 19.3 20.3398 19.46L20.0098 19.5C17.9498 19.77 14.6498 20.86 12.8198 21.87C12.5998 22.01 12.2998 22.08 11.9998 22.08ZM3.97974 3.40999C3.65974 3.40999 3.36977 3.51999 3.13977 3.73C2.88977 3.96 2.74976 4.28999 2.74976 4.65999V16.74C2.74976 17.33 3.25977 17.9 3.82977 17.98L4.12976 18.02C6.37976 18.32 9.82977 19.45 11.8298 20.55C11.9198 20.59 12.0497 20.6 12.0997 20.58C14.1097 19.47 17.5698 18.33 19.8298 18.03L20.1697 17.99C20.7397 17.92 21.2498 17.34 21.2498 16.75V4.68001C21.2498 4.31001 21.1097 3.99001 20.8597 3.75001C20.6097 3.52001 20.2598 3.41001 19.8998 3.43001C19.8698 3.43001 19.7798 3.43001 19.7598 3.43001V8.00001C19.7598 8.28001 19.6097 8.52999 19.3597 8.65999C19.1097 8.78999 18.8198 8.78001 18.5898 8.62001L17.0098 7.57002L15.4297 8.62001C15.1997 8.77001 14.9097 8.78999 14.6597 8.65999C14.4197 8.52999 14.2598 8.28001 14.2598 8.00001V5.07002C13.8298 5.28002 13.4397 5.49002 13.0997 5.69002L12.9398 5.78999C12.3898 6.12999 11.6098 6.13 11.0798 5.8L10.8398 5.65004C9.14978 4.59004 6.06974 3.56999 4.10974 3.40999C4.05974 3.40999 4.01974 3.40999 3.97974 3.40999Z" fill="var(--color-icon-primary)"/>\n<path d="M12 21.24C11.59 21.24 11.25 20.9 11.25 20.49V5.48999C11.25 5.07999 11.59 4.73999 12 4.73999C12.41 4.73999 12.75 5.07999 12.75 5.48999V20.49C12.75 20.91 12.41 21.24 12 21.24Z" fill="var(--color-icon-primary)"/>\n<path d="M19 8.74999C18.85 8.74999 18.71 8.70998 18.58 8.61998L17 7.57L15.42 8.61998C15.19 8.76998 14.9 8.78996 14.65 8.65996C14.41 8.52996 14.25 8.27999 14.25 7.99999V3.91997C14.25 3.60997 14.44 3.33996 14.72 3.21996C16.1 2.66996 17.61 2.23997 18.88 2.03997C19.1 1.99997 19.32 2.07001 19.49 2.21001C19.66 2.35001 19.75 2.56002 19.75 2.78002V7.99999C19.75 8.27999 19.6 8.52996 19.35 8.65996C19.24 8.71996 19.12 8.74999 19 8.74999ZM17 5.91997C17.14 5.91997 17.29 5.95998 17.42 6.04998L18.25 6.59996V3.68999C17.45 3.86999 16.58 4.12999 15.75 4.43999V6.59996L16.58 6.04998C16.71 5.95998 16.86 5.91997 17 5.91997Z" fill="var(--color-icon-primary)"/>\n</svg>',
26
+ },
27
+ },
28
+ cta: "Book a Call ",
29
+ cta_rightIcon: {
30
+ kind: "icon",
31
+ data: {
32
+ id: "arrow-right-1",
33
+ label: "Arrow Right 1",
34
+ tags: ["arrow", "custom", "directional", "right"],
35
+ svgCode:
36
+ '<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>',
37
+ },
38
+ },
39
+ },
40
+ {
41
+ content_wrapper: null,
42
+ text_wrapper: null,
43
+ icon_wrapper: null,
44
+ title: "<p>Follow Us On Social Media For Update</p>",
45
+ description: "",
46
+ caption: " ",
47
+ icon: {
48
+ kind: "icon",
49
+ data: {
50
+ id: "book-saved",
51
+ label: "Book Saved",
52
+ tags: ["archive", "book", "custom", "directional", "saved"],
53
+ svgCode:
54
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M11.9998 22.08C11.6998 22.08 11.3998 22.01 11.1498 21.87C9.27978 20.85 5.99976 19.77 3.93976 19.5L3.64978 19.46C2.33978 19.3 1.25977 18.07 1.25977 16.74V4.65999C1.25977 3.86999 1.56977 3.15002 2.13977 2.63002C2.70977 2.11002 3.44974 1.86001 4.22974 1.93001C6.41974 2.11001 9.73975 3.21002 11.6198 4.38002L11.8597 4.52003C11.9297 4.55003 12.0798 4.56003 12.1398 4.52003L12.2997 4.42C12.9697 4 13.8097 3.58999 14.7297 3.21999C14.9597 3.12999 15.2197 3.16 15.4297 3.3C15.6397 3.44 15.7598 3.67 15.7598 3.92V6.59999L16.5898 6.05C16.8398 5.88 17.1697 5.88 17.4197 6.05L18.2498 6.59999V2.78004C18.2498 2.42004 18.5097 2.10999 18.8597 2.03999C19.1497 1.98999 19.4398 1.95001 19.6998 1.93001C19.7198 1.93001 19.7998 1.93001 19.8198 1.93001C20.5498 1.87001 21.2997 2.12003 21.8597 2.64003C22.4297 3.16003 22.7397 3.88 22.7397 4.67V16.74C22.7397 18.08 21.6598 19.3 20.3398 19.46L20.0098 19.5C17.9498 19.77 14.6498 20.86 12.8198 21.87C12.5998 22.01 12.2998 22.08 11.9998 22.08ZM3.97974 3.40999C3.65974 3.40999 3.36977 3.51999 3.13977 3.73C2.88977 3.96 2.74976 4.28999 2.74976 4.65999V16.74C2.74976 17.33 3.25977 17.9 3.82977 17.98L4.12976 18.02C6.37976 18.32 9.82977 19.45 11.8298 20.55C11.9198 20.59 12.0497 20.6 12.0997 20.58C14.1097 19.47 17.5698 18.33 19.8298 18.03L20.1697 17.99C20.7397 17.92 21.2498 17.34 21.2498 16.75V4.68001C21.2498 4.31001 21.1097 3.99001 20.8597 3.75001C20.6097 3.52001 20.2598 3.41001 19.8998 3.43001C19.8698 3.43001 19.7798 3.43001 19.7598 3.43001V8.00001C19.7598 8.28001 19.6097 8.52999 19.3597 8.65999C19.1097 8.78999 18.8198 8.78001 18.5898 8.62001L17.0098 7.57002L15.4297 8.62001C15.1997 8.77001 14.9097 8.78999 14.6597 8.65999C14.4197 8.52999 14.2598 8.28001 14.2598 8.00001V5.07002C13.8298 5.28002 13.4397 5.49002 13.0997 5.69002L12.9398 5.78999C12.3898 6.12999 11.6098 6.13 11.0798 5.8L10.8398 5.65004C9.14978 4.59004 6.06974 3.56999 4.10974 3.40999C4.05974 3.40999 4.01974 3.40999 3.97974 3.40999Z" fill="var(--color-icon-primary)"/>\n<path d="M12 21.24C11.59 21.24 11.25 20.9 11.25 20.49V5.48999C11.25 5.07999 11.59 4.73999 12 4.73999C12.41 4.73999 12.75 5.07999 12.75 5.48999V20.49C12.75 20.91 12.41 21.24 12 21.24Z" fill="var(--color-icon-primary)"/>\n<path d="M19 8.74999C18.85 8.74999 18.71 8.70998 18.58 8.61998L17 7.57L15.42 8.61998C15.19 8.76998 14.9 8.78996 14.65 8.65996C14.41 8.52996 14.25 8.27999 14.25 7.99999V3.91997C14.25 3.60997 14.44 3.33996 14.72 3.21996C16.1 2.66996 17.61 2.23997 18.88 2.03997C19.1 1.99997 19.32 2.07001 19.49 2.21001C19.66 2.35001 19.75 2.56002 19.75 2.78002V7.99999C19.75 8.27999 19.6 8.52996 19.35 8.65996C19.24 8.71996 19.12 8.74999 19 8.74999ZM17 5.91997C17.14 5.91997 17.29 5.95998 17.42 6.04998L18.25 6.59996V3.68999C17.45 3.86999 16.58 4.12999 15.75 4.43999V6.59996L16.58 6.04998C16.71 5.95998 16.86 5.91997 17 5.91997Z" fill="var(--color-icon-primary)"/>\n</svg>',
55
+ },
56
+ },
57
+ cta: "Contact us",
58
+ cta_rightIcon: {
59
+ kind: "icon",
60
+ data: {
61
+ id: "arrow-right-1",
62
+ label: "Arrow Right 1",
63
+ tags: ["arrow", "custom", "directional", "right"],
64
+ svgCode:
65
+ '<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>',
66
+ },
67
+ },
68
+ },
69
+ ],
70
+ };
71
+
72
+ export const stylizedCardsV3Features1Variant: IBlockLayouts = {
73
+ key: "stylized_cards_v3",
74
+ title: "Stylized Cards V3",
75
+ styles: {
76
+ layout: {
77
+ display: "flex",
78
+ width: "100%",
79
+ padding: "80px 112px",
80
+ "flex-direction": "column",
81
+ "align-items": "center",
82
+ tablet: {
83
+ padding: "60px 60px",
84
+ },
85
+ mobile: {
86
+ padding: "40px",
87
+ },
88
+ },
89
+ container: {
90
+ display: "flex",
91
+ "flex-direction": "column",
92
+ "align-items": "center",
93
+ "row-gap": "8xl",
94
+ mobile: {
95
+ "row-gap": "5xl",
96
+ },
97
+ "max-width": "auto",
98
+ },
99
+ text_wrapper: {
100
+ display: "none",
101
+ "flex-direction": "column",
102
+ "row-gap": "lg",
103
+ mobile: {
104
+ "row-gap": "sm",
105
+ },
106
+ },
107
+ label: {
108
+ "text-align": "center",
109
+ },
110
+ title: {
111
+ "text-align": "center",
112
+ color: "text-1",
113
+ },
114
+ description: {
115
+ "max-width": "672px",
116
+ "text-align": "center",
117
+ color: "text-2",
118
+ },
119
+ specialties_levoGroup: {
120
+ display: "flex",
121
+ width: "100%",
122
+ "grid-template-columns": "repeat(2, minmax(0, 1fr))",
123
+ "row-gap": "2xl",
124
+ "column-gap": "2xl",
125
+ tablet: {
126
+ "grid-template-columns": "repeat(2, 1fr)",
127
+ },
128
+ mobile: {
129
+ "grid-template-columns": "repeat(1, 1fr)",
130
+ "row-gap": "lg",
131
+ },
132
+ "justify-content": "space-between",
133
+ },
134
+ specialties: [
135
+ {
136
+ content_wrapper: {
137
+ display: "flex",
138
+ "flex-direction": "column",
139
+ "row-gap": "lg",
140
+ padding: "2xl",
141
+ "justify-content": "start",
142
+ "align-items": "start",
143
+ },
144
+ icon_wrapper: {
145
+ display: "flex",
146
+ "justify-content": "center",
147
+ "align-items": "center",
148
+ },
149
+ icon: {
150
+ "border-radius": "none",
151
+ "background-color": "brandSecondary",
152
+ height: "40px",
153
+ width: "40px",
154
+ "font-size": "40px",
155
+ },
156
+ text_wrapper: {
157
+ display: "flex",
158
+ width: "100%",
159
+ "flex-direction": "column",
160
+ "align-items": "start",
161
+ "row-gap": "sm",
162
+ "justify-content": "start",
163
+ },
164
+ title: {
165
+ "font-size": "3xl",
166
+ "font-weight": "bold",
167
+ },
168
+ description: {
169
+ "text-align": "left",
170
+ "max-width": "266px",
171
+ display: "none",
172
+ },
173
+ cta: {
174
+ display: "flex",
175
+ "column-gap": "xs",
176
+ },
177
+ cta_rightIcon: {
178
+ display: "inline",
179
+ height: "22px",
180
+ width: "22px",
181
+ "font-size": "22px",
182
+ },
183
+ },
184
+ {
185
+ content_wrapper: {
186
+ display: "flex",
187
+ "flex-direction": "column",
188
+ "row-gap": "lg",
189
+ padding: "2xl",
190
+ "justify-content": "start",
191
+ "align-items": "start",
192
+ },
193
+ icon_wrapper: {
194
+ display: "flex",
195
+ "justify-content": "center",
196
+ "align-items": "center",
197
+ },
198
+ icon: {
199
+ "border-radius": "none",
200
+ "background-color": "brandSecondary",
201
+ height: "40px",
202
+ width: "40px",
203
+ "font-size": "40px",
204
+ },
205
+ text_wrapper: {
206
+ display: "flex",
207
+ width: "100%",
208
+ "flex-direction": "column",
209
+ "align-items": "start",
210
+ "row-gap": "sm",
211
+ "justify-content": "start",
212
+ },
213
+ title: {
214
+ "font-size": "3xl",
215
+ "font-weight": "bold",
216
+ },
217
+ description: {
218
+ "text-align": "left",
219
+ "max-width": "266px",
220
+ display: "none",
221
+ },
222
+ cta: {
223
+ display: "flex",
224
+ "column-gap": "xs",
225
+ },
226
+ cta_rightIcon: {
227
+ height: "22px",
228
+ width: "22px",
229
+ "font-size": "22px",
230
+ },
231
+ },
232
+ {
233
+ content_wrapper: {
234
+ display: "flex",
235
+ "flex-direction": "column",
236
+ "row-gap": "lg",
237
+ padding: "2xl",
238
+ },
239
+ icon_wrapper: {
240
+ display: "flex",
241
+ "justify-content": "center",
242
+ "align-items": "center",
243
+ },
244
+ icon: {
245
+ height: "16",
246
+ width: "16",
247
+ "border-radius": "none",
248
+ "background-color": "brandSecondary",
249
+ },
250
+ text_wrapper: {
251
+ display: "flex",
252
+ width: "100%",
253
+ "flex-direction": "column",
254
+ "align-items": "center",
255
+ "row-gap": "sm",
256
+ },
257
+ title: {
258
+ "font-size": "2xl",
259
+ "font-weight": "bold",
260
+ },
261
+ description: {
262
+ "text-align": "center",
263
+ "max-width": "266px",
264
+ },
265
+ },
266
+ {
267
+ content_wrapper: {
268
+ "border-radius": "xl",
269
+ "border-width": "1px",
270
+ "border-style": "solid",
271
+ "border-color": "var(--color-border)",
272
+ display: "flex",
273
+ "flex-direction": "column",
274
+ "row-gap": "lg",
275
+ padding: "2xl",
276
+ },
277
+ icon_wrapper: {
278
+ display: "flex",
279
+ "justify-content": "center",
280
+ "align-items": "center",
281
+ },
282
+ icon: {
283
+ height: "16",
284
+ width: "16",
285
+ "border-radius": "none",
286
+ "background-color": "brandSecondary",
287
+ },
288
+ text_wrapper: {
289
+ display: "flex",
290
+ width: "100%",
291
+ "flex-direction": "column",
292
+ "align-items": "center",
293
+ "row-gap": "sm",
294
+ },
295
+ title: {
296
+ "font-size": "2xl",
297
+ "font-weight": "bold",
298
+ },
299
+ description: {
300
+ "text-align": "center",
301
+ "max-width": "266px",
302
+ },
303
+ },
304
+ {
305
+ content_wrapper: {
306
+ "border-radius": "xl",
307
+ "border-width": "1px",
308
+ "border-style": "solid",
309
+ "border-color": "var(--color-border)",
310
+ display: "flex",
311
+ "flex-direction": "column",
312
+ "row-gap": "lg",
313
+ padding: "2xl",
314
+ },
315
+ icon_wrapper: {
316
+ display: "flex",
317
+ "justify-content": "center",
318
+ "align-items": "center",
319
+ },
320
+ icon: {
321
+ height: "16",
322
+ width: "16",
323
+ "border-radius": "none",
324
+ "background-color": "brandSecondary",
325
+ },
326
+ text_wrapper: {
327
+ display: "flex",
328
+ width: "100%",
329
+ "flex-direction": "column",
330
+ "align-items": "center",
331
+ "row-gap": "sm",
332
+ },
333
+ title: {
334
+ "font-size": "2xl",
335
+ "font-weight": "bold",
336
+ },
337
+ description: {
338
+ "text-align": "center",
339
+ "max-width": "266px",
340
+ },
341
+ },
342
+ {
343
+ content_wrapper: {
344
+ "border-radius": "xl",
345
+ "border-width": "1px",
346
+ "border-style": "solid",
347
+ "border-color": "var(--color-border)",
348
+ display: "flex",
349
+ "flex-direction": "column",
350
+ "row-gap": "lg",
351
+ padding: "2xl",
352
+ },
353
+ icon_wrapper: {
354
+ display: "flex",
355
+ "justify-content": "center",
356
+ "align-items": "center",
357
+ },
358
+ icon: {
359
+ height: "16",
360
+ width: "16",
361
+ "border-radius": "none",
362
+ "background-color": "brandSecondary",
363
+ },
364
+ text_wrapper: {
365
+ display: "flex",
366
+ width: "100%",
367
+ "flex-direction": "column",
368
+ "align-items": "center",
369
+ "row-gap": "sm",
370
+ },
371
+ title: {
372
+ "font-size": "2xl",
373
+ "font-weight": "bold",
374
+ },
375
+ description: {
376
+ "text-align": "center",
377
+ "max-width": "266px",
378
+ },
379
+ },
380
+ {
381
+ content_wrapper: {
382
+ "border-radius": "xl",
383
+ "border-width": "1px",
384
+ "border-style": "solid",
385
+ "border-color": "var(--color-border)",
386
+ display: "flex",
387
+ "flex-direction": "column",
388
+ "row-gap": "lg",
389
+ padding: "2xl",
390
+ },
391
+ icon_wrapper: {
392
+ display: "flex",
393
+ "justify-content": "center",
394
+ "align-items": "center",
395
+ },
396
+ icon: {
397
+ height: "16",
398
+ width: "16",
399
+ "border-radius": "none",
400
+ "background-color": "brandSecondary",
401
+ },
402
+ text_wrapper: {
403
+ display: "flex",
404
+ width: "100%",
405
+ "flex-direction": "column",
406
+ "align-items": "center",
407
+ "row-gap": "sm",
408
+ },
409
+ title: {
410
+ "font-size": "2xl",
411
+ "font-weight": "bold",
412
+ },
413
+ description: {
414
+ "text-align": "center",
415
+ "max-width": "266px",
416
+ },
417
+ },
418
+ ],
419
+ },
420
+ content: DEFAULT_CONTENT,
421
+ config: {
422
+ title: {
423
+ selectedVariants: {
424
+ Heading_Level: "H2",
425
+ },
426
+ heading: {
427
+ level: 2,
428
+ },
429
+ },
430
+ specialties: [
431
+ {
432
+ cta: {
433
+ button_icons: {
434
+ right: {
435
+ enabled: true,
436
+ },
437
+ },
438
+ },
439
+ },
440
+ {
441
+ cta: {
442
+ button_icons: {
443
+ right: {
444
+ enabled: true,
445
+ },
446
+ },
447
+ },
448
+ },
449
+ ],
450
+ },
451
+ };