@deneb-ui/cli 2.0.21 → 2.0.22
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.
- package/bin/index.js +67 -198
- package/package.json +1 -1
- package/src/recipes/cosmetics-beauty-store.json +1097 -0
- package/src/recipes/electronics-gadgets-store.json +1080 -0
- package/src/recipes/fashion-apparel-store.json +1074 -0
- package/src/tools/deneb-doctor.cjs +646 -0
- package/src/tools/recipe-engine.cjs +30 -0
- package/src/tools/template-converter.cjs +19 -6
|
@@ -0,0 +1,1097 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "cosmetics-beauty-store",
|
|
3
|
+
"label": "Clean Skincare & Botanical Cosmetics Storefront",
|
|
4
|
+
"description": "Specialized recipe for skincare, dermatological cosmetics, clean makeup, and botanical beauty with routine builders, clinical claim badges, INCI ingredients transparency, and WhatsApp beauty consultation.",
|
|
5
|
+
"signatures": {
|
|
6
|
+
"keywords": [
|
|
7
|
+
"cosmetics",
|
|
8
|
+
"beauty",
|
|
9
|
+
"skincare",
|
|
10
|
+
"makeup",
|
|
11
|
+
"glow",
|
|
12
|
+
"serum",
|
|
13
|
+
"lotion",
|
|
14
|
+
"clean-beauty",
|
|
15
|
+
"botanical",
|
|
16
|
+
"dermatology",
|
|
17
|
+
"organic",
|
|
18
|
+
"moisturizer",
|
|
19
|
+
"toner",
|
|
20
|
+
"spf",
|
|
21
|
+
"cleanser",
|
|
22
|
+
"hyaluronic",
|
|
23
|
+
"retinol",
|
|
24
|
+
"wellness"
|
|
25
|
+
],
|
|
26
|
+
"componentRoles": [
|
|
27
|
+
"Navbar",
|
|
28
|
+
"Hero",
|
|
29
|
+
"RoutineSteps",
|
|
30
|
+
"ProductGrid",
|
|
31
|
+
"ProductCard",
|
|
32
|
+
"IngredientsModal",
|
|
33
|
+
"Reviews",
|
|
34
|
+
"CartDrawer",
|
|
35
|
+
"SkinQuizBanner",
|
|
36
|
+
"DermatologistBadge",
|
|
37
|
+
"Footer",
|
|
38
|
+
"ProductDetail"
|
|
39
|
+
]
|
|
40
|
+
},
|
|
41
|
+
"gridRules": {
|
|
42
|
+
"cardComponentNames": [
|
|
43
|
+
"ProductCard",
|
|
44
|
+
"BeautyCard",
|
|
45
|
+
"SerumCard",
|
|
46
|
+
"SkincareCard",
|
|
47
|
+
"ItemCard",
|
|
48
|
+
"Card",
|
|
49
|
+
"CosmeticsCard"
|
|
50
|
+
],
|
|
51
|
+
"cardFields": [
|
|
52
|
+
{
|
|
53
|
+
"suffix": "Image",
|
|
54
|
+
"type": "image",
|
|
55
|
+
"label": "Formula Photograph"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"suffix": "Badge",
|
|
59
|
+
"type": "text",
|
|
60
|
+
"label": "Badge"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"suffix": "Category",
|
|
64
|
+
"type": "text",
|
|
65
|
+
"label": "Routine Step / Category"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"suffix": "Name",
|
|
69
|
+
"type": "text",
|
|
70
|
+
"label": "Formula Title"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"suffix": "Price",
|
|
74
|
+
"type": "text",
|
|
75
|
+
"label": "Price"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"suffix": "SkinType",
|
|
79
|
+
"type": "text",
|
|
80
|
+
"label": "Skin Type Suitability"
|
|
81
|
+
}
|
|
82
|
+
],
|
|
83
|
+
"autoIndex": true,
|
|
84
|
+
"defaultCardPrefix": "product",
|
|
85
|
+
"withBasePathImages": true,
|
|
86
|
+
"safeNavigationButtons": true
|
|
87
|
+
},
|
|
88
|
+
"productDetailRules": {
|
|
89
|
+
"enabled": true,
|
|
90
|
+
"sectionPath": "product",
|
|
91
|
+
"sampleRoute": "/products/luminous-niacinamide-glow-serum",
|
|
92
|
+
"galleryWithBasePath": true,
|
|
93
|
+
"noStaticOnEditableAncestors": true
|
|
94
|
+
},
|
|
95
|
+
"actionRules": {
|
|
96
|
+
"splitActionAndLabel": true,
|
|
97
|
+
"whatsappKeywords": [
|
|
98
|
+
"whatsapp",
|
|
99
|
+
"wa.me",
|
|
100
|
+
"order via whatsapp",
|
|
101
|
+
"beauty consultation",
|
|
102
|
+
"ask esthetician",
|
|
103
|
+
"skin advisor",
|
|
104
|
+
"skincare consultation"
|
|
105
|
+
],
|
|
106
|
+
"actionFieldMapping": {
|
|
107
|
+
"whatsapp": {
|
|
108
|
+
"urlField": "whatsappCtaUrl",
|
|
109
|
+
"labelField": "whatsappCtaLabel"
|
|
110
|
+
},
|
|
111
|
+
"order": {
|
|
112
|
+
"urlField": "orderCtaUrl",
|
|
113
|
+
"labelField": "orderCtaLabel"
|
|
114
|
+
},
|
|
115
|
+
"promo": {
|
|
116
|
+
"urlField": "promoCtaUrl",
|
|
117
|
+
"labelField": "promoCtaLabel"
|
|
118
|
+
},
|
|
119
|
+
"routine": {
|
|
120
|
+
"urlField": "routineUrl",
|
|
121
|
+
"labelField": "routineLabel"
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
"socialRules": {
|
|
126
|
+
"platforms": [
|
|
127
|
+
"instagram",
|
|
128
|
+
"tiktok",
|
|
129
|
+
"youtube",
|
|
130
|
+
"pinterest",
|
|
131
|
+
"facebook"
|
|
132
|
+
],
|
|
133
|
+
"targetPath": "common.footer"
|
|
134
|
+
},
|
|
135
|
+
"pages": [
|
|
136
|
+
{
|
|
137
|
+
"id": "home",
|
|
138
|
+
"label": "Home",
|
|
139
|
+
"route": "/",
|
|
140
|
+
"required": true
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"id": "shop",
|
|
144
|
+
"label": "All Formulas",
|
|
145
|
+
"route": "/shop"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"id": "routine",
|
|
149
|
+
"label": "The 3-Step Routine",
|
|
150
|
+
"route": "/routine"
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"id": "ingredients",
|
|
154
|
+
"label": "Botanical Actives & INCI",
|
|
155
|
+
"route": "/ingredients"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"id": "about",
|
|
159
|
+
"label": "Clean Science & Ethos",
|
|
160
|
+
"route": "/about"
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"id": "contact",
|
|
164
|
+
"label": "Skin Consultation",
|
|
165
|
+
"route": "/contact",
|
|
166
|
+
"required": true
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"id": "product",
|
|
170
|
+
"label": "Formula Detail",
|
|
171
|
+
"route": "/products/luminous-niacinamide-glow-serum"
|
|
172
|
+
}
|
|
173
|
+
],
|
|
174
|
+
"sections": [
|
|
175
|
+
{
|
|
176
|
+
"id": "common",
|
|
177
|
+
"path": "common",
|
|
178
|
+
"type": "object",
|
|
179
|
+
"label": "Shared Storefront Content",
|
|
180
|
+
"fields": [
|
|
181
|
+
{
|
|
182
|
+
"key": "websiteTitle",
|
|
183
|
+
"type": "text",
|
|
184
|
+
"label": "Beauty Brand Name",
|
|
185
|
+
"required": true
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"key": "shortDescription",
|
|
189
|
+
"type": "textarea",
|
|
190
|
+
"label": "Brand Philosophy"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"key": "tagline",
|
|
194
|
+
"type": "text",
|
|
195
|
+
"label": "Clean Beauty Tagline"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"key": "announcementText",
|
|
199
|
+
"type": "text",
|
|
200
|
+
"label": "Header Announcement Bar"
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"key": "logoUrl",
|
|
204
|
+
"type": "image",
|
|
205
|
+
"label": "Brand Logo",
|
|
206
|
+
"recommendedWidth": 512,
|
|
207
|
+
"recommendedHeight": 512
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"key": "brandUrl",
|
|
211
|
+
"type": "text",
|
|
212
|
+
"label": "Home Link URL"
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"key": "headerCtaLabel",
|
|
216
|
+
"type": "text",
|
|
217
|
+
"label": "Header Action Label"
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"key": "navLabels",
|
|
221
|
+
"type": "object",
|
|
222
|
+
"label": "Navigation Links",
|
|
223
|
+
"fields": [
|
|
224
|
+
{
|
|
225
|
+
"key": "home",
|
|
226
|
+
"type": "text",
|
|
227
|
+
"label": "Home Link"
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"key": "shop",
|
|
231
|
+
"type": "text",
|
|
232
|
+
"label": "Shop All Link"
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"key": "routine",
|
|
236
|
+
"type": "text",
|
|
237
|
+
"label": "Routine Guide Link"
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"key": "ingredients",
|
|
241
|
+
"type": "text",
|
|
242
|
+
"label": "Clean Ingredients Link"
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"key": "about",
|
|
246
|
+
"type": "text",
|
|
247
|
+
"label": "Science & Ethos Link"
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
"key": "contact",
|
|
251
|
+
"type": "text",
|
|
252
|
+
"label": "Skin Advisor Link"
|
|
253
|
+
}
|
|
254
|
+
]
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
"key": "business",
|
|
258
|
+
"type": "object",
|
|
259
|
+
"label": "Consultation Desk & Salon",
|
|
260
|
+
"fields": [
|
|
261
|
+
{
|
|
262
|
+
"key": "phone",
|
|
263
|
+
"type": "tel",
|
|
264
|
+
"label": "Skin Care Hotline"
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
"key": "whatsapp",
|
|
268
|
+
"type": "text",
|
|
269
|
+
"label": "WhatsApp Esthetician Desk"
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"key": "email",
|
|
273
|
+
"type": "email",
|
|
274
|
+
"label": "Customer Care Email"
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"key": "location",
|
|
278
|
+
"type": "object",
|
|
279
|
+
"label": "Botanical Studio Address",
|
|
280
|
+
"fields": [
|
|
281
|
+
{
|
|
282
|
+
"key": "address",
|
|
283
|
+
"type": "text",
|
|
284
|
+
"label": "Street Address"
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
"key": "city",
|
|
288
|
+
"type": "text",
|
|
289
|
+
"label": "City"
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
"key": "country",
|
|
293
|
+
"type": "text",
|
|
294
|
+
"label": "Country"
|
|
295
|
+
}
|
|
296
|
+
]
|
|
297
|
+
}
|
|
298
|
+
]
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
"key": "footer",
|
|
302
|
+
"type": "object",
|
|
303
|
+
"label": "Footer Columns & Certifications",
|
|
304
|
+
"fields": [
|
|
305
|
+
{
|
|
306
|
+
"key": "routinesHeading",
|
|
307
|
+
"type": "text",
|
|
308
|
+
"label": "Routines Column Heading"
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"key": "routinesLink1",
|
|
312
|
+
"type": "text",
|
|
313
|
+
"label": "Routine Link 1"
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"key": "routinesLink2",
|
|
317
|
+
"type": "text",
|
|
318
|
+
"label": "Routine Link 2"
|
|
319
|
+
},
|
|
320
|
+
{
|
|
321
|
+
"key": "routinesLink3",
|
|
322
|
+
"type": "text",
|
|
323
|
+
"label": "Routine Link 3"
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"key": "routinesLink4",
|
|
327
|
+
"type": "text",
|
|
328
|
+
"label": "Routine Link 4"
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
"key": "scienceHeading",
|
|
332
|
+
"type": "text",
|
|
333
|
+
"label": "Science & Standards Heading"
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
"key": "scienceLink1",
|
|
337
|
+
"type": "text",
|
|
338
|
+
"label": "Science Link 1"
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"key": "scienceLink2",
|
|
342
|
+
"type": "text",
|
|
343
|
+
"label": "Science Link 2"
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
"key": "scienceLink3",
|
|
347
|
+
"type": "text",
|
|
348
|
+
"label": "Science Link 3"
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
"key": "supportHeading",
|
|
352
|
+
"type": "text",
|
|
353
|
+
"label": "Skin Support Heading"
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"key": "supportLink1",
|
|
357
|
+
"type": "text",
|
|
358
|
+
"label": "Support Link 1"
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
"key": "supportLink2",
|
|
362
|
+
"type": "text",
|
|
363
|
+
"label": "Support Link 2"
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"key": "supportLink3",
|
|
367
|
+
"type": "text",
|
|
368
|
+
"label": "Support Link 3"
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"key": "instagramUrl",
|
|
372
|
+
"type": "text",
|
|
373
|
+
"label": "Instagram Profile URL"
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
"key": "tiktokUrl",
|
|
377
|
+
"type": "text",
|
|
378
|
+
"label": "TikTok Profile URL"
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"key": "pinterestUrl",
|
|
382
|
+
"type": "text",
|
|
383
|
+
"label": "Pinterest Profile URL"
|
|
384
|
+
}
|
|
385
|
+
]
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
"key": "copyright",
|
|
389
|
+
"type": "text",
|
|
390
|
+
"label": "Copyright Text"
|
|
391
|
+
}
|
|
392
|
+
]
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
"id": "home",
|
|
396
|
+
"path": "home",
|
|
397
|
+
"type": "object",
|
|
398
|
+
"label": "Home Page Content",
|
|
399
|
+
"fields": [
|
|
400
|
+
{
|
|
401
|
+
"key": "heroBadge",
|
|
402
|
+
"type": "text",
|
|
403
|
+
"label": "Hero Clinical Claim"
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
"key": "heroTitle",
|
|
407
|
+
"type": "text",
|
|
408
|
+
"label": "Hero Headline"
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
"key": "heroSummary",
|
|
412
|
+
"type": "textarea",
|
|
413
|
+
"label": "Hero Subtitle"
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"key": "heroImage",
|
|
417
|
+
"type": "image",
|
|
418
|
+
"label": "Hero Botanical Skin Photo",
|
|
419
|
+
"recommendedWidth": 1920,
|
|
420
|
+
"recommendedHeight": 1080
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"key": "heroStat1",
|
|
424
|
+
"type": "text",
|
|
425
|
+
"label": "Clinical Proof Metric 1"
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
"key": "heroStat2",
|
|
429
|
+
"type": "text",
|
|
430
|
+
"label": "Clinical Proof Metric 2"
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
"key": "primaryCtaLabel",
|
|
434
|
+
"type": "text",
|
|
435
|
+
"label": "Hero Primary Button"
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
"key": "secondaryCtaLabel",
|
|
439
|
+
"type": "text",
|
|
440
|
+
"label": "Hero Secondary Button"
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
"key": "tickerItem1",
|
|
444
|
+
"type": "text",
|
|
445
|
+
"label": "Clean Claim Ticker 1"
|
|
446
|
+
},
|
|
447
|
+
{
|
|
448
|
+
"key": "tickerItem2",
|
|
449
|
+
"type": "text",
|
|
450
|
+
"label": "Clean Claim Ticker 2"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"key": "tickerItem3",
|
|
454
|
+
"type": "text",
|
|
455
|
+
"label": "Clean Claim Ticker 3"
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"key": "tickerItem4",
|
|
459
|
+
"type": "text",
|
|
460
|
+
"label": "Clean Claim Ticker 4"
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
"key": "categoryLabel",
|
|
464
|
+
"type": "text",
|
|
465
|
+
"label": "Catalog Section Eyebrow"
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"key": "categoryTitle",
|
|
469
|
+
"type": "text",
|
|
470
|
+
"label": "Catalog Section Headline"
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
"key": "categoryDesc",
|
|
474
|
+
"type": "textarea",
|
|
475
|
+
"label": "Catalog Section Description"
|
|
476
|
+
},
|
|
477
|
+
{
|
|
478
|
+
"key": "categoryLabel1",
|
|
479
|
+
"type": "text",
|
|
480
|
+
"label": "Routine Step Tab 1"
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
"key": "categoryLabel2",
|
|
484
|
+
"type": "text",
|
|
485
|
+
"label": "Routine Step Tab 2"
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
"key": "categoryLabel3",
|
|
489
|
+
"type": "text",
|
|
490
|
+
"label": "Routine Step Tab 3"
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
"key": "categoryLabel4",
|
|
494
|
+
"type": "text",
|
|
495
|
+
"label": "Routine Step Tab 4"
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
"key": "product1Name",
|
|
499
|
+
"type": "text",
|
|
500
|
+
"label": "Formula 1 Title"
|
|
501
|
+
},
|
|
502
|
+
{
|
|
503
|
+
"key": "product1Category",
|
|
504
|
+
"type": "text",
|
|
505
|
+
"label": "Formula 1 Category"
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
"key": "product1Price",
|
|
509
|
+
"type": "text",
|
|
510
|
+
"label": "Formula 1 Price"
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"key": "product1Badge",
|
|
514
|
+
"type": "text",
|
|
515
|
+
"label": "Formula 1 Badge"
|
|
516
|
+
},
|
|
517
|
+
{
|
|
518
|
+
"key": "product1SkinType",
|
|
519
|
+
"type": "text",
|
|
520
|
+
"label": "Formula 1 Skin Types"
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"key": "product1Image",
|
|
524
|
+
"type": "image",
|
|
525
|
+
"label": "Formula 1 Photo"
|
|
526
|
+
},
|
|
527
|
+
{
|
|
528
|
+
"key": "product2Name",
|
|
529
|
+
"type": "text",
|
|
530
|
+
"label": "Formula 2 Title"
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
"key": "product2Category",
|
|
534
|
+
"type": "text",
|
|
535
|
+
"label": "Formula 2 Category"
|
|
536
|
+
},
|
|
537
|
+
{
|
|
538
|
+
"key": "product2Price",
|
|
539
|
+
"type": "text",
|
|
540
|
+
"label": "Formula 2 Price"
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
"key": "product2Badge",
|
|
544
|
+
"type": "text",
|
|
545
|
+
"label": "Formula 2 Badge"
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
"key": "product2SkinType",
|
|
549
|
+
"type": "text",
|
|
550
|
+
"label": "Formula 2 Skin Types"
|
|
551
|
+
},
|
|
552
|
+
{
|
|
553
|
+
"key": "product2Image",
|
|
554
|
+
"type": "image",
|
|
555
|
+
"label": "Formula 2 Photo"
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
"key": "product3Name",
|
|
559
|
+
"type": "text",
|
|
560
|
+
"label": "Formula 3 Title"
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"key": "product3Category",
|
|
564
|
+
"type": "text",
|
|
565
|
+
"label": "Formula 3 Category"
|
|
566
|
+
},
|
|
567
|
+
{
|
|
568
|
+
"key": "product3Price",
|
|
569
|
+
"type": "text",
|
|
570
|
+
"label": "Formula 3 Price"
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
"key": "product3Badge",
|
|
574
|
+
"type": "text",
|
|
575
|
+
"label": "Formula 3 Badge"
|
|
576
|
+
},
|
|
577
|
+
{
|
|
578
|
+
"key": "product3SkinType",
|
|
579
|
+
"type": "text",
|
|
580
|
+
"label": "Formula 3 Skin Types"
|
|
581
|
+
},
|
|
582
|
+
{
|
|
583
|
+
"key": "product3Image",
|
|
584
|
+
"type": "image",
|
|
585
|
+
"label": "Formula 3 Photo"
|
|
586
|
+
},
|
|
587
|
+
{
|
|
588
|
+
"key": "product4Name",
|
|
589
|
+
"type": "text",
|
|
590
|
+
"label": "Formula 4 Title"
|
|
591
|
+
},
|
|
592
|
+
{
|
|
593
|
+
"key": "product4Category",
|
|
594
|
+
"type": "text",
|
|
595
|
+
"label": "Formula 4 Category"
|
|
596
|
+
},
|
|
597
|
+
{
|
|
598
|
+
"key": "product4Price",
|
|
599
|
+
"type": "text",
|
|
600
|
+
"label": "Formula 4 Price"
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
"key": "product4Badge",
|
|
604
|
+
"type": "text",
|
|
605
|
+
"label": "Formula 4 Badge"
|
|
606
|
+
},
|
|
607
|
+
{
|
|
608
|
+
"key": "product4SkinType",
|
|
609
|
+
"type": "text",
|
|
610
|
+
"label": "Formula 4 Skin Types"
|
|
611
|
+
},
|
|
612
|
+
{
|
|
613
|
+
"key": "product4Image",
|
|
614
|
+
"type": "image",
|
|
615
|
+
"label": "Formula 4 Photo"
|
|
616
|
+
},
|
|
617
|
+
{
|
|
618
|
+
"key": "product5Name",
|
|
619
|
+
"type": "text",
|
|
620
|
+
"label": "Formula 5 Title"
|
|
621
|
+
},
|
|
622
|
+
{
|
|
623
|
+
"key": "product5Category",
|
|
624
|
+
"type": "text",
|
|
625
|
+
"label": "Formula 5 Category"
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
"key": "product5Price",
|
|
629
|
+
"type": "text",
|
|
630
|
+
"label": "Formula 5 Price"
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
"key": "product5Badge",
|
|
634
|
+
"type": "text",
|
|
635
|
+
"label": "Formula 5 Badge"
|
|
636
|
+
},
|
|
637
|
+
{
|
|
638
|
+
"key": "product5SkinType",
|
|
639
|
+
"type": "text",
|
|
640
|
+
"label": "Formula 5 Skin Types"
|
|
641
|
+
},
|
|
642
|
+
{
|
|
643
|
+
"key": "product5Image",
|
|
644
|
+
"type": "image",
|
|
645
|
+
"label": "Formula 5 Photo"
|
|
646
|
+
},
|
|
647
|
+
{
|
|
648
|
+
"key": "product6Name",
|
|
649
|
+
"type": "text",
|
|
650
|
+
"label": "Formula 6 Title"
|
|
651
|
+
},
|
|
652
|
+
{
|
|
653
|
+
"key": "product6Category",
|
|
654
|
+
"type": "text",
|
|
655
|
+
"label": "Formula 6 Category"
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
"key": "product6Price",
|
|
659
|
+
"type": "text",
|
|
660
|
+
"label": "Formula 6 Price"
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
"key": "product6Badge",
|
|
664
|
+
"type": "text",
|
|
665
|
+
"label": "Formula 6 Badge"
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
"key": "product6SkinType",
|
|
669
|
+
"type": "text",
|
|
670
|
+
"label": "Formula 6 Skin Types"
|
|
671
|
+
},
|
|
672
|
+
{
|
|
673
|
+
"key": "product6Image",
|
|
674
|
+
"type": "image",
|
|
675
|
+
"label": "Formula 6 Photo"
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
"key": "product7Name",
|
|
679
|
+
"type": "text",
|
|
680
|
+
"label": "Formula 7 Title"
|
|
681
|
+
},
|
|
682
|
+
{
|
|
683
|
+
"key": "product7Category",
|
|
684
|
+
"type": "text",
|
|
685
|
+
"label": "Formula 7 Category"
|
|
686
|
+
},
|
|
687
|
+
{
|
|
688
|
+
"key": "product7Price",
|
|
689
|
+
"type": "text",
|
|
690
|
+
"label": "Formula 7 Price"
|
|
691
|
+
},
|
|
692
|
+
{
|
|
693
|
+
"key": "product7Badge",
|
|
694
|
+
"type": "text",
|
|
695
|
+
"label": "Formula 7 Badge"
|
|
696
|
+
},
|
|
697
|
+
{
|
|
698
|
+
"key": "product7SkinType",
|
|
699
|
+
"type": "text",
|
|
700
|
+
"label": "Formula 7 Skin Types"
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
"key": "product7Image",
|
|
704
|
+
"type": "image",
|
|
705
|
+
"label": "Formula 7 Photo"
|
|
706
|
+
},
|
|
707
|
+
{
|
|
708
|
+
"key": "product8Name",
|
|
709
|
+
"type": "text",
|
|
710
|
+
"label": "Formula 8 Title"
|
|
711
|
+
},
|
|
712
|
+
{
|
|
713
|
+
"key": "product8Category",
|
|
714
|
+
"type": "text",
|
|
715
|
+
"label": "Formula 8 Category"
|
|
716
|
+
},
|
|
717
|
+
{
|
|
718
|
+
"key": "product8Price",
|
|
719
|
+
"type": "text",
|
|
720
|
+
"label": "Formula 8 Price"
|
|
721
|
+
},
|
|
722
|
+
{
|
|
723
|
+
"key": "product8Badge",
|
|
724
|
+
"type": "text",
|
|
725
|
+
"label": "Formula 8 Badge"
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
"key": "product8SkinType",
|
|
729
|
+
"type": "text",
|
|
730
|
+
"label": "Formula 8 Skin Types"
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
"key": "product8Image",
|
|
734
|
+
"type": "image",
|
|
735
|
+
"label": "Formula 8 Photo"
|
|
736
|
+
},
|
|
737
|
+
{
|
|
738
|
+
"key": "botanicalEyebrow",
|
|
739
|
+
"type": "text",
|
|
740
|
+
"label": "Actives Spotlight Eyebrow"
|
|
741
|
+
},
|
|
742
|
+
{
|
|
743
|
+
"key": "botanicalTitle",
|
|
744
|
+
"type": "text",
|
|
745
|
+
"label": "Actives Spotlight Title"
|
|
746
|
+
},
|
|
747
|
+
{
|
|
748
|
+
"key": "botanicalDesc",
|
|
749
|
+
"type": "textarea",
|
|
750
|
+
"label": "Actives Spotlight Description"
|
|
751
|
+
},
|
|
752
|
+
{
|
|
753
|
+
"key": "botanicalCtaLabel",
|
|
754
|
+
"type": "text",
|
|
755
|
+
"label": "Actives Spotlight Action"
|
|
756
|
+
},
|
|
757
|
+
{
|
|
758
|
+
"key": "botanicalImage",
|
|
759
|
+
"type": "image",
|
|
760
|
+
"label": "Botanical Extraction Image"
|
|
761
|
+
},
|
|
762
|
+
{
|
|
763
|
+
"key": "storyLabel",
|
|
764
|
+
"type": "text",
|
|
765
|
+
"label": "Science & Origin Eyebrow"
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
"key": "storyTitle",
|
|
769
|
+
"type": "text",
|
|
770
|
+
"label": "Science & Origin Headline"
|
|
771
|
+
},
|
|
772
|
+
{
|
|
773
|
+
"key": "storyDesc",
|
|
774
|
+
"type": "textarea",
|
|
775
|
+
"label": "Science & Origin Story"
|
|
776
|
+
},
|
|
777
|
+
{
|
|
778
|
+
"key": "storyImage",
|
|
779
|
+
"type": "image",
|
|
780
|
+
"label": "Clean Lab Formulation Photo"
|
|
781
|
+
},
|
|
782
|
+
{
|
|
783
|
+
"key": "stat1Value",
|
|
784
|
+
"type": "text",
|
|
785
|
+
"label": "Clinical Stat 1 Metric"
|
|
786
|
+
},
|
|
787
|
+
{
|
|
788
|
+
"key": "stat1Label",
|
|
789
|
+
"type": "text",
|
|
790
|
+
"label": "Clinical Stat 1 Label"
|
|
791
|
+
},
|
|
792
|
+
{
|
|
793
|
+
"key": "stat2Value",
|
|
794
|
+
"type": "text",
|
|
795
|
+
"label": "Clinical Stat 2 Metric"
|
|
796
|
+
},
|
|
797
|
+
{
|
|
798
|
+
"key": "stat2Label",
|
|
799
|
+
"type": "text",
|
|
800
|
+
"label": "Clinical Stat 2 Label"
|
|
801
|
+
},
|
|
802
|
+
{
|
|
803
|
+
"key": "stat3Value",
|
|
804
|
+
"type": "text",
|
|
805
|
+
"label": "Clinical Stat 3 Metric"
|
|
806
|
+
},
|
|
807
|
+
{
|
|
808
|
+
"key": "stat3Label",
|
|
809
|
+
"type": "text",
|
|
810
|
+
"label": "Clinical Stat 3 Label"
|
|
811
|
+
},
|
|
812
|
+
{
|
|
813
|
+
"key": "whatsappLabel",
|
|
814
|
+
"type": "text",
|
|
815
|
+
"label": "Beauty Consultation Eyebrow"
|
|
816
|
+
},
|
|
817
|
+
{
|
|
818
|
+
"key": "whatsappTitle",
|
|
819
|
+
"type": "text",
|
|
820
|
+
"label": "Beauty Consultation Headline"
|
|
821
|
+
},
|
|
822
|
+
{
|
|
823
|
+
"key": "whatsappDesc",
|
|
824
|
+
"type": "textarea",
|
|
825
|
+
"label": "Beauty Consultation Description"
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
"key": "whatsappCtaLabel",
|
|
829
|
+
"type": "text",
|
|
830
|
+
"label": "Consult Esthetician Button"
|
|
831
|
+
},
|
|
832
|
+
{
|
|
833
|
+
"key": "whatsappCtaUrl",
|
|
834
|
+
"type": "text",
|
|
835
|
+
"label": "Consult Esthetician WhatsApp URL"
|
|
836
|
+
}
|
|
837
|
+
]
|
|
838
|
+
},
|
|
839
|
+
{
|
|
840
|
+
"id": "product",
|
|
841
|
+
"path": "product",
|
|
842
|
+
"type": "object",
|
|
843
|
+
"label": "Product Detail Content",
|
|
844
|
+
"fields": [
|
|
845
|
+
{
|
|
846
|
+
"key": "name",
|
|
847
|
+
"type": "text",
|
|
848
|
+
"label": "Formula Title",
|
|
849
|
+
"required": true
|
|
850
|
+
},
|
|
851
|
+
{
|
|
852
|
+
"key": "price",
|
|
853
|
+
"type": "text",
|
|
854
|
+
"label": "Formula Price",
|
|
855
|
+
"required": true
|
|
856
|
+
},
|
|
857
|
+
{
|
|
858
|
+
"key": "badge",
|
|
859
|
+
"type": "text",
|
|
860
|
+
"label": "Clinical Tag / Badge"
|
|
861
|
+
},
|
|
862
|
+
{
|
|
863
|
+
"key": "description",
|
|
864
|
+
"type": "textarea",
|
|
865
|
+
"label": "Formula Editorial Overview"
|
|
866
|
+
},
|
|
867
|
+
{
|
|
868
|
+
"key": "featuredImage",
|
|
869
|
+
"type": "image",
|
|
870
|
+
"label": "Main Dropper / Bottle Photograph"
|
|
871
|
+
},
|
|
872
|
+
{
|
|
873
|
+
"key": "addToSelectionLabel",
|
|
874
|
+
"type": "text",
|
|
875
|
+
"label": "Add to Routine Button"
|
|
876
|
+
},
|
|
877
|
+
{
|
|
878
|
+
"key": "skinTypeLabel",
|
|
879
|
+
"type": "text",
|
|
880
|
+
"label": "Target Skin Types"
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
"key": "activesTitle",
|
|
884
|
+
"type": "text",
|
|
885
|
+
"label": "Key Botanical Actives Heading"
|
|
886
|
+
},
|
|
887
|
+
{
|
|
888
|
+
"key": "activesDetails",
|
|
889
|
+
"type": "textarea",
|
|
890
|
+
"label": "Active Concentrations Breakdown"
|
|
891
|
+
},
|
|
892
|
+
{
|
|
893
|
+
"key": "usageTitle",
|
|
894
|
+
"type": "text",
|
|
895
|
+
"label": "How to Use & Routine Placement"
|
|
896
|
+
},
|
|
897
|
+
{
|
|
898
|
+
"key": "usageDetails",
|
|
899
|
+
"type": "textarea",
|
|
900
|
+
"label": "Morning & Night Application Steps"
|
|
901
|
+
},
|
|
902
|
+
{
|
|
903
|
+
"key": "inciTitle",
|
|
904
|
+
"type": "text",
|
|
905
|
+
"label": "Full Ingredient Transparency (INCI)"
|
|
906
|
+
},
|
|
907
|
+
{
|
|
908
|
+
"key": "inciDetails",
|
|
909
|
+
"type": "textarea",
|
|
910
|
+
"label": "Full Ingredient List"
|
|
911
|
+
},
|
|
912
|
+
{
|
|
913
|
+
"key": "shippingTitle",
|
|
914
|
+
"type": "text",
|
|
915
|
+
"label": "Eco Delivery & Packaging Promise"
|
|
916
|
+
},
|
|
917
|
+
{
|
|
918
|
+
"key": "shippingSummary",
|
|
919
|
+
"type": "textarea",
|
|
920
|
+
"label": "Islandwide Delivery & Temperature Controlled Shipping"
|
|
921
|
+
},
|
|
922
|
+
{
|
|
923
|
+
"key": "shippingReturns",
|
|
924
|
+
"type": "textarea",
|
|
925
|
+
"label": "30-Day Happiness Guarantee"
|
|
926
|
+
},
|
|
927
|
+
{
|
|
928
|
+
"key": "relatedLabel",
|
|
929
|
+
"type": "text",
|
|
930
|
+
"label": "SYNERGISTIC FORMULAS"
|
|
931
|
+
},
|
|
932
|
+
{
|
|
933
|
+
"key": "relatedTitle",
|
|
934
|
+
"type": "text",
|
|
935
|
+
"label": "Pair With This Routine Step"
|
|
936
|
+
}
|
|
937
|
+
]
|
|
938
|
+
}
|
|
939
|
+
],
|
|
940
|
+
"defaults": {
|
|
941
|
+
"common": {
|
|
942
|
+
"websiteTitle": "AURA BOTANICA",
|
|
943
|
+
"shortDescription": "Bio-fermented active botanicals and dermatologically proven clean clinical skincare. Formulated to fortify your skin barrier and restore luminous cellular vitality.",
|
|
944
|
+
"tagline": "Clean Botanical Dermatology",
|
|
945
|
+
"announcementText": "Complimentary Deluxe Mini Trio with orders over LKR 10,000 — 100% Recyclable Glass Packaging",
|
|
946
|
+
"logoUrl": "/logo.svg",
|
|
947
|
+
"brandUrl": "/",
|
|
948
|
+
"headerCtaLabel": "Find Your Routine",
|
|
949
|
+
"copyright": "© 2026 AURA BOTANICA Laboratories. All rights reserved.",
|
|
950
|
+
"navLabels": {
|
|
951
|
+
"home": "Home",
|
|
952
|
+
"shop": "All Formulas",
|
|
953
|
+
"routine": "The 3-Step Routine",
|
|
954
|
+
"ingredients": "Clean Actives",
|
|
955
|
+
"about": "Our Science",
|
|
956
|
+
"contact": "Skin Advisor"
|
|
957
|
+
},
|
|
958
|
+
"business": {
|
|
959
|
+
"phone": "+94 11 765 4321",
|
|
960
|
+
"whatsapp": "94777654321",
|
|
961
|
+
"email": "esthetician@aurabotanica.com",
|
|
962
|
+
"location": {
|
|
963
|
+
"address": "25 Ward Place, Cinnamon Gardens",
|
|
964
|
+
"city": "Colombo 07",
|
|
965
|
+
"country": "Sri Lanka"
|
|
966
|
+
}
|
|
967
|
+
},
|
|
968
|
+
"footer": {
|
|
969
|
+
"routinesHeading": "Targeted Routines",
|
|
970
|
+
"routinesLink1": "Barrier Defense Routine",
|
|
971
|
+
"routinesLink2": "Cellular Glow & Brightening",
|
|
972
|
+
"routinesLink3": "Blemish & Pore Balance",
|
|
973
|
+
"routinesLink4": "Overnight Deep Recovery",
|
|
974
|
+
"scienceHeading": "Clean Dermatology",
|
|
975
|
+
"scienceLink1": "Clinical Efficacy Studies",
|
|
976
|
+
"scienceLink2": "INCI Ingredient Dictionary",
|
|
977
|
+
"scienceLink3": "Dermatologist Panel Review",
|
|
978
|
+
"supportHeading": "Client Concierge",
|
|
979
|
+
"supportLink1": "Personalized Routine Assessment",
|
|
980
|
+
"supportLink2": "Glass Bottle Recycle Program",
|
|
981
|
+
"supportLink3": "Shipping & Climate Assurance",
|
|
982
|
+
"instagramUrl": "https://instagram.com",
|
|
983
|
+
"tiktokUrl": "https://tiktok.com",
|
|
984
|
+
"pinterestUrl": "https://pinterest.com"
|
|
985
|
+
}
|
|
986
|
+
},
|
|
987
|
+
"home": {
|
|
988
|
+
"heroBadge": "CLINICALLY PROVEN · DERMATOLOGIST TESTED · 100% VEGAN",
|
|
989
|
+
"heroTitle": "Restore Your Barrier. Awaken Luminous Skin.",
|
|
990
|
+
"heroSummary": "High-potency 10% Niacinamide paired with bio-fermented Centella and triple-weight Hyaluronic Acid. Designed to strengthen delicate skin barriers and impart an undeniable dewy glow.",
|
|
991
|
+
"heroImage": "https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?w=1920&q=85",
|
|
992
|
+
"heroStat1": "+92% Barrier Hydration in 7 Days",
|
|
993
|
+
"heroStat2": "-38% Hyperpigmentation in 4 Weeks",
|
|
994
|
+
"primaryCtaLabel": "Shop The Serum",
|
|
995
|
+
"secondaryCtaLabel": "Build Your 3-Step Routine",
|
|
996
|
+
"tickerItem1": "Cruelty-Free & Leaping Bunny Certified",
|
|
997
|
+
"tickerItem2": "Zero Sulfates, Parabens, Synthetic Fragrance",
|
|
998
|
+
"tickerItem3": "Amber UV-Protected Glass Packaging",
|
|
999
|
+
"tickerItem4": "Free WhatsApp Esthetician Consultation",
|
|
1000
|
+
"categoryLabel": "FORMULA CATALOG",
|
|
1001
|
+
"categoryTitle": "The Botanical Collection",
|
|
1002
|
+
"categoryDesc": "Every formula is calibrated to physiological skin pH (5.0 - 5.5) for optimal microbiome balance.",
|
|
1003
|
+
"categoryLabel1": "Cleanse",
|
|
1004
|
+
"categoryLabel2": "Treat (Serums)",
|
|
1005
|
+
"categoryLabel3": "Hydrate & Lock",
|
|
1006
|
+
"categoryLabel4": "Daily Shield (SPF)",
|
|
1007
|
+
"product1Name": "Luminous 10% Niacinamide Glow Serum",
|
|
1008
|
+
"product1Category": "Treat (Serums)",
|
|
1009
|
+
"product1Price": "LKR 7,800",
|
|
1010
|
+
"product1Badge": "Cult Favorite",
|
|
1011
|
+
"product1SkinType": "All Skin Types · Dull & Dehydrated",
|
|
1012
|
+
"product1Image": "https://images.unsplash.com/photo-1620916566398-39f1143ab7be?w=800&q=85",
|
|
1013
|
+
"product2Name": "Ceramide Barrier Defense Soufflé",
|
|
1014
|
+
"product2Category": "Hydrate & Lock",
|
|
1015
|
+
"product2Price": "LKR 9,200",
|
|
1016
|
+
"product2Badge": "Derm Pick",
|
|
1017
|
+
"product2SkinType": "Dry · Sensitive · Compromised Barrier",
|
|
1018
|
+
"product2Image": "https://images.unsplash.com/photo-1608248597359-299d63c5a146?w=800&q=85",
|
|
1019
|
+
"product3Name": "Botanical Rosehip & Bakuchiol Facial Oil",
|
|
1020
|
+
"product3Category": "Hydrate & Lock",
|
|
1021
|
+
"product3Price": "LKR 8,400",
|
|
1022
|
+
"product3Badge": "Natural Retinol",
|
|
1023
|
+
"product3SkinType": "Mature · Dry · Uneven Texture",
|
|
1024
|
+
"product3Image": "https://images.unsplash.com/photo-1601049541289-9b1b7bbbfe19?w=800&q=85",
|
|
1025
|
+
"product4Name": "Velvet Cloud Amino Acid Gentle Cleanser",
|
|
1026
|
+
"product4Category": "Cleanse",
|
|
1027
|
+
"product4Price": "LKR 5,600",
|
|
1028
|
+
"product4Badge": "Bestseller",
|
|
1029
|
+
"product4SkinType": "Sensitive · Combination · Normal",
|
|
1030
|
+
"product4Image": "https://images.unsplash.com/photo-1556228720-195a672e8a03?w=800&q=85",
|
|
1031
|
+
"product5Name": "Mineral Dew Invisible Glow SPF 50+ PA++++",
|
|
1032
|
+
"product5Category": "Daily Shield (SPF)",
|
|
1033
|
+
"product5Price": "LKR 7,200",
|
|
1034
|
+
"product5Badge": "Zero White Cast",
|
|
1035
|
+
"product5SkinType": "All Skin Types · Non-Comedogenic",
|
|
1036
|
+
"product5Image": "https://images.unsplash.com/photo-1598440947619-2c35fc9aa908?w=800&q=85",
|
|
1037
|
+
"product6Name": "Centella & Green Tea Calming Essence",
|
|
1038
|
+
"product6Category": "Cleanse",
|
|
1039
|
+
"product6Price": "LKR 6,400",
|
|
1040
|
+
"product6Badge": "Soothing",
|
|
1041
|
+
"product6SkinType": "Acne-Prone · Reactive · Redness",
|
|
1042
|
+
"product6Image": "https://images.unsplash.com/photo-1608248543803-ba4f8c70ae0b?w=800&q=85",
|
|
1043
|
+
"product7Name": "Multi-Peptide Eye Contour Sculpting Gel",
|
|
1044
|
+
"product7Category": "Treat (Serums)",
|
|
1045
|
+
"product7Price": "LKR 8,900",
|
|
1046
|
+
"product7Badge": "New",
|
|
1047
|
+
"product7SkinType": "Dark Circles · Puffiness · Fine Lines",
|
|
1048
|
+
"product7Image": "https://images.unsplash.com/photo-1512290900672-1f023075b637?w=800&q=85",
|
|
1049
|
+
"product8Name": "Bio-Enzyme Radiance Resurfacing Mask",
|
|
1050
|
+
"product8Category": "Treat (Serums)",
|
|
1051
|
+
"product8Price": "LKR 7,500",
|
|
1052
|
+
"product8Badge": "Weekly Reset",
|
|
1053
|
+
"product8SkinType": "Congested · Rough Texture",
|
|
1054
|
+
"product8Image": "https://images.unsplash.com/photo-1567928815104-b7980ee5032e?w=800&q=85",
|
|
1055
|
+
"botanicalEyebrow": "CONSCIOUS EXTRACTION",
|
|
1056
|
+
"botanicalTitle": "Cold-Pressed Actives. Maximum Bio-Availability.",
|
|
1057
|
+
"botanicalDesc": "High heat extraction degrades fragile vitamins. We use low-temperature supercritical CO2 extraction to preserve 100% of the phytonutrients, antioxidants, and essential omegas present in our botanical harvests.",
|
|
1058
|
+
"botanicalCtaLabel": "Read Our Extraction Standard",
|
|
1059
|
+
"botanicalImage": "https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?w=1200&q=85",
|
|
1060
|
+
"storyLabel": "LABORATORY ETHOS",
|
|
1061
|
+
"storyTitle": "Clean Science Backed by Independent Dermatologists",
|
|
1062
|
+
"storyDesc": "AURA BOTANICA was founded by a team of cosmetic chemists and dermatologists tired of greenwashed skincare. Every active ingredient in our dispensary is clinically verified for skin penetration and barrier reinforcement.",
|
|
1063
|
+
"storyImage": "https://images.unsplash.com/photo-1532187863486-abf9dbad1b69?w=900&q=85",
|
|
1064
|
+
"stat1Value": "5.2 pH",
|
|
1065
|
+
"stat1Label": "Biocompatible Physiological Acid Mantle",
|
|
1066
|
+
"stat2Value": "100%",
|
|
1067
|
+
"stat2Label": "Glass Bottles & Sugar Cane PCR Caps",
|
|
1068
|
+
"stat3Value": "0%",
|
|
1069
|
+
"stat3Label": "Artificial Fragrances or Essential Oil Irritants",
|
|
1070
|
+
"whatsappLabel": "ESTHETICIAN CONSULTATION",
|
|
1071
|
+
"whatsappTitle": "Receive a Tailored Skincare Regimen",
|
|
1072
|
+
"whatsappDesc": "Struggling with breakouts, moisture barrier damage, or finding the right SPF? Share your skin concerns with our licensed esthetician on WhatsApp for an ingredient-matched routine and direct ordering.",
|
|
1073
|
+
"whatsappCtaLabel": "Chat with Our Esthetician",
|
|
1074
|
+
"whatsappCtaUrl": "https://wa.me/94777654321?text=Hi%20AURA%20BOTANICA%2C%20I'd%20like%20a%20skincare%20consultation%20and%20personalized%20routine%20recommendation."
|
|
1075
|
+
},
|
|
1076
|
+
"product": {
|
|
1077
|
+
"name": "Luminous 10% Niacinamide Glow Serum",
|
|
1078
|
+
"price": "LKR 7,800",
|
|
1079
|
+
"badge": "CULT FAVORITE",
|
|
1080
|
+
"description": "A featherlight multi-tasking treatment formulated with pure clinical-grade 10% Niacinamide (Vitamin B3), 2% Zinc PCA, and fermented Centella Asiatica to visibly minimize pores, balance sebum, and amplify radiance.",
|
|
1081
|
+
"featuredImage": "https://images.unsplash.com/photo-1620916566398-39f1143ab7be?w=1000&q=85",
|
|
1082
|
+
"addToSelectionLabel": "Add to Routine",
|
|
1083
|
+
"skinTypeLabel": "Suitable for all skin types including reactive, blemish-prone, and sensitized skin.",
|
|
1084
|
+
"activesTitle": "Key Botanical & Clinical Actives",
|
|
1085
|
+
"activesDetails": "10% Pure Niacinamide: Boosts ceramide synthesis and evens skin tone | 2% Zinc PCA: Normalizes oil production without dehydrating | Bio-Fermented Centella Asiatica: Calms redness and repairs compromised micro-vessels | Triple Molecular Weight Hyaluronic Acid: Multi-depth cellular hydration.",
|
|
1086
|
+
"usageTitle": "How to Use in Your Routine",
|
|
1087
|
+
"usageDetails": "Apply 3-4 drops onto cleansed, slightly damp face and neck morning and evening. Gently press into skin with fingertips until absorbed. Follow with your Ceramide Defense Soufflé and daytime SPF 50+.",
|
|
1088
|
+
"inciTitle": "Full Ingredient Transparency (INCI)",
|
|
1089
|
+
"inciDetails": "Water (Aqua), Niacinamide, Glycerin, Propanediol, Zinc PCA, Centella Asiatica Extract, Sodium Hyaluronate, Hydrolyzed Hyaluronic Acid, Camellia Sinensis Leaf Extract, Panthenol, Allantoin, Hydroxyethylcellulose, Caprylyl Glycol, Ethylhexylglycerin, Citric Acid.",
|
|
1090
|
+
"shippingTitle": "Eco Packaging & Climate-Safe Delivery",
|
|
1091
|
+
"shippingSummary": "Shipped in temperature-controlled couriers to protect raw antioxidants from heat degradation. Packaged in recyclable amber UV-blocking glass.",
|
|
1092
|
+
"shippingReturns": "30-Day Radiant Skin Guarantee. If this formula does not suit your skin type, our esthetician will exchange it for an alternative formula free of charge.",
|
|
1093
|
+
"relatedLabel": "SYNERGISTIC ROUTINE STEPS",
|
|
1094
|
+
"relatedTitle": "Recommended to Follow With"
|
|
1095
|
+
}
|
|
1096
|
+
}
|
|
1097
|
+
}
|