@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,1743 @@
1
+ import type { IBlock } from "@levo-so/studio";
2
+
3
+ const DEFAULT_CONTENT = {
4
+ layout: null,
5
+ container: null,
6
+ "main-wrapper": null,
7
+ "left-container": null,
8
+ "content-box": null,
9
+ "main-title": "Professional Services",
10
+ "main-description": "Comprehensive solutions tailored to your business needs",
11
+ "services-accordion": [
12
+ {
13
+ wrapper: null,
14
+ trigger: null,
15
+ content: null,
16
+ iconQuestionWrapper: null,
17
+ triggerIcon: {
18
+ kind: "icon",
19
+ data: {
20
+ id: "archive-minus",
21
+ label: "Archive Minus",
22
+ tags: ["archive", "custom", "directional", "minus"],
23
+ svgCode:
24
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M14.5 11.4H9.5C9.09 11.4 8.75 11.06 8.75 10.65C8.75 10.24 9.09 9.90002 9.5 9.90002H14.5C14.91 9.90002 15.25 10.24 15.25 10.65C15.25 11.06 14.91 11.4 14.5 11.4Z" fill="var(--color-icon-primary)"/>\n<path d="M4.92957 22.75C4.50957 22.75 4.11957 22.65 3.76957 22.45C2.99957 22 2.55957 21.09 2.55957 19.96V5.86C2.55957 3.32 4.62957 1.25 7.16957 1.25H16.8196C19.3596 1.25 21.4296 3.32 21.4296 5.86V19.95C21.4296 21.08 20.9896 21.99 20.2196 22.44C19.4496 22.89 18.4396 22.84 17.4496 22.29L12.5696 19.58C12.2796 19.42 11.7096 19.42 11.4196 19.58L6.53957 22.29C5.99957 22.59 5.44957 22.75 4.92957 22.75ZM7.17957 2.75C5.46957 2.75 4.06957 4.15 4.06957 5.86V19.95C4.06957 20.54 4.23957 20.98 4.53957 21.15C4.83957 21.33 5.30957 21.27 5.81957 20.98L10.6996 18.27C11.4396 17.86 12.5596 17.86 13.2996 18.27L18.1796 20.98C18.6896 21.27 19.1596 21.33 19.4596 21.15C19.7596 20.97 19.9296 20.53 19.9296 19.95V5.86C19.9296 4.15 18.5296 2.75 16.8196 2.75H7.17957Z" fill="var(--color-icon-primary)"/>\n</svg>',
25
+ },
26
+ },
27
+ question: "What consulting services do you offer?",
28
+ answer:
29
+ "We offer strategic business consulting, operational optimization, technology integration, and digital transformation services to help your organization achieve its goals.",
30
+ },
31
+ {
32
+ wrapper: null,
33
+ trigger: null,
34
+ content: null,
35
+ iconQuestionWrapper: null,
36
+ triggerIcon: {
37
+ kind: "icon",
38
+ data: {
39
+ id: "archive-minus",
40
+ label: "Archive Minus",
41
+ tags: ["archive", "custom", "directional", "minus"],
42
+ svgCode:
43
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M14.5 11.4H9.5C9.09 11.4 8.75 11.06 8.75 10.65C8.75 10.24 9.09 9.90002 9.5 9.90002H14.5C14.91 9.90002 15.25 10.24 15.25 10.65C15.25 11.06 14.91 11.4 14.5 11.4Z" fill="var(--color-icon-primary)"/>\n<path d="M4.92957 22.75C4.50957 22.75 4.11957 22.65 3.76957 22.45C2.99957 22 2.55957 21.09 2.55957 19.96V5.86C2.55957 3.32 4.62957 1.25 7.16957 1.25H16.8196C19.3596 1.25 21.4296 3.32 21.4296 5.86V19.95C21.4296 21.08 20.9896 21.99 20.2196 22.44C19.4496 22.89 18.4396 22.84 17.4496 22.29L12.5696 19.58C12.2796 19.42 11.7096 19.42 11.4196 19.58L6.53957 22.29C5.99957 22.59 5.44957 22.75 4.92957 22.75ZM7.17957 2.75C5.46957 2.75 4.06957 4.15 4.06957 5.86V19.95C4.06957 20.54 4.23957 20.98 4.53957 21.15C4.83957 21.33 5.30957 21.27 5.81957 20.98L10.6996 18.27C11.4396 17.86 12.5596 17.86 13.2996 18.27L18.1796 20.98C18.6896 21.27 19.1596 21.33 19.4596 21.15C19.7596 20.97 19.9296 20.53 19.9296 19.95V5.86C19.9296 4.15 18.5296 2.75 16.8196 2.75H7.17957Z" fill="var(--color-icon-primary)"/>\n</svg>',
44
+ },
45
+ },
46
+ question: "How do you ensure project success?",
47
+ answer:
48
+ "Our proven methodology includes thorough discovery, strategic planning, agile execution, and continuous monitoring to ensure successful project delivery.",
49
+ },
50
+ {
51
+ wrapper: null,
52
+ trigger: null,
53
+ content: null,
54
+ iconQuestionWrapper: null,
55
+ triggerIcon: {
56
+ kind: "icon",
57
+ data: {
58
+ id: "archive-minus",
59
+ label: "Archive Minus",
60
+ tags: ["archive", "custom", "directional", "minus"],
61
+ svgCode:
62
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M14.5 11.4H9.5C9.09 11.4 8.75 11.06 8.75 10.65C8.75 10.24 9.09 9.90002 9.5 9.90002H14.5C14.91 9.90002 15.25 10.24 15.25 10.65C15.25 11.06 14.91 11.4 14.5 11.4Z" fill="var(--color-icon-primary)"/>\n<path d="M4.92957 22.75C4.50957 22.75 4.11957 22.65 3.76957 22.45C2.99957 22 2.55957 21.09 2.55957 19.96V5.86C2.55957 3.32 4.62957 1.25 7.16957 1.25H16.8196C19.3596 1.25 21.4296 3.32 21.4296 5.86V19.95C21.4296 21.08 20.9896 21.99 20.2196 22.44C19.4496 22.89 18.4396 22.84 17.4496 22.29L12.5696 19.58C12.2796 19.42 11.7096 19.42 11.4196 19.58L6.53957 22.29C5.99957 22.59 5.44957 22.75 4.92957 22.75ZM7.17957 2.75C5.46957 2.75 4.06957 4.15 4.06957 5.86V19.95C4.06957 20.54 4.23957 20.98 4.53957 21.15C4.83957 21.33 5.30957 21.27 5.81957 20.98L10.6996 18.27C11.4396 17.86 12.5596 17.86 13.2996 18.27L18.1796 20.98C18.6896 21.27 19.1596 21.33 19.4596 21.15C19.7596 20.97 19.9296 20.53 19.9296 19.95V5.86C19.9296 4.15 18.5296 2.75 16.8196 2.75H7.17957Z" fill="var(--color-icon-primary)"/>\n</svg>',
63
+ },
64
+ },
65
+ question: "What industries do you serve?",
66
+ answer:
67
+ "We have extensive experience across healthcare, finance, manufacturing, retail, and technology sectors, delivering customized solutions for each industry.",
68
+ },
69
+ {
70
+ wrapper: null,
71
+ trigger: null,
72
+ content: null,
73
+ iconQuestionWrapper: null,
74
+ triggerIcon: {
75
+ kind: "icon",
76
+ data: {
77
+ id: "archive-minus",
78
+ label: "Archive Minus",
79
+ tags: ["archive", "custom", "directional", "minus"],
80
+ svgCode:
81
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M14.5 11.4H9.5C9.09 11.4 8.75 11.06 8.75 10.65C8.75 10.24 9.09 9.90002 9.5 9.90002H14.5C14.91 9.90002 15.25 10.24 15.25 10.65C15.25 11.06 14.91 11.4 14.5 11.4Z" fill="var(--color-icon-primary)"/>\n<path d="M4.92957 22.75C4.50957 22.75 4.11957 22.65 3.76957 22.45C2.99957 22 2.55957 21.09 2.55957 19.96V5.86C2.55957 3.32 4.62957 1.25 7.16957 1.25H16.8196C19.3596 1.25 21.4296 3.32 21.4296 5.86V19.95C21.4296 21.08 20.9896 21.99 20.2196 22.44C19.4496 22.89 18.4396 22.84 17.4496 22.29L12.5696 19.58C12.2796 19.42 11.7096 19.42 11.4196 19.58L6.53957 22.29C5.99957 22.59 5.44957 22.75 4.92957 22.75ZM7.17957 2.75C5.46957 2.75 4.06957 4.15 4.06957 5.86V19.95C4.06957 20.54 4.23957 20.98 4.53957 21.15C4.83957 21.33 5.30957 21.27 5.81957 20.98L10.6996 18.27C11.4396 17.86 12.5596 17.86 13.2996 18.27L18.1796 20.98C18.6896 21.27 19.1596 21.33 19.4596 21.15C19.7596 20.97 19.9296 20.53 19.9296 19.95V5.86C19.9296 4.15 18.5296 2.75 16.8196 2.75H7.17957Z" fill="var(--color-icon-primary)"/>\n</svg>',
82
+ },
83
+ },
84
+ question: "What makes your approach unique?",
85
+ answer:
86
+ "Our collaborative approach combines industry expertise with innovative solutions, ensuring we deliver measurable results and long-term value for our clients.",
87
+ },
88
+ ],
89
+ "features-section": null,
90
+ "features-title": "Key Service Features",
91
+ "features-list": [
92
+ {
93
+ "feature-item": null,
94
+ title: "Expert Team",
95
+ description:
96
+ "Seasoned professionals with deep industry knowledge and proven track records.",
97
+ },
98
+ {
99
+ "feature-item": null,
100
+ title: "Custom Solutions",
101
+ description:
102
+ "Tailored approaches designed specifically for your unique business challenges.",
103
+ },
104
+ {
105
+ "feature-item": null,
106
+ title: "24/7 Support",
107
+ description:
108
+ "Round-the-clock assistance and dedicated account management.",
109
+ },
110
+ ],
111
+ "right-container": null,
112
+ "service-cards": [
113
+ {
114
+ "card-container": null,
115
+ title: "Strategic Consulting",
116
+ image: {
117
+ id: "7141014160938075687",
118
+ location: "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH.png",
119
+ kind: "image",
120
+ mimetype: "image/png",
121
+ srcset: {
122
+ "1080w":
123
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1080w.webp",
124
+ "1200w":
125
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1200w.webp",
126
+ "1920w":
127
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1920w.webp",
128
+ "320w":
129
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-320w.webp",
130
+ "640w":
131
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-640w.webp",
132
+ "750w":
133
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-750w.webp",
134
+ "828w":
135
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-828w.webp",
136
+ 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",
137
+ },
138
+ },
139
+ description:
140
+ "Comprehensive business strategy development and market analysis to drive growth and competitive advantage.",
141
+ cta: "Learn More",
142
+ "service-features": [],
143
+ },
144
+ {
145
+ "card-container": null,
146
+ title: "Strategic Consulting",
147
+ image: null,
148
+ description: "",
149
+ cta: "",
150
+ "service-features": [
151
+ {
152
+ icon: {
153
+ kind: "icon",
154
+ data: {
155
+ id: "chart-21",
156
+ label: "Chart 21",
157
+ tags: ["21", "business", "chart", "custom"],
158
+ svgCode:
159
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M21 22.75H3C2.59 22.75 2.25 22.41 2.25 22C2.25 21.59 2.59 21.25 3 21.25H21C21.41 21.25 21.75 21.59 21.75 22C21.75 22.41 21.41 22.75 21 22.75Z" fill="var(--color-icon-primary)"/>\n<path d="M5.59998 19.75H4C3.04 19.75 2.25 18.96 2.25 18V9.38C2.25 8.42 3.04 7.63 4 7.63H5.59998C6.55998 7.63 7.34998 8.42 7.34998 9.38V18C7.34998 18.96 6.55998 19.75 5.59998 19.75ZM4 9.12C3.86 9.12 3.75 9.23 3.75 9.37V18C3.75 18.14 3.86 18.25 4 18.25H5.59998C5.73998 18.25 5.84998 18.14 5.84998 18V9.38C5.84998 9.24 5.73998 9.13 5.59998 9.13H4V9.12Z" fill="var(--color-icon-primary)"/>\n<path d="M12.8002 19.75H11.2002C10.2402 19.75 9.4502 18.96 9.4502 18V6.19C9.4502 5.23 10.2402 4.44 11.2002 4.44H12.8002C13.7602 4.44 14.5502 5.23 14.5502 6.19V18C14.5502 18.96 13.7602 19.75 12.8002 19.75ZM11.2002 5.94C11.0602 5.94 10.9502 6.05 10.9502 6.19V18C10.9502 18.14 11.0602 18.25 11.2002 18.25H12.8002C12.9402 18.25 13.0502 18.14 13.0502 18V6.19C13.0502 6.05 12.9402 5.94 12.8002 5.94H11.2002Z" fill="var(--color-icon-primary)"/>\n<path d="M20.0004 19.75H18.4004C17.4404 19.75 16.6504 18.96 16.6504 18V3C16.6504 2.04 17.4404 1.25 18.4004 1.25H20.0004C20.9604 1.25 21.7504 2.04 21.7504 3V18C21.7504 18.96 20.9604 19.75 20.0004 19.75ZM18.4004 2.75C18.2604 2.75 18.1504 2.86 18.1504 3V18C18.1504 18.14 18.2604 18.25 18.4004 18.25H20.0004C20.1404 18.25 20.2504 18.14 20.2504 18V3C20.2504 2.86 20.1404 2.75 20.0004 2.75H18.4004Z" fill="var(--color-icon-primary)"/>\n</svg>',
160
+ },
161
+ },
162
+ title: "<p>Sample Required:&nbsp;Blood</p>",
163
+ },
164
+ {
165
+ icon: {
166
+ kind: "icon",
167
+ data: {
168
+ id: "chart-21",
169
+ label: "Chart 21",
170
+ tags: ["21", "business", "chart", "custom"],
171
+ svgCode:
172
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M21 22.75H3C2.59 22.75 2.25 22.41 2.25 22C2.25 21.59 2.59 21.25 3 21.25H21C21.41 21.25 21.75 21.59 21.75 22C21.75 22.41 21.41 22.75 21 22.75Z" fill="var(--color-icon-primary)"/>\n<path d="M5.59998 19.75H4C3.04 19.75 2.25 18.96 2.25 18V9.38C2.25 8.42 3.04 7.63 4 7.63H5.59998C6.55998 7.63 7.34998 8.42 7.34998 9.38V18C7.34998 18.96 6.55998 19.75 5.59998 19.75ZM4 9.12C3.86 9.12 3.75 9.23 3.75 9.37V18C3.75 18.14 3.86 18.25 4 18.25H5.59998C5.73998 18.25 5.84998 18.14 5.84998 18V9.38C5.84998 9.24 5.73998 9.13 5.59998 9.13H4V9.12Z" fill="var(--color-icon-primary)"/>\n<path d="M12.8002 19.75H11.2002C10.2402 19.75 9.4502 18.96 9.4502 18V6.19C9.4502 5.23 10.2402 4.44 11.2002 4.44H12.8002C13.7602 4.44 14.5502 5.23 14.5502 6.19V18C14.5502 18.96 13.7602 19.75 12.8002 19.75ZM11.2002 5.94C11.0602 5.94 10.9502 6.05 10.9502 6.19V18C10.9502 18.14 11.0602 18.25 11.2002 18.25H12.8002C12.9402 18.25 13.0502 18.14 13.0502 18V6.19C13.0502 6.05 12.9402 5.94 12.8002 5.94H11.2002Z" fill="var(--color-icon-primary)"/>\n<path d="M20.0004 19.75H18.4004C17.4404 19.75 16.6504 18.96 16.6504 18V3C16.6504 2.04 17.4404 1.25 18.4004 1.25H20.0004C20.9604 1.25 21.7504 2.04 21.7504 3V18C21.7504 18.96 20.9604 19.75 20.0004 19.75ZM18.4004 2.75C18.2604 2.75 18.1504 2.86 18.1504 3V18C18.1504 18.14 18.2604 18.25 18.4004 18.25H20.0004C20.1404 18.25 20.2504 18.14 20.2504 18V3C20.2504 2.86 20.1404 2.75 20.0004 2.75H18.4004Z" fill="var(--color-icon-primary)"/>\n</svg>',
173
+ },
174
+ },
175
+ title: "<p>Sample Required:&nbsp;Blood</p>",
176
+ },
177
+ {
178
+ icon: {
179
+ kind: "icon",
180
+ data: {
181
+ id: "chart-21",
182
+ label: "Chart 21",
183
+ tags: ["21", "business", "chart", "custom"],
184
+ svgCode:
185
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M21 22.75H3C2.59 22.75 2.25 22.41 2.25 22C2.25 21.59 2.59 21.25 3 21.25H21C21.41 21.25 21.75 21.59 21.75 22C21.75 22.41 21.41 22.75 21 22.75Z" fill="var(--color-icon-primary)"/>\n<path d="M5.59998 19.75H4C3.04 19.75 2.25 18.96 2.25 18V9.38C2.25 8.42 3.04 7.63 4 7.63H5.59998C6.55998 7.63 7.34998 8.42 7.34998 9.38V18C7.34998 18.96 6.55998 19.75 5.59998 19.75ZM4 9.12C3.86 9.12 3.75 9.23 3.75 9.37V18C3.75 18.14 3.86 18.25 4 18.25H5.59998C5.73998 18.25 5.84998 18.14 5.84998 18V9.38C5.84998 9.24 5.73998 9.13 5.59998 9.13H4V9.12Z" fill="var(--color-icon-primary)"/>\n<path d="M12.8002 19.75H11.2002C10.2402 19.75 9.4502 18.96 9.4502 18V6.19C9.4502 5.23 10.2402 4.44 11.2002 4.44H12.8002C13.7602 4.44 14.5502 5.23 14.5502 6.19V18C14.5502 18.96 13.7602 19.75 12.8002 19.75ZM11.2002 5.94C11.0602 5.94 10.9502 6.05 10.9502 6.19V18C10.9502 18.14 11.0602 18.25 11.2002 18.25H12.8002C12.9402 18.25 13.0502 18.14 13.0502 18V6.19C13.0502 6.05 12.9402 5.94 12.8002 5.94H11.2002Z" fill="var(--color-icon-primary)"/>\n<path d="M20.0004 19.75H18.4004C17.4404 19.75 16.6504 18.96 16.6504 18V3C16.6504 2.04 17.4404 1.25 18.4004 1.25H20.0004C20.9604 1.25 21.7504 2.04 21.7504 3V18C21.7504 18.96 20.9604 19.75 20.0004 19.75ZM18.4004 2.75C18.2604 2.75 18.1504 2.86 18.1504 3V18C18.1504 18.14 18.2604 18.25 18.4004 18.25H20.0004C20.1404 18.25 20.2504 18.14 20.2504 18V3C20.2504 2.86 20.1404 2.75 20.0004 2.75H18.4004Z" fill="var(--color-icon-primary)"/>\n</svg>',
186
+ },
187
+ },
188
+ title: "<p>Sample Required:&nbsp;Blood</p>",
189
+ },
190
+ ],
191
+ },
192
+ ],
193
+ };
194
+
195
+ export type IService1Content = typeof DEFAULT_CONTENT;
196
+
197
+ export const Service1: IBlock = {
198
+ category_id: "services",
199
+ title: "Service 1",
200
+ key: "service-1",
201
+ version: "v1",
202
+ prompt_description:
203
+ "Two-column layout with left side containing title, accordion FAQ, and feature list, paired with right side showing service cards and feature highlights.",
204
+ content_schema: [
205
+ {
206
+ key: "layout",
207
+ label: "Layout",
208
+ field_interface: "LayoutWidget",
209
+ },
210
+ {
211
+ key: "container",
212
+ label: "Container",
213
+ field_interface: "ContainerWidget",
214
+ },
215
+ {
216
+ key: "main-wrapper",
217
+ label: "Main Wrapper",
218
+ field_interface: "BoxWidget",
219
+ hint: {
220
+ prompt_description:
221
+ "Main wrapper for the two-column layout. No content needed.",
222
+ },
223
+ },
224
+
225
+ // Left side
226
+ {
227
+ key: "left-container",
228
+ label: "Left Container",
229
+ field_interface: "BoxWidget",
230
+ hint: {
231
+ prompt_description:
232
+ "Left side container with main content box. No content needed.",
233
+ },
234
+ },
235
+ {
236
+ key: "content-box",
237
+ label: "Content Box",
238
+ field_interface: "BoxWidget",
239
+ hint: {
240
+ prompt_description:
241
+ "Content box containing title, description and accordion. No content needed.",
242
+ },
243
+ },
244
+ {
245
+ key: "main-title",
246
+ label: "Main Title",
247
+ field_interface: "HeadingWidget",
248
+ hint: {
249
+ prompt_description:
250
+ "Main heading for the services section. Should be professional and impactful.",
251
+ min_characters: 8,
252
+ max_characters: 40,
253
+ },
254
+ },
255
+
256
+ // Accordion
257
+ {
258
+ key: "services-accordion",
259
+ label: "Services FAQ",
260
+ field_interface: "BoxWidget",
261
+ kind: "group",
262
+ fields: [
263
+ {
264
+ key: "wrapper",
265
+ label: "Wrapper",
266
+ field_interface: "BoxWidget",
267
+ },
268
+ {
269
+ key: "trigger",
270
+ label: "Trigger",
271
+ field_interface: "BoxWidget",
272
+ },
273
+ {
274
+ key: "content",
275
+ label: "Content",
276
+ field_interface: "BoxWidget",
277
+ },
278
+ {
279
+ key: "iconQuestionWrapper",
280
+ label: "Question Wrapper",
281
+ field_interface: "BoxWidget",
282
+ },
283
+
284
+ {
285
+ key: "question",
286
+ label: "Question",
287
+ field_interface: "TypographyWidget",
288
+ hint: {
289
+ prompt_description:
290
+ "Frequently asked question about services. Should be clear and professional.",
291
+ min_characters: 20,
292
+ max_characters: 80,
293
+ },
294
+ },
295
+ {
296
+ key: "answer",
297
+ label: "Answer",
298
+ field_interface: "TypographyWidget",
299
+ hint: {
300
+ prompt_description:
301
+ "Detailed answer to the FAQ question. Should be informative and helpful.",
302
+ min_characters: 40,
303
+ max_characters: 200,
304
+ },
305
+ },
306
+ ],
307
+ hint: {
308
+ prompt_description:
309
+ "Collapsible FAQ items about services and solutions.",
310
+ min_items: 3,
311
+ max_items: 6,
312
+ },
313
+ },
314
+
315
+ // Features section
316
+ {
317
+ key: "features-section",
318
+ label: "Features Section",
319
+ field_interface: "BoxWidget",
320
+ hint: {
321
+ prompt_description:
322
+ "Section containing key service features. No content needed.",
323
+ },
324
+ },
325
+ {
326
+ key: "features-title",
327
+ label: "Features Title",
328
+ field_interface: "HeadingWidget",
329
+ hint: {
330
+ prompt_description:
331
+ "Title for the features section. Should highlight key benefits.",
332
+ min_characters: 8,
333
+ max_characters: 30,
334
+ },
335
+ },
336
+ {
337
+ key: "features-list",
338
+ label: "Features List",
339
+ field_interface: "BoxWidget",
340
+ kind: "group",
341
+ fields: [
342
+ {
343
+ key: "title",
344
+ label: "Title",
345
+ field_interface: "TypographyWidget",
346
+ hint: {
347
+ prompt_description:
348
+ "Feature title highlighting a specific service benefit.",
349
+ min_characters: 8,
350
+ max_characters: 30,
351
+ },
352
+ },
353
+ ],
354
+ hint: {
355
+ prompt_description: "List of key service features and benefits.",
356
+ min_items: 2,
357
+ max_items: 5,
358
+ },
359
+ },
360
+
361
+ // Right side
362
+ {
363
+ key: "right-container",
364
+ label: "Right Container",
365
+ field_interface: "BoxWidget",
366
+ hint: {
367
+ prompt_description:
368
+ "Right side container with service cards and features. No content needed.",
369
+ },
370
+ },
371
+
372
+ // Service cards
373
+ {
374
+ key: "service-cards",
375
+ label: "Service Cards",
376
+ field_interface: "BoxWidget",
377
+ kind: "group",
378
+ fields: [
379
+ {
380
+ key: "card-container",
381
+ label: "Card Container",
382
+ field_interface: "BoxWidget",
383
+ },
384
+ {
385
+ key: "title",
386
+ label: "Title",
387
+ field_interface: "HeadingWidget",
388
+ hint: {
389
+ prompt_description:
390
+ "Service card title. Should be descriptive and professional.",
391
+ min_characters: 10,
392
+ max_characters: 40,
393
+ },
394
+ },
395
+ {
396
+ key: "image",
397
+ label: "Image",
398
+ field_interface: "ImageWidget",
399
+ hint: {
400
+ prompt_description:
401
+ "Image representing the service. Should be professional and relevant.",
402
+ orientation: "landscape",
403
+ size: "medium",
404
+ usecase: "other",
405
+ },
406
+ },
407
+ {
408
+ key: "description",
409
+ label: "Description",
410
+ field_interface: "TypographyWidget",
411
+ hint: {
412
+ prompt_description:
413
+ "Service description explaining the benefits and approach.",
414
+ min_characters: 40,
415
+ max_characters: 150,
416
+ },
417
+ },
418
+ {
419
+ key: "cta",
420
+ label: "CTA Button",
421
+ field_interface: "ButtonWidget",
422
+ hint: {
423
+ prompt_description:
424
+ "Call-to-action button text. Should be action-oriented and concise.",
425
+ min_characters: 5,
426
+ max_characters: 20,
427
+ },
428
+ },
429
+ {
430
+ key: "service-features",
431
+ label: "Service Features",
432
+ field_interface: "BoxWidget",
433
+ kind: "group",
434
+ fields: [
435
+ {
436
+ key: "feature-container",
437
+ label: "Feature Container",
438
+ field_interface: "BoxWidget",
439
+ },
440
+ {
441
+ key: "icon",
442
+ label: "Icon",
443
+ field_interface: "IconWidget",
444
+ hint: {
445
+ prompt_description:
446
+ "Icon representing the service feature or benefit.",
447
+ orientation: "square",
448
+ size: "icon",
449
+ usecase: "icon",
450
+ },
451
+ },
452
+ {
453
+ key: "text-container",
454
+ label: "Text Container",
455
+ field_interface: "BoxWidget",
456
+ },
457
+ {
458
+ key: "title",
459
+ label: "Title",
460
+ field_interface: "TypographyWidget",
461
+ hint: {
462
+ prompt_description:
463
+ "Feature title highlighting a specific service advantage.",
464
+ min_characters: 8,
465
+ max_characters: 30,
466
+ },
467
+ },
468
+ {
469
+ key: "description",
470
+ label: "Description",
471
+ field_interface: "TypographyWidget",
472
+ hint: {
473
+ prompt_description:
474
+ "Brief description of the service feature and its value proposition.",
475
+ min_characters: 20,
476
+ max_characters: 80,
477
+ },
478
+ },
479
+ ],
480
+ hint: {
481
+ prompt_description:
482
+ "Additional service features displayed below the main service cards.",
483
+ min_items: 2,
484
+ max_items: 6,
485
+ },
486
+ },
487
+ ],
488
+ },
489
+
490
+ // Service features below cards
491
+ ],
492
+ layouts: [
493
+ {
494
+ key: "default",
495
+ title: "Default",
496
+ styles: {
497
+ layout: {
498
+ width: "100%",
499
+ "padding-top": "8xl",
500
+ "padding-bottom": "8xl",
501
+ "padding-left": "6xl",
502
+ "padding-right": "6xl",
503
+ mobile: {
504
+ "padding-top": "5xl",
505
+ "padding-bottom": "5xl",
506
+ "padding-left": "2xl",
507
+ "padding-right": "2xl",
508
+ },
509
+ },
510
+ container: {
511
+ width: "100%",
512
+ "max-width": "1280px",
513
+ "margin-left": "auto",
514
+ "margin-right": "auto",
515
+ },
516
+ "main-wrapper": {
517
+ display: "flex",
518
+ "column-gap": "6xl",
519
+ "row-gap": "4xl",
520
+ mobile: {
521
+ "flex-direction": "column",
522
+ "column-gap": "none",
523
+ },
524
+ width: "100%",
525
+ },
526
+ "left-container": {
527
+ "flex-direction": "row",
528
+ "row-gap": "3xl",
529
+ width: "70%",
530
+ "border-style": "solid",
531
+ "border-width": "1px",
532
+ "border-color": "border",
533
+ padding: "base",
534
+ "border-radius": "base",
535
+ },
536
+ "content-box": {},
537
+ "main-title": {
538
+ color: "text-1",
539
+ "margin-bottom": "xs",
540
+ },
541
+ "main-description": {
542
+ color: "text-2",
543
+ "line-height": "1.6",
544
+ "margin-bottom": "xl",
545
+ },
546
+ "services-accordion_levoGroup": {
547
+ display: "flex",
548
+ "flex-direction": "column",
549
+ padding: "base",
550
+ "border-radius": "base",
551
+ },
552
+ "services-accordion": [
553
+ {
554
+ wrapper: {
555
+ "border-bottom-width": "1px",
556
+ "border-style": "solid",
557
+ "border-color": "border",
558
+ "padding-top": "none",
559
+ "padding-bottom": "none",
560
+ },
561
+ question: {
562
+ "font-size": "lg",
563
+ "font-weight": "600",
564
+ color: "text-1",
565
+ },
566
+ answer: {
567
+ color: "text-2",
568
+ "line-height": "1.6",
569
+ "padding-bottom": "lg",
570
+ },
571
+ trigger: {
572
+ width: "100%",
573
+ display: "flex",
574
+ "align-items": "center",
575
+ "justify-content": "space-between",
576
+ "padding-top": "lg",
577
+ "padding-bottom": "lg",
578
+ },
579
+ iconQuestionWrapper: {
580
+ display: "flex",
581
+ "align-items": "center",
582
+ "column-gap": "base",
583
+ },
584
+ },
585
+ {
586
+ wrapper: {
587
+ "border-bottom-width": "1px",
588
+ "border-style": "solid",
589
+ "border-color": "border",
590
+ "padding-top": "none",
591
+ "padding-bottom": "none",
592
+ },
593
+ question: {
594
+ "font-size": "lg",
595
+ "font-weight": "600",
596
+ color: "text-1",
597
+ },
598
+ answer: {
599
+ color: "text-2",
600
+ "line-height": "1.6",
601
+ "padding-bottom": "lg",
602
+ },
603
+ trigger: {
604
+ width: "100%",
605
+ display: "flex",
606
+ "align-items": "center",
607
+ "justify-content": "space-between",
608
+ "padding-top": "lg",
609
+ "padding-bottom": "lg",
610
+ },
611
+ iconQuestionWrapper: {
612
+ display: "flex",
613
+ "align-items": "center",
614
+ "column-gap": "base",
615
+ },
616
+ },
617
+ {
618
+ wrapper: {
619
+ "border-bottom-width": "1px",
620
+ "border-style": "solid",
621
+ "border-color": "border",
622
+ "padding-top": "none",
623
+ "padding-bottom": "none",
624
+ },
625
+ question: {
626
+ "font-size": "lg",
627
+ "font-weight": "600",
628
+ color: "text-1",
629
+ },
630
+ answer: {
631
+ color: "text-2",
632
+ "line-height": "1.6",
633
+ "padding-bottom": "lg",
634
+ },
635
+ trigger: {
636
+ width: "100%",
637
+ display: "flex",
638
+ "align-items": "center",
639
+ "justify-content": "space-between",
640
+ "padding-top": "lg",
641
+ "padding-bottom": "lg",
642
+ },
643
+ iconQuestionWrapper: {
644
+ display: "flex",
645
+ "align-items": "center",
646
+ "column-gap": "base",
647
+ },
648
+ },
649
+ {
650
+ wrapper: {
651
+ "border-bottom-width": "1px",
652
+ "border-style": "solid",
653
+ "border-color": "border",
654
+ "padding-top": "none",
655
+ "padding-bottom": "none",
656
+ },
657
+ question: {
658
+ "font-size": "lg",
659
+ "font-weight": "600",
660
+ color: "text-1",
661
+ },
662
+ answer: {
663
+ color: "text-2",
664
+ "line-height": "1.6",
665
+ "padding-bottom": "lg",
666
+ },
667
+ trigger: {
668
+ width: "100%",
669
+ display: "flex",
670
+ "align-items": "center",
671
+ "justify-content": "space-between",
672
+ "padding-top": "lg",
673
+ "padding-bottom": "lg",
674
+ },
675
+ iconQuestionWrapper: {
676
+ display: "flex",
677
+ "align-items": "center",
678
+ "column-gap": "base",
679
+ },
680
+ },
681
+ ],
682
+ "features-section": {
683
+ display: "flex",
684
+ "flex-direction": "column",
685
+ "row-gap": "lg",
686
+ padding: "base",
687
+ },
688
+ "features-title": {
689
+ color: "text-1",
690
+ "margin-bottom": "sm",
691
+ "font-size": "2xl",
692
+ },
693
+ "features-list_levoGroup": {
694
+ display: "flex",
695
+ "flex-direction": "row",
696
+ "row-gap": "base",
697
+ "column-gap": "base",
698
+ },
699
+ "features-list": [
700
+ {
701
+ "feature-item": {
702
+ display: "flex",
703
+ "align-items": "flex-start",
704
+ "column-gap": "sm",
705
+ },
706
+ title: {
707
+ "font-weight": "600",
708
+ color: "text-1",
709
+ "margin-bottom": "xs",
710
+ padding: "4xs",
711
+ "background-color": "background-3",
712
+ "border-radius": "3xl",
713
+ },
714
+ description: {
715
+ "font-size": "sm",
716
+ color: "text-2",
717
+ "line-height": "1.5",
718
+ },
719
+ },
720
+ {
721
+ "feature-item": {
722
+ display: "flex",
723
+ "align-items": "flex-start",
724
+ "column-gap": "sm",
725
+ },
726
+ title: {
727
+ "font-weight": "600",
728
+ color: "text-1",
729
+ "margin-bottom": "xs",
730
+ padding: "4xs",
731
+ "background-color": "background-3",
732
+ "border-radius": "3xl",
733
+ },
734
+ description: {
735
+ "font-size": "sm",
736
+ color: "text-2",
737
+ "line-height": "1.5",
738
+ },
739
+ },
740
+ {
741
+ "feature-item": {
742
+ display: "flex",
743
+ "align-items": "flex-start",
744
+ "column-gap": "sm",
745
+ },
746
+ title: {
747
+ "font-weight": "600",
748
+ color: "text-1",
749
+ "margin-bottom": "xs",
750
+ padding: "4xs",
751
+ "background-color": "background-3",
752
+ "border-radius": "3xl",
753
+ },
754
+ description: {
755
+ "font-size": "sm",
756
+ color: "text-2",
757
+ "line-height": "1.5",
758
+ },
759
+ },
760
+ ],
761
+ "right-container": {
762
+ display: "flex",
763
+ "flex-direction": "column",
764
+ "row-gap": "3xl",
765
+ width: "30%",
766
+ },
767
+ "service-cards_levoGroup": {
768
+ display: "flex",
769
+ "grid-template-columns": "repeat(1, minmax(0, 1fr))",
770
+ "row-gap": "xl",
771
+ "column-gap": "lg",
772
+ mobile: {
773
+ "grid-template-columns": "repeat(1, minmax(0, 1fr))",
774
+ },
775
+ "flex-direction": "column-reverse",
776
+ },
777
+ "service-cards": [
778
+ {
779
+ "card-container": {
780
+ display: "flex",
781
+ "flex-direction": "column",
782
+ "row-gap": "lg",
783
+ "padding-top": "lg",
784
+ "padding-bottom": "lg",
785
+ "padding-left": "lg",
786
+ "padding-right": "lg",
787
+ "border-radius": "base",
788
+ "border-width": "1px",
789
+ "border-style": "solid",
790
+ "border-color": "border",
791
+ },
792
+ title: {
793
+ color: "text-1",
794
+ "font-size": "lg",
795
+ "font-weight": "600",
796
+ },
797
+ image: {
798
+ "object-fit": "cover",
799
+ "border-radius": "base",
800
+ width: "200px",
801
+ },
802
+ description: {
803
+ color: "text-2",
804
+ "line-height": "1.6",
805
+ "font-size": "sm",
806
+ "flex-grow": "1",
807
+ },
808
+ cta: {
809
+ width: "fit-content",
810
+ "margin-top": "auto",
811
+ },
812
+ "service-features_levoGroup": {
813
+ display: "grid",
814
+ "grid-template-columns": "repeat(2, minmax(0, 1fr))",
815
+ "row-gap": "lg",
816
+ "column-gap": "lg",
817
+ mobile: {
818
+ "grid-template-columns": "repeat(1, minmax(0, 1fr))",
819
+ },
820
+ },
821
+ "service-features": [
822
+ {
823
+ "feature-container": {
824
+ display: "flex",
825
+ "align-items": "flex-start",
826
+ "column-gap": "base",
827
+ "padding-top": "lg",
828
+ "padding-bottom": "lg",
829
+ "padding-left": "lg",
830
+ "padding-right": "lg",
831
+ "border-radius": "lg",
832
+ "background-color": "background-2",
833
+ },
834
+ icon: {
835
+ width: "32px",
836
+ height: "32px",
837
+ "flex-shrink": "0",
838
+ },
839
+ "text-container": {
840
+ display: "flex",
841
+ "flex-direction": "column",
842
+ },
843
+ title: {
844
+ "font-weight": "600",
845
+ color: "text-1",
846
+ "margin-bottom": "xs",
847
+ "font-size": "sm",
848
+ },
849
+ description: {
850
+ "font-size": "xs",
851
+ color: "text-2",
852
+ "line-height": "1.5",
853
+ },
854
+ },
855
+ {
856
+ "feature-container": {
857
+ display: "flex",
858
+ "align-items": "flex-start",
859
+ "column-gap": "base",
860
+ "padding-top": "lg",
861
+ "padding-bottom": "lg",
862
+ "padding-left": "lg",
863
+ "padding-right": "lg",
864
+ "border-radius": "lg",
865
+ "background-color": "background-2",
866
+ },
867
+ icon: {
868
+ width: "32px",
869
+ height: "32px",
870
+ "flex-shrink": "0",
871
+ },
872
+ "text-container": {
873
+ display: "flex",
874
+ "flex-direction": "column",
875
+ },
876
+ title: {
877
+ "font-weight": "600",
878
+ color: "text-1",
879
+ "margin-bottom": "xs",
880
+ "font-size": "sm",
881
+ },
882
+ description: {
883
+ "font-size": "xs",
884
+ color: "text-2",
885
+ "line-height": "1.5",
886
+ },
887
+ },
888
+ {
889
+ "feature-container": {
890
+ display: "flex",
891
+ "align-items": "flex-start",
892
+ "column-gap": "base",
893
+ "padding-top": "lg",
894
+ "padding-bottom": "lg",
895
+ "padding-left": "lg",
896
+ "padding-right": "lg",
897
+ "border-radius": "lg",
898
+ "background-color": "background-2",
899
+ },
900
+ icon: {
901
+ width: "32px",
902
+ height: "32px",
903
+ "flex-shrink": "0",
904
+ },
905
+ "text-container": {
906
+ display: "flex",
907
+ "flex-direction": "column",
908
+ },
909
+ title: {
910
+ "font-weight": "600",
911
+ color: "text-1",
912
+ "margin-bottom": "xs",
913
+ "font-size": "sm",
914
+ },
915
+ description: {
916
+ "font-size": "xs",
917
+ color: "text-2",
918
+ "line-height": "1.5",
919
+ },
920
+ },
921
+ {
922
+ "feature-container": {
923
+ display: "flex",
924
+ "align-items": "flex-start",
925
+ "column-gap": "base",
926
+ "padding-top": "lg",
927
+ "padding-bottom": "lg",
928
+ "padding-left": "lg",
929
+ "padding-right": "lg",
930
+ "border-radius": "lg",
931
+ "background-color": "background-2",
932
+ },
933
+ icon: {
934
+ width: "32px",
935
+ height: "32px",
936
+ "flex-shrink": "0",
937
+ },
938
+ "text-container": {
939
+ display: "flex",
940
+ "flex-direction": "column",
941
+ },
942
+ title: {
943
+ "font-weight": "600",
944
+ color: "text-1",
945
+ "margin-bottom": "xs",
946
+ "font-size": "sm",
947
+ },
948
+ description: {
949
+ "font-size": "xs",
950
+ color: "text-2",
951
+ "line-height": "1.5",
952
+ },
953
+ },
954
+ ],
955
+ },
956
+ {
957
+ "card-container": {
958
+ display: "flex",
959
+ "flex-direction": "column",
960
+ "row-gap": "lg",
961
+ "padding-top": "lg",
962
+ "padding-bottom": "lg",
963
+ "padding-left": "lg",
964
+ "padding-right": "lg",
965
+ "border-radius": "lg",
966
+ "border-width": "1px",
967
+ "border-style": "solid",
968
+ "border-color": "border",
969
+ },
970
+ title: {
971
+ color: "text-1",
972
+ "font-size": "lg",
973
+ "font-weight": "600",
974
+ },
975
+ image: {
976
+ width: "100%",
977
+ height: "200px",
978
+ "object-fit": "cover",
979
+ "border-radius": "base",
980
+ },
981
+ description: {
982
+ color: "text-2",
983
+ "line-height": "1.6",
984
+ "font-size": "sm",
985
+ "flex-grow": "1",
986
+ },
987
+ cta: {
988
+ width: "fit-content",
989
+ "margin-top": "auto",
990
+ },
991
+ "service-features_levoGroup": {
992
+ display: "grid",
993
+ "grid-template-columns": "repeat(1, minmax(0, 1fr))",
994
+ "row-gap": "6xs",
995
+ "column-gap": "lg",
996
+ mobile: {
997
+ "grid-template-columns": "repeat(1, minmax(0, 1fr))",
998
+ },
999
+ },
1000
+ "service-features": [
1001
+ {
1002
+ "feature-container": {
1003
+ display: "flex",
1004
+ "column-gap": "2xs",
1005
+ },
1006
+ icon: {
1007
+ width: "22px",
1008
+ height: "22px",
1009
+ "flex-shrink": "0",
1010
+ "font-size": "22px",
1011
+ },
1012
+ "text-container": {
1013
+ display: "flex",
1014
+ "flex-direction": "column",
1015
+ },
1016
+ title: {
1017
+ color: "text-1",
1018
+ "margin-bottom": "xs",
1019
+ "font-size": "sm",
1020
+ },
1021
+ description: {
1022
+ "font-size": "xs",
1023
+ color: "text-2",
1024
+ "line-height": "1.5",
1025
+ },
1026
+ },
1027
+ {
1028
+ "feature-container": {
1029
+ display: "flex",
1030
+ "column-gap": "2xs",
1031
+ },
1032
+ icon: {
1033
+ width: "22px",
1034
+ height: "22px",
1035
+ "flex-shrink": "0",
1036
+ "font-size": "22px",
1037
+ },
1038
+ "text-container": {
1039
+ display: "flex",
1040
+ "flex-direction": "column",
1041
+ },
1042
+ title: {
1043
+ color: "text-1",
1044
+ "margin-bottom": "xs",
1045
+ "font-size": "sm",
1046
+ },
1047
+ description: {
1048
+ "font-size": "xs",
1049
+ color: "text-2",
1050
+ "line-height": "1.5",
1051
+ },
1052
+ },
1053
+ {
1054
+ "feature-container": {
1055
+ display: "flex",
1056
+ "column-gap": "2xs",
1057
+ },
1058
+ icon: {
1059
+ width: "22px",
1060
+ height: "22px",
1061
+ "flex-shrink": "0",
1062
+ "font-size": "22px",
1063
+ },
1064
+ "text-container": {
1065
+ display: "flex",
1066
+ "flex-direction": "column",
1067
+ },
1068
+ title: {
1069
+ color: "text-1",
1070
+ "margin-bottom": "xs",
1071
+ "font-size": "sm",
1072
+ },
1073
+ description: {
1074
+ "font-size": "xs",
1075
+ color: "text-2",
1076
+ "line-height": "1.5",
1077
+ },
1078
+ },
1079
+ {
1080
+ "feature-container": {
1081
+ display: "flex",
1082
+ "align-items": "flex-start",
1083
+ "column-gap": "base",
1084
+ "padding-top": "lg",
1085
+ "padding-bottom": "lg",
1086
+ "padding-left": "lg",
1087
+ "padding-right": "lg",
1088
+ "border-radius": "lg",
1089
+ "background-color": "background-2",
1090
+ },
1091
+ icon: {
1092
+ width: "32px",
1093
+ height: "32px",
1094
+ "flex-shrink": "0",
1095
+ },
1096
+ "text-container": {
1097
+ display: "flex",
1098
+ "flex-direction": "column",
1099
+ },
1100
+ title: {
1101
+ "font-weight": "600",
1102
+ color: "text-1",
1103
+ "margin-bottom": "xs",
1104
+ "font-size": "sm",
1105
+ },
1106
+ description: {
1107
+ "font-size": "xs",
1108
+ color: "text-2",
1109
+ "line-height": "1.5",
1110
+ },
1111
+ },
1112
+ {
1113
+ "feature-container": {
1114
+ display: "flex",
1115
+ "align-items": "flex-start",
1116
+ "column-gap": "base",
1117
+ "padding-top": "lg",
1118
+ "padding-bottom": "lg",
1119
+ "padding-left": "lg",
1120
+ "padding-right": "lg",
1121
+ "border-radius": "lg",
1122
+ "background-color": "background-2",
1123
+ },
1124
+ icon: {
1125
+ width: "32px",
1126
+ height: "32px",
1127
+ "flex-shrink": "0",
1128
+ },
1129
+ "text-container": {
1130
+ display: "flex",
1131
+ "flex-direction": "column",
1132
+ },
1133
+ title: {
1134
+ "font-weight": "600",
1135
+ color: "text-1",
1136
+ "margin-bottom": "xs",
1137
+ "font-size": "sm",
1138
+ },
1139
+ description: {
1140
+ "font-size": "xs",
1141
+ color: "text-2",
1142
+ "line-height": "1.5",
1143
+ },
1144
+ },
1145
+ {
1146
+ "feature-container": {
1147
+ display: "flex",
1148
+ "align-items": "flex-start",
1149
+ "column-gap": "base",
1150
+ "padding-top": "lg",
1151
+ "padding-bottom": "lg",
1152
+ "padding-left": "lg",
1153
+ "padding-right": "lg",
1154
+ "border-radius": "lg",
1155
+ "background-color": "background-2",
1156
+ },
1157
+ icon: {
1158
+ width: "32px",
1159
+ height: "32px",
1160
+ "flex-shrink": "0",
1161
+ },
1162
+ "text-container": {
1163
+ display: "flex",
1164
+ "flex-direction": "column",
1165
+ },
1166
+ title: {
1167
+ "font-weight": "600",
1168
+ color: "text-1",
1169
+ "margin-bottom": "xs",
1170
+ "font-size": "sm",
1171
+ },
1172
+ description: {
1173
+ "font-size": "xs",
1174
+ color: "text-2",
1175
+ "line-height": "1.5",
1176
+ },
1177
+ },
1178
+ ],
1179
+ },
1180
+ {
1181
+ "card-container": {
1182
+ display: "flex",
1183
+ "flex-direction": "column",
1184
+ "row-gap": "lg",
1185
+ "padding-top": "lg",
1186
+ "padding-bottom": "lg",
1187
+ "padding-left": "lg",
1188
+ "padding-right": "lg",
1189
+ "border-radius": "lg",
1190
+ "border-width": "1px",
1191
+ "border-style": "solid",
1192
+ "border-color": "border",
1193
+ "background-color": "background-1",
1194
+ },
1195
+ title: {
1196
+ color: "text-1",
1197
+ "font-size": "lg",
1198
+ "font-weight": "600",
1199
+ },
1200
+ image: {
1201
+ width: "100%",
1202
+ height: "200px",
1203
+ "object-fit": "cover",
1204
+ "border-radius": "base",
1205
+ },
1206
+ description: {
1207
+ color: "text-2",
1208
+ "line-height": "1.6",
1209
+ "font-size": "sm",
1210
+ "flex-grow": "1",
1211
+ },
1212
+ cta: {
1213
+ width: "fit-content",
1214
+ "margin-top": "auto",
1215
+ },
1216
+ "service-features_levoGroup": {
1217
+ display: "grid",
1218
+ "grid-template-columns": "repeat(2, minmax(0, 1fr))",
1219
+ "row-gap": "lg",
1220
+ "column-gap": "lg",
1221
+ mobile: {
1222
+ "grid-template-columns": "repeat(1, minmax(0, 1fr))",
1223
+ },
1224
+ },
1225
+ "service-features": [
1226
+ {
1227
+ "feature-container": {
1228
+ display: "flex",
1229
+ "align-items": "flex-start",
1230
+ "column-gap": "base",
1231
+ "padding-top": "lg",
1232
+ "padding-bottom": "lg",
1233
+ "padding-left": "lg",
1234
+ "padding-right": "lg",
1235
+ "border-radius": "lg",
1236
+ "background-color": "background-2",
1237
+ },
1238
+ icon: {
1239
+ width: "32px",
1240
+ height: "32px",
1241
+ "flex-shrink": "0",
1242
+ },
1243
+ "text-container": {
1244
+ display: "flex",
1245
+ "flex-direction": "column",
1246
+ },
1247
+ title: {
1248
+ "font-weight": "600",
1249
+ color: "text-1",
1250
+ "margin-bottom": "xs",
1251
+ "font-size": "sm",
1252
+ },
1253
+ description: {
1254
+ "font-size": "xs",
1255
+ color: "text-2",
1256
+ "line-height": "1.5",
1257
+ },
1258
+ },
1259
+ {
1260
+ "feature-container": {
1261
+ display: "flex",
1262
+ "align-items": "flex-start",
1263
+ "column-gap": "base",
1264
+ "padding-top": "lg",
1265
+ "padding-bottom": "lg",
1266
+ "padding-left": "lg",
1267
+ "padding-right": "lg",
1268
+ "border-radius": "lg",
1269
+ "background-color": "background-2",
1270
+ },
1271
+ icon: {
1272
+ width: "32px",
1273
+ height: "32px",
1274
+ "flex-shrink": "0",
1275
+ },
1276
+ "text-container": {
1277
+ display: "flex",
1278
+ "flex-direction": "column",
1279
+ },
1280
+ title: {
1281
+ "font-weight": "600",
1282
+ color: "text-1",
1283
+ "margin-bottom": "xs",
1284
+ "font-size": "sm",
1285
+ },
1286
+ description: {
1287
+ "font-size": "xs",
1288
+ color: "text-2",
1289
+ "line-height": "1.5",
1290
+ },
1291
+ },
1292
+ {
1293
+ "feature-container": {
1294
+ display: "flex",
1295
+ "align-items": "flex-start",
1296
+ "column-gap": "base",
1297
+ "padding-top": "lg",
1298
+ "padding-bottom": "lg",
1299
+ "padding-left": "lg",
1300
+ "padding-right": "lg",
1301
+ "border-radius": "lg",
1302
+ "background-color": "background-2",
1303
+ },
1304
+ icon: {
1305
+ width: "32px",
1306
+ height: "32px",
1307
+ "flex-shrink": "0",
1308
+ },
1309
+ "text-container": {
1310
+ display: "flex",
1311
+ "flex-direction": "column",
1312
+ },
1313
+ title: {
1314
+ "font-weight": "600",
1315
+ color: "text-1",
1316
+ "margin-bottom": "xs",
1317
+ "font-size": "sm",
1318
+ },
1319
+ description: {
1320
+ "font-size": "xs",
1321
+ color: "text-2",
1322
+ "line-height": "1.5",
1323
+ },
1324
+ },
1325
+ {
1326
+ "feature-container": {
1327
+ display: "flex",
1328
+ "align-items": "flex-start",
1329
+ "column-gap": "base",
1330
+ "padding-top": "lg",
1331
+ "padding-bottom": "lg",
1332
+ "padding-left": "lg",
1333
+ "padding-right": "lg",
1334
+ "border-radius": "lg",
1335
+ "background-color": "background-2",
1336
+ },
1337
+ icon: {
1338
+ width: "32px",
1339
+ height: "32px",
1340
+ "flex-shrink": "0",
1341
+ },
1342
+ "text-container": {
1343
+ display: "flex",
1344
+ "flex-direction": "column",
1345
+ },
1346
+ title: {
1347
+ "font-weight": "600",
1348
+ color: "text-1",
1349
+ "margin-bottom": "xs",
1350
+ "font-size": "sm",
1351
+ },
1352
+ description: {
1353
+ "font-size": "xs",
1354
+ color: "text-2",
1355
+ "line-height": "1.5",
1356
+ },
1357
+ },
1358
+ ],
1359
+ },
1360
+ {
1361
+ "card-container": {
1362
+ display: "flex",
1363
+ "flex-direction": "column",
1364
+ "row-gap": "lg",
1365
+ "padding-top": "lg",
1366
+ "padding-bottom": "lg",
1367
+ "padding-left": "lg",
1368
+ "padding-right": "lg",
1369
+ "border-radius": "lg",
1370
+ "border-width": "1px",
1371
+ "border-style": "solid",
1372
+ "border-color": "border",
1373
+ "background-color": "background-1",
1374
+ },
1375
+ title: {
1376
+ color: "text-1",
1377
+ "font-size": "lg",
1378
+ "font-weight": "600",
1379
+ },
1380
+ image: {
1381
+ width: "100%",
1382
+ height: "200px",
1383
+ "object-fit": "cover",
1384
+ "border-radius": "base",
1385
+ },
1386
+ description: {
1387
+ color: "text-2",
1388
+ "line-height": "1.6",
1389
+ "font-size": "sm",
1390
+ "flex-grow": "1",
1391
+ },
1392
+ cta: {
1393
+ width: "fit-content",
1394
+ "margin-top": "auto",
1395
+ },
1396
+ "service-features_levoGroup": {
1397
+ display: "grid",
1398
+ "grid-template-columns": "repeat(2, minmax(0, 1fr))",
1399
+ "row-gap": "lg",
1400
+ "column-gap": "lg",
1401
+ mobile: {
1402
+ "grid-template-columns": "repeat(1, minmax(0, 1fr))",
1403
+ },
1404
+ },
1405
+ "service-features": [
1406
+ {
1407
+ "feature-container": {
1408
+ display: "flex",
1409
+ "align-items": "flex-start",
1410
+ "column-gap": "base",
1411
+ "padding-top": "lg",
1412
+ "padding-bottom": "lg",
1413
+ "padding-left": "lg",
1414
+ "padding-right": "lg",
1415
+ "border-radius": "lg",
1416
+ "background-color": "background-2",
1417
+ },
1418
+ icon: {
1419
+ width: "32px",
1420
+ height: "32px",
1421
+ "flex-shrink": "0",
1422
+ },
1423
+ "text-container": {
1424
+ display: "flex",
1425
+ "flex-direction": "column",
1426
+ },
1427
+ title: {
1428
+ "font-weight": "600",
1429
+ color: "text-1",
1430
+ "margin-bottom": "xs",
1431
+ "font-size": "sm",
1432
+ },
1433
+ description: {
1434
+ "font-size": "xs",
1435
+ color: "text-2",
1436
+ "line-height": "1.5",
1437
+ },
1438
+ },
1439
+ {
1440
+ "feature-container": {
1441
+ display: "flex",
1442
+ "align-items": "flex-start",
1443
+ "column-gap": "base",
1444
+ "padding-top": "lg",
1445
+ "padding-bottom": "lg",
1446
+ "padding-left": "lg",
1447
+ "padding-right": "lg",
1448
+ "border-radius": "lg",
1449
+ "background-color": "background-2",
1450
+ },
1451
+ icon: {
1452
+ width: "32px",
1453
+ height: "32px",
1454
+ "flex-shrink": "0",
1455
+ },
1456
+ "text-container": {
1457
+ display: "flex",
1458
+ "flex-direction": "column",
1459
+ },
1460
+ title: {
1461
+ "font-weight": "600",
1462
+ color: "text-1",
1463
+ "margin-bottom": "xs",
1464
+ "font-size": "sm",
1465
+ },
1466
+ description: {
1467
+ "font-size": "xs",
1468
+ color: "text-2",
1469
+ "line-height": "1.5",
1470
+ },
1471
+ },
1472
+ {
1473
+ "feature-container": {
1474
+ display: "flex",
1475
+ "align-items": "flex-start",
1476
+ "column-gap": "base",
1477
+ "padding-top": "lg",
1478
+ "padding-bottom": "lg",
1479
+ "padding-left": "lg",
1480
+ "padding-right": "lg",
1481
+ "border-radius": "lg",
1482
+ "background-color": "background-2",
1483
+ },
1484
+ icon: {
1485
+ width: "32px",
1486
+ height: "32px",
1487
+ "flex-shrink": "0",
1488
+ },
1489
+ "text-container": {
1490
+ display: "flex",
1491
+ "flex-direction": "column",
1492
+ },
1493
+ title: {
1494
+ "font-weight": "600",
1495
+ color: "text-1",
1496
+ "margin-bottom": "xs",
1497
+ "font-size": "sm",
1498
+ },
1499
+ description: {
1500
+ "font-size": "xs",
1501
+ color: "text-2",
1502
+ "line-height": "1.5",
1503
+ },
1504
+ },
1505
+ {
1506
+ "feature-container": {
1507
+ display: "flex",
1508
+ "align-items": "flex-start",
1509
+ "column-gap": "base",
1510
+ "padding-top": "lg",
1511
+ "padding-bottom": "lg",
1512
+ "padding-left": "lg",
1513
+ "padding-right": "lg",
1514
+ "border-radius": "lg",
1515
+ "background-color": "background-2",
1516
+ },
1517
+ icon: {
1518
+ width: "32px",
1519
+ height: "32px",
1520
+ "flex-shrink": "0",
1521
+ },
1522
+ "text-container": {
1523
+ display: "flex",
1524
+ "flex-direction": "column",
1525
+ },
1526
+ title: {
1527
+ "font-weight": "600",
1528
+ color: "text-1",
1529
+ "margin-bottom": "xs",
1530
+ "font-size": "sm",
1531
+ },
1532
+ description: {
1533
+ "font-size": "xs",
1534
+ color: "text-2",
1535
+ "line-height": "1.5",
1536
+ },
1537
+ },
1538
+ ],
1539
+ },
1540
+ {
1541
+ "card-container": {
1542
+ display: "flex",
1543
+ "flex-direction": "column",
1544
+ "row-gap": "lg",
1545
+ "padding-top": "lg",
1546
+ "padding-bottom": "lg",
1547
+ "padding-left": "lg",
1548
+ "padding-right": "lg",
1549
+ "border-radius": "lg",
1550
+ "border-width": "1px",
1551
+ "border-style": "solid",
1552
+ "border-color": "border",
1553
+ "background-color": "background-1",
1554
+ },
1555
+ title: {
1556
+ color: "text-1",
1557
+ "font-size": "lg",
1558
+ "font-weight": "600",
1559
+ },
1560
+ image: {
1561
+ width: "100%",
1562
+ height: "200px",
1563
+ "object-fit": "cover",
1564
+ "border-radius": "base",
1565
+ },
1566
+ description: {
1567
+ color: "text-2",
1568
+ "line-height": "1.6",
1569
+ "font-size": "sm",
1570
+ "flex-grow": "1",
1571
+ },
1572
+ cta: {
1573
+ width: "fit-content",
1574
+ "margin-top": "auto",
1575
+ },
1576
+ "service-features_levoGroup": {
1577
+ display: "grid",
1578
+ "grid-template-columns": "repeat(2, minmax(0, 1fr))",
1579
+ "row-gap": "lg",
1580
+ "column-gap": "lg",
1581
+ mobile: {
1582
+ "grid-template-columns": "repeat(1, minmax(0, 1fr))",
1583
+ },
1584
+ },
1585
+ "service-features": [
1586
+ {
1587
+ "feature-container": {
1588
+ display: "flex",
1589
+ "align-items": "flex-start",
1590
+ "column-gap": "base",
1591
+ "padding-top": "lg",
1592
+ "padding-bottom": "lg",
1593
+ "padding-left": "lg",
1594
+ "padding-right": "lg",
1595
+ "border-radius": "lg",
1596
+ "background-color": "background-2",
1597
+ },
1598
+ icon: {
1599
+ width: "32px",
1600
+ height: "32px",
1601
+ "flex-shrink": "0",
1602
+ },
1603
+ "text-container": {
1604
+ display: "flex",
1605
+ "flex-direction": "column",
1606
+ },
1607
+ title: {
1608
+ "font-weight": "600",
1609
+ color: "text-1",
1610
+ "margin-bottom": "xs",
1611
+ "font-size": "sm",
1612
+ },
1613
+ description: {
1614
+ "font-size": "xs",
1615
+ color: "text-2",
1616
+ "line-height": "1.5",
1617
+ },
1618
+ },
1619
+ {
1620
+ "feature-container": {
1621
+ display: "flex",
1622
+ "align-items": "flex-start",
1623
+ "column-gap": "base",
1624
+ "padding-top": "lg",
1625
+ "padding-bottom": "lg",
1626
+ "padding-left": "lg",
1627
+ "padding-right": "lg",
1628
+ "border-radius": "lg",
1629
+ "background-color": "background-2",
1630
+ },
1631
+ icon: {
1632
+ width: "32px",
1633
+ height: "32px",
1634
+ "flex-shrink": "0",
1635
+ },
1636
+ "text-container": {
1637
+ display: "flex",
1638
+ "flex-direction": "column",
1639
+ },
1640
+ title: {
1641
+ "font-weight": "600",
1642
+ color: "text-1",
1643
+ "margin-bottom": "xs",
1644
+ "font-size": "sm",
1645
+ },
1646
+ description: {
1647
+ "font-size": "xs",
1648
+ color: "text-2",
1649
+ "line-height": "1.5",
1650
+ },
1651
+ },
1652
+ {
1653
+ "feature-container": {
1654
+ display: "flex",
1655
+ "align-items": "flex-start",
1656
+ "column-gap": "base",
1657
+ "padding-top": "lg",
1658
+ "padding-bottom": "lg",
1659
+ "padding-left": "lg",
1660
+ "padding-right": "lg",
1661
+ "border-radius": "lg",
1662
+ "background-color": "background-2",
1663
+ },
1664
+ icon: {
1665
+ width: "32px",
1666
+ height: "32px",
1667
+ "flex-shrink": "0",
1668
+ },
1669
+ "text-container": {
1670
+ display: "flex",
1671
+ "flex-direction": "column",
1672
+ },
1673
+ title: {
1674
+ "font-weight": "600",
1675
+ color: "text-1",
1676
+ "margin-bottom": "xs",
1677
+ "font-size": "sm",
1678
+ },
1679
+ description: {
1680
+ "font-size": "xs",
1681
+ color: "text-2",
1682
+ "line-height": "1.5",
1683
+ },
1684
+ },
1685
+ {
1686
+ "feature-container": {
1687
+ display: "flex",
1688
+ "align-items": "flex-start",
1689
+ "column-gap": "base",
1690
+ "padding-top": "lg",
1691
+ "padding-bottom": "lg",
1692
+ "padding-left": "lg",
1693
+ "padding-right": "lg",
1694
+ "border-radius": "lg",
1695
+ "background-color": "background-2",
1696
+ },
1697
+ icon: {
1698
+ width: "32px",
1699
+ height: "32px",
1700
+ "flex-shrink": "0",
1701
+ },
1702
+ "text-container": {
1703
+ display: "flex",
1704
+ "flex-direction": "column",
1705
+ },
1706
+ title: {
1707
+ "font-weight": "600",
1708
+ color: "text-1",
1709
+ "margin-bottom": "xs",
1710
+ "font-size": "sm",
1711
+ },
1712
+ description: {
1713
+ "font-size": "xs",
1714
+ color: "text-2",
1715
+ "line-height": "1.5",
1716
+ },
1717
+ },
1718
+ ],
1719
+ },
1720
+ ],
1721
+ },
1722
+ content: DEFAULT_CONTENT,
1723
+ config: {
1724
+ "main-title": {
1725
+ heading: {
1726
+ level: 2,
1727
+ },
1728
+ selectedVariants: {
1729
+ Heading_Level: "H2",
1730
+ },
1731
+ },
1732
+ "features-title": {
1733
+ heading: {
1734
+ level: 3,
1735
+ },
1736
+ selectedVariants: {
1737
+ Heading_Level: "H3",
1738
+ },
1739
+ },
1740
+ },
1741
+ },
1742
+ ],
1743
+ };