@levo-so/blocks 0.1.54 → 0.1.58

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,818 @@
1
+ import type { IBlock } from "@levo-so/studio";
2
+
3
+ const DEFAULT_CONTENT = {
4
+ layout: null,
5
+ container: null,
6
+ header_container: null,
7
+ title: "Featured Products Collection",
8
+ header_cta: "View All Products",
9
+ products_container: null,
10
+ product_groups: [
11
+ {
12
+ groups_container: null,
13
+ products_with_images_levoGroup: null,
14
+ products_with_images: [
15
+ {
16
+ card: null,
17
+ image: {
18
+ id: "7141014160938075687",
19
+ location:
20
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH.png",
21
+ kind: "image",
22
+ mimetype: "image/png",
23
+ srcset: {
24
+ "1080w":
25
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1080w.webp",
26
+ "1200w":
27
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1200w.webp",
28
+ "1920w":
29
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1920w.webp",
30
+ "320w":
31
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-320w.webp",
32
+ "640w":
33
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-640w.webp",
34
+ "750w":
35
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-750w.webp",
36
+ "828w":
37
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-828w.webp",
38
+ 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",
39
+ },
40
+ },
41
+ content_wrapper: null,
42
+ title: "<p>Master Health Checkup</p>",
43
+ description: "<p>Includes 14 Tests</p>",
44
+ price_container: null,
45
+ actual_price: "<p>₹ 1350</p>",
46
+ discount_price: "<p>₹2500</p>",
47
+ off_percent: "33% OFF",
48
+ cta: "Add to Cart",
49
+ },
50
+ {
51
+ card: null,
52
+ image: {
53
+ id: "7141014160938075687",
54
+ location:
55
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH.png",
56
+ kind: "image",
57
+ mimetype: "image/png",
58
+ srcset: {
59
+ "1080w":
60
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1080w.webp",
61
+ "1200w":
62
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1200w.webp",
63
+ "1920w":
64
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1920w.webp",
65
+ "320w":
66
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-320w.webp",
67
+ "640w":
68
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-640w.webp",
69
+ "750w":
70
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-750w.webp",
71
+ "828w":
72
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-828w.webp",
73
+ 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",
74
+ },
75
+ },
76
+ content_wrapper: null,
77
+ title: "<p>Complete Health Package</p>",
78
+ description: "<p>Includes 20 Tests</p>",
79
+ price_container: null,
80
+ actual_price: "<p>₹ 1850</p>",
81
+ discount_price: "<p>₹3200</p>",
82
+ off_percent: "42% OFF",
83
+ cta: "Add to Cart",
84
+ },
85
+ {
86
+ card: null,
87
+ image: {
88
+ id: "7141014160938075687",
89
+ location:
90
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH.png",
91
+ kind: "image",
92
+ mimetype: "image/png",
93
+ srcset: {
94
+ "1080w":
95
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1080w.webp",
96
+ "1200w":
97
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1200w.webp",
98
+ "1920w":
99
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-1920w.webp",
100
+ "320w":
101
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-320w.webp",
102
+ "640w":
103
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-640w.webp",
104
+ "750w":
105
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-750w.webp",
106
+ "828w":
107
+ "https://space.levo.so/WLZ1TXTD/defaultblue-tryFJ012mgyH-828w.webp",
108
+ 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",
109
+ },
110
+ },
111
+ content_wrapper: null,
112
+ title: "<p>Complete Health Package</p>",
113
+ description: "<p>Includes 20 Tests</p>",
114
+ price_container: null,
115
+ actual_price: "<p>₹ 1850</p>",
116
+ discount_price: "<p>₹3200</p>",
117
+ off_percent: "42% OFF",
118
+ cta: "Add to Cart",
119
+ },
120
+ ],
121
+ products_without_images_levoGroup: null,
122
+ products_without_images: [
123
+ {
124
+ card: null,
125
+ content_wrapper: null,
126
+ title: "<p>Basic Health Checkup</p>",
127
+ description: "",
128
+ price_container: null,
129
+ actual_price: "<p>₹ 850</p>",
130
+ discount_price: "<p>₹1500</p>",
131
+ off_percent: "43% OFF",
132
+ cta: "Add to Cart",
133
+ },
134
+ ],
135
+ },
136
+ ],
137
+ };
138
+
139
+ export type IProductsListing3Content = typeof DEFAULT_CONTENT;
140
+
141
+ export const ProductsListing3: IBlock = {
142
+ category_id: "products",
143
+ title: "Products Listing 3",
144
+ key: "products-listing-3",
145
+ version: "v1",
146
+ prompt_description:
147
+ "A product listing block with header, product cards featuring images, titles, descriptions, price containers with actual price, discount price, and off percent, plus CTA buttons",
148
+ content_schema: [
149
+ {
150
+ key: "layout",
151
+ label: "Layout",
152
+ field_interface: "LayoutWidget",
153
+ },
154
+ {
155
+ key: "container",
156
+ label: "Container",
157
+ field_interface: "ContainerWidget",
158
+ },
159
+ {
160
+ key: "header_container",
161
+ label: "Header Container",
162
+ field_interface: "BoxWidget",
163
+ },
164
+ {
165
+ key: "title",
166
+ label: "Title",
167
+ field_interface: "HeadingWidget",
168
+ },
169
+ {
170
+ key: "header_cta",
171
+ label: "Header CTA",
172
+ field_interface: "ButtonWidget",
173
+ },
174
+ {
175
+ key: "product_groups",
176
+ label: "Product Groups",
177
+ kind: "group",
178
+ field_interface: "BoxWidget",
179
+ fields: [
180
+ {
181
+ key: "groups_container",
182
+ label: "Groups Container",
183
+ field_interface: "BoxWidget",
184
+ },
185
+
186
+ {
187
+ key: "products_with_images",
188
+ label: "Products With Images",
189
+ kind: "group",
190
+ field_interface: "BoxWidget",
191
+ fields: [
192
+ {
193
+ key: "card",
194
+ label: "Card",
195
+ field_interface: "BoxWidget",
196
+ },
197
+ {
198
+ key: "image",
199
+ label: "Image",
200
+ field_interface: "ImageWidget",
201
+ },
202
+ {
203
+ key: "content_wrapper",
204
+ label: "Content Wrapper",
205
+ field_interface: "BoxWidget",
206
+ },
207
+ {
208
+ key: "title",
209
+ label: "Title",
210
+ field_interface: "TypographyWidget",
211
+ },
212
+ {
213
+ key: "description",
214
+ label: "Description",
215
+ field_interface: "TypographyWidget",
216
+ },
217
+ {
218
+ key: "price_container",
219
+ label: "Price Container",
220
+ field_interface: "BoxWidget",
221
+ },
222
+ {
223
+ key: "actual_price",
224
+ label: "Actual Price",
225
+ field_interface: "TypographyWidget",
226
+ },
227
+ {
228
+ key: "discount_price",
229
+ label: "Discount Price",
230
+ field_interface: "TypographyWidget",
231
+ },
232
+ {
233
+ key: "off_percent",
234
+ label: "Off Percent",
235
+ field_interface: "TypographyWidget",
236
+ },
237
+ {
238
+ key: "cta",
239
+ label: "CTA Button",
240
+ field_interface: "ButtonWidget",
241
+ },
242
+ ],
243
+ },
244
+
245
+ {
246
+ key: "products_without_images",
247
+ label: "Products Without Images",
248
+ kind: "group",
249
+ field_interface: "BoxWidget",
250
+ fields: [
251
+ {
252
+ key: "card",
253
+ label: "Card",
254
+ field_interface: "BoxWidget",
255
+ },
256
+ {
257
+ key: "content_wrapper",
258
+ label: "Content Wrapper",
259
+ field_interface: "BoxWidget",
260
+ },
261
+ {
262
+ key: "title",
263
+ label: "Title",
264
+ field_interface: "TypographyWidget",
265
+ },
266
+ {
267
+ key: "description",
268
+ label: "Description",
269
+ field_interface: "TypographyWidget",
270
+ },
271
+ {
272
+ key: "price_container",
273
+ label: "Price Container",
274
+ field_interface: "BoxWidget",
275
+ },
276
+ {
277
+ key: "actual_price",
278
+ label: "Actual Price",
279
+ field_interface: "TypographyWidget",
280
+ },
281
+ {
282
+ key: "discount_price",
283
+ label: "Discount Price",
284
+ field_interface: "TypographyWidget",
285
+ },
286
+ {
287
+ key: "off_percent",
288
+ label: "Off Percent",
289
+ field_interface: "TypographyWidget",
290
+ },
291
+ {
292
+ key: "cta",
293
+ label: "CTA Button",
294
+ field_interface: "ButtonWidget",
295
+ },
296
+ ],
297
+ },
298
+ ],
299
+ },
300
+ ],
301
+ layouts: [
302
+ {
303
+ key: "default",
304
+ title: "Default",
305
+ styles: {
306
+ layout: {
307
+ "padding-top": "10xl",
308
+ "padding-bottom": "10xl",
309
+ },
310
+ container: {
311
+ "padding-left": "none",
312
+ "padding-right": "none",
313
+ tablet: {
314
+ "padding-left": "5xl",
315
+ "padding-right": "5xl",
316
+ },
317
+ mobile: {
318
+ "padding-left": "2xl",
319
+ "padding-right": "2xl",
320
+ },
321
+ },
322
+ header_container: {
323
+ display: "flex",
324
+ "justify-content": "space-between",
325
+ "align-items": "center",
326
+ "margin-bottom": "2xl",
327
+ mobile: {
328
+ "flex-direction": "column",
329
+ "align-items": "center",
330
+ "row-gap": "lg",
331
+ "justify-content": "center",
332
+ },
333
+ },
334
+ title: {
335
+ color: "text-1",
336
+ mobile: {
337
+ "text-align": "center",
338
+ },
339
+ },
340
+ header_cta: {},
341
+ products_container: {},
342
+ product_groups_levoGroup: [
343
+ {
344
+ groups_container: {
345
+ display: "flex",
346
+ "flex-direction": "row",
347
+ gap: "xl",
348
+ mobile: {
349
+ "flex-direction": "column",
350
+ },
351
+ },
352
+ products_with_images_levoGroup: {
353
+ display: "grid",
354
+ "grid-template-columns": "repeat(3, minmax(0, 1fr))",
355
+ "grid-template-rows": "1fr",
356
+ "column-gap": "xl",
357
+ "row-gap": "xl",
358
+ flex: "3",
359
+ tablet: {
360
+ "grid-template-columns": "repeat(2, minmax(0, 1fr))",
361
+ "grid-template-rows": "1fr",
362
+ flex: "2",
363
+ },
364
+ mobile: {
365
+ "grid-template-columns": "repeat(1, minmax(0, 1fr))",
366
+ "grid-template-rows": "auto",
367
+ flex: "1",
368
+ },
369
+ },
370
+ products_without_images_levoGroup: {
371
+ display: "grid",
372
+ "grid-template-columns": "repeat(1, minmax(0, 1fr))",
373
+ "grid-template-rows": "1fr",
374
+ "column-gap": "xl",
375
+ "row-gap": "xl",
376
+ flex: "1",
377
+ tablet: {
378
+ "grid-template-columns": "repeat(1, minmax(0, 1fr))",
379
+ "grid-template-rows": "1fr",
380
+ flex: "1",
381
+ },
382
+ mobile: {
383
+ "grid-template-columns": "repeat(1, minmax(0, 1fr))",
384
+ "grid-template-rows": "auto",
385
+ flex: "1",
386
+ },
387
+ },
388
+ products_with_images: [
389
+ {
390
+ card: {
391
+ "border-style": "solid",
392
+ "border-width": "1px",
393
+ display: "flex",
394
+ "flex-direction": "column",
395
+ "justify-content": "start",
396
+ "align-items": "start",
397
+ },
398
+ image: {
399
+ width: "100%",
400
+ height: "280px",
401
+ "object-fit": "cover",
402
+ "margin-bottom": "lg",
403
+ },
404
+ content_wrapper: {
405
+ width: "100%",
406
+ display: "flex",
407
+ "flex-direction": "column",
408
+ "justify-content": "start",
409
+ "align-items": "start",
410
+ "padding-left": "base",
411
+ "padding-right": "base",
412
+ "padding-bottom": "base",
413
+ },
414
+ title: {
415
+ color: "text-1",
416
+ "font-size": "lg",
417
+ "font-weight": "600",
418
+ "text-align": "center",
419
+ "margin-bottom": "sm",
420
+ },
421
+ description: {
422
+ color: "text-2",
423
+ "text-align": "left",
424
+ "margin-bottom": "lg",
425
+ "line-height": "1.5",
426
+ },
427
+ price_container: {
428
+ display: "flex",
429
+ "flex-direction": "row",
430
+ "align-items": "center",
431
+ "margin-bottom": "lg",
432
+ "row-gap": "2xs",
433
+ "column-gap": "base",
434
+ },
435
+ actual_price: {
436
+ "font-size": "xl",
437
+ "font-weight": "700",
438
+ color: "text-1",
439
+ },
440
+ discount_price: {
441
+ "font-size": "sm",
442
+ color: "text-3",
443
+ "text-decoration": "line-through",
444
+ },
445
+ off_percent: {
446
+ "font-size": "sm",
447
+ "font-weight": "600",
448
+ color: "success",
449
+ },
450
+ cta: {
451
+ width: "100%",
452
+ },
453
+ },
454
+ {
455
+ card: {
456
+ "border-style": "solid",
457
+ "border-width": "1px",
458
+ display: "flex",
459
+ "flex-direction": "column",
460
+ "justify-content": "start",
461
+ "align-items": "start",
462
+ },
463
+ image: {
464
+ width: "100%",
465
+ height: "280px",
466
+ "object-fit": "cover",
467
+ "margin-bottom": "lg",
468
+ },
469
+ content_wrapper: {
470
+ width: "100%",
471
+ display: "flex",
472
+ "flex-direction": "column",
473
+ "justify-content": "start",
474
+ "align-items": "start",
475
+ "padding-left": "base",
476
+ "padding-right": "base",
477
+ "padding-bottom": "base",
478
+ },
479
+ title: {
480
+ color: "text-1",
481
+ "font-size": "lg",
482
+ "font-weight": "600",
483
+ "text-align": "center",
484
+ "margin-bottom": "sm",
485
+ },
486
+ description: {
487
+ color: "text-2",
488
+ "text-align": "left",
489
+ "margin-bottom": "lg",
490
+ "line-height": "1.5",
491
+ },
492
+ price_container: {
493
+ display: "flex",
494
+ "flex-direction": "row",
495
+ "align-items": "center",
496
+ "margin-bottom": "lg",
497
+ "row-gap": "2xs",
498
+ "column-gap": "base",
499
+ },
500
+ actual_price: {
501
+ "font-size": "xl",
502
+ "font-weight": "700",
503
+ color: "text-1",
504
+ },
505
+ discount_price: {
506
+ "font-size": "sm",
507
+ color: "text-3",
508
+ "text-decoration": "line-through",
509
+ },
510
+ off_percent: {
511
+ "font-size": "sm",
512
+ "font-weight": "600",
513
+ color: "success",
514
+ },
515
+ cta: {
516
+ width: "100%",
517
+ },
518
+ },
519
+ ],
520
+ products_without_images: [
521
+ {
522
+ card: {
523
+ "border-style": "solid",
524
+ "border-width": "1px",
525
+ display: "flex",
526
+ "flex-direction": "column",
527
+ "justify-content": "start",
528
+ "align-items": "start",
529
+ },
530
+ content_wrapper: {
531
+ width: "100%",
532
+ display: "flex",
533
+ "flex-direction": "column",
534
+ "justify-content": "start",
535
+ "align-items": "start",
536
+ "padding-left": "base",
537
+ "padding-right": "base",
538
+ "padding-bottom": "base",
539
+ "padding-top": "base",
540
+ },
541
+ title: {
542
+ color: "text-1",
543
+ "font-size": "lg",
544
+ "font-weight": "600",
545
+ "text-align": "center",
546
+ "margin-bottom": "sm",
547
+ },
548
+ description: {
549
+ color: "text-2",
550
+ "text-align": "left",
551
+ "margin-bottom": "lg",
552
+ "line-height": "1.5",
553
+ },
554
+ price_container: {
555
+ display: "flex",
556
+ "flex-direction": "row",
557
+ "align-items": "center",
558
+ "margin-bottom": "lg",
559
+ "row-gap": "2xs",
560
+ "column-gap": "base",
561
+ },
562
+ actual_price: {
563
+ "font-size": "xl",
564
+ "font-weight": "700",
565
+ color: "text-1",
566
+ },
567
+ discount_price: {
568
+ "font-size": "sm",
569
+ color: "text-3",
570
+ "text-decoration": "line-through",
571
+ },
572
+ off_percent: {
573
+ "font-size": "sm",
574
+ "font-weight": "600",
575
+ color: "success",
576
+ },
577
+ cta: {
578
+ width: "100%",
579
+ },
580
+ },
581
+ {
582
+ card: {
583
+ "border-style": "solid",
584
+ "border-width": "1px",
585
+ display: "flex",
586
+ "flex-direction": "column",
587
+ "justify-content": "start",
588
+ "align-items": "start",
589
+ },
590
+ content_wrapper: {
591
+ width: "100%",
592
+ display: "flex",
593
+ "flex-direction": "column",
594
+ "justify-content": "start",
595
+ "align-items": "start",
596
+ "padding-left": "base",
597
+ "padding-right": "base",
598
+ "padding-bottom": "base",
599
+ "padding-top": "base",
600
+ },
601
+ title: {
602
+ color: "text-1",
603
+ "font-size": "lg",
604
+ "font-weight": "600",
605
+ "text-align": "center",
606
+ "margin-bottom": "sm",
607
+ },
608
+ description: {
609
+ color: "text-2",
610
+ "text-align": "left",
611
+ "margin-bottom": "lg",
612
+ "line-height": "1.5",
613
+ },
614
+ price_container: {
615
+ display: "flex",
616
+ "flex-direction": "row",
617
+ "align-items": "center",
618
+ "margin-bottom": "lg",
619
+ "row-gap": "2xs",
620
+ "column-gap": "base",
621
+ },
622
+ actual_price: {
623
+ "font-size": "xl",
624
+ "font-weight": "700",
625
+ color: "text-1",
626
+ },
627
+ discount_price: {
628
+ "font-size": "sm",
629
+ color: "text-3",
630
+ "text-decoration": "line-through",
631
+ },
632
+ off_percent: {
633
+ "font-size": "sm",
634
+ "font-weight": "600",
635
+ color: "success",
636
+ },
637
+ cta: {
638
+ width: "100%",
639
+ },
640
+ },
641
+ ],
642
+ },
643
+ ],
644
+ product_groups: [
645
+ {
646
+ products_with_images_levoGroup: {
647
+ display: "grid",
648
+ "grid-template-columns": "repeat(3, minmax(0, 1fr))",
649
+ "column-gap": "base",
650
+ tablet: {
651
+ "grid-template-columns": "repeat(1, minmax(0, 1fr))",
652
+ "row-gap": "base",
653
+ },
654
+ },
655
+ products_with_images: [
656
+ {
657
+ title: {
658
+ "font-size": "lg",
659
+ },
660
+ card: {
661
+ "border-style": "solid",
662
+ "border-width": "1px",
663
+ "border-color": "border",
664
+ },
665
+ content_wrapper: {
666
+ "border-style": "solid",
667
+ "border-width": "1px",
668
+ "border-color": "border",
669
+ padding: "base",
670
+ display: "flex",
671
+ "flex-direction": "column",
672
+ "row-gap": "xs",
673
+ },
674
+ price_container: {
675
+ display: "flex",
676
+ "column-gap": "base",
677
+ },
678
+ image: {
679
+ tablet: {
680
+ width: "100%",
681
+ },
682
+ },
683
+ },
684
+ {
685
+ title: {
686
+ "font-size": "lg",
687
+ },
688
+ card: {
689
+ "border-style": "solid",
690
+ "border-width": "1px",
691
+ "border-color": "border",
692
+ },
693
+ content_wrapper: {
694
+ "border-style": "solid",
695
+ "border-width": "1px",
696
+ "border-color": "border",
697
+ padding: "base",
698
+ display: "flex",
699
+ "flex-direction": "column",
700
+ "row-gap": "xs",
701
+ },
702
+ price_container: {
703
+ display: "flex",
704
+ "column-gap": "base",
705
+ },
706
+ image: {
707
+ tablet: {
708
+ width: "100%",
709
+ },
710
+ },
711
+ },
712
+ {
713
+ title: {
714
+ "font-size": "lg",
715
+ },
716
+ card: {
717
+ "border-style": "solid",
718
+ "border-width": "1px",
719
+ "border-color": "border",
720
+ },
721
+ content_wrapper: {
722
+ "border-style": "solid",
723
+ "border-width": "1px",
724
+ "border-color": "border",
725
+ padding: "base",
726
+ display: "flex",
727
+ "flex-direction": "column",
728
+ "row-gap": "xs",
729
+ },
730
+ price_container: {
731
+ display: "flex",
732
+ "column-gap": "base",
733
+ },
734
+ image: {
735
+ tablet: {
736
+ width: "100%",
737
+ },
738
+ },
739
+ },
740
+ {
741
+ title: {
742
+ "font-size": "lg",
743
+ },
744
+ card: {
745
+ "border-style": "solid",
746
+ "border-width": "1px",
747
+ "border-color": "border",
748
+ },
749
+ content_wrapper: {
750
+ "border-style": "solid",
751
+ "border-width": "1px",
752
+ "border-color": "border",
753
+ padding: "base",
754
+ },
755
+ },
756
+ {
757
+ title: {
758
+ "font-size": "lg",
759
+ },
760
+ card: {
761
+ "border-style": "solid",
762
+ "border-width": "1px",
763
+ "border-color": "border",
764
+ },
765
+ content_wrapper: {
766
+ "border-style": "solid",
767
+ "border-width": "1px",
768
+ "border-color": "border",
769
+ padding: "base",
770
+ },
771
+ },
772
+ {
773
+ title: {
774
+ "font-size": "lg",
775
+ },
776
+ },
777
+ {
778
+ title: {
779
+ "font-size": "lg",
780
+ },
781
+ },
782
+ ],
783
+ products_without_images: [
784
+ {
785
+ title: {
786
+ "font-size": "lg",
787
+ },
788
+ card: {
789
+ "border-style": "solid",
790
+ "border-width": "1px",
791
+ "border-color": "border",
792
+ padding: "base",
793
+ width: "300px",
794
+ tablet: {
795
+ width: "100%",
796
+ },
797
+ },
798
+ price_container: {
799
+ "margin-top": "14xl",
800
+ },
801
+ },
802
+ ],
803
+ groups_container: {
804
+ display: "flex",
805
+ "column-gap": "base",
806
+ tablet: {
807
+ "flex-direction": "column",
808
+ "row-gap": "base",
809
+ },
810
+ },
811
+ },
812
+ ],
813
+ },
814
+ content: DEFAULT_CONTENT,
815
+ config: {},
816
+ },
817
+ ],
818
+ };