@deneb-ui/cli 2.0.21 → 2.0.23

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 (53) hide show
  1. package/README.md +62 -114
  2. package/bin/index.js +101 -207
  3. package/package.json +20 -5
  4. package/src/arc/__fixtures__/next-app-basic/package.json +10 -0
  5. package/src/arc/__fixtures__/next-app-basic/src/app/globals.css +3 -0
  6. package/src/arc/__fixtures__/next-app-basic/src/app/layout.tsx +9 -0
  7. package/src/arc/__fixtures__/next-app-basic/src/app/page.tsx +11 -0
  8. package/src/arc/__fixtures__/next-app-basic/src/components/Header.tsx +13 -0
  9. package/src/arc/__fixtures__/next-app-basic/src/components/Hero.tsx +12 -0
  10. package/src/arc/__fixtures__/next-app-basic/src/components/PromoBanner.tsx +10 -0
  11. package/src/arc/__fixtures__/next-app-basic/tsconfig.json +12 -0
  12. package/src/arc/__fixtures__/next-app-storefront/components.json +14 -0
  13. package/src/arc/__fixtures__/next-app-storefront/package.json +22 -0
  14. package/src/arc/__fixtures__/next-app-storefront/src/app/about/page.tsx +13 -0
  15. package/src/arc/__fixtures__/next-app-storefront/src/app/globals.css +5 -0
  16. package/src/arc/__fixtures__/next-app-storefront/src/app/layout.tsx +19 -0
  17. package/src/arc/__fixtures__/next-app-storefront/src/app/page.tsx +13 -0
  18. package/src/arc/__fixtures__/next-app-storefront/src/components/Features.tsx +31 -0
  19. package/src/arc/__fixtures__/next-app-storefront/src/components/Hero.tsx +45 -0
  20. package/src/arc/__fixtures__/next-app-storefront/src/components/ProductGrid.tsx +49 -0
  21. package/src/arc/__fixtures__/next-app-storefront/src/components/SiteFooter.tsx +22 -0
  22. package/src/arc/__fixtures__/next-app-storefront/src/components/SiteHeader.tsx +21 -0
  23. package/src/arc/__fixtures__/next-app-storefront/src/components/ui/button.tsx +36 -0
  24. package/src/arc/__fixtures__/next-app-storefront/tsconfig.json +15 -0
  25. package/src/arc/__fixtures__/next-pages-basic/package.json +10 -0
  26. package/src/arc/__fixtures__/next-pages-basic/pages/_app.jsx +5 -0
  27. package/src/arc/__fixtures__/next-pages-basic/pages/contact.jsx +9 -0
  28. package/src/arc/__fixtures__/next-pages-basic/pages/index.jsx +11 -0
  29. package/src/arc/__fixtures__/next-pages-basic/styles/globals.css +9 -0
  30. package/src/arc/__tests__/arc.test.cjs +458 -0
  31. package/src/arc/adapters.cjs +184 -0
  32. package/src/arc/ast.cjs +323 -0
  33. package/src/arc/field-paths.cjs +165 -0
  34. package/src/arc/fivora-contract.cjs +521 -0
  35. package/src/arc/fs-utils.cjs +170 -0
  36. package/src/arc/index.cjs +628 -0
  37. package/src/arc/learning.cjs +185 -0
  38. package/src/arc/manifest.cjs +421 -0
  39. package/src/arc/next-config.cjs +279 -0
  40. package/src/arc/planner.cjs +227 -0
  41. package/src/arc/printer.cjs +153 -0
  42. package/src/arc/recipes-v2.cjs +49 -0
  43. package/src/arc/scanner.cjs +613 -0
  44. package/src/arc/semantic.cjs +651 -0
  45. package/src/arc/transformer.cjs +646 -0
  46. package/src/arc/validator.cjs +173 -0
  47. package/src/arc/version.cjs +22 -0
  48. package/src/recipes/cosmetics-beauty-store.json +1097 -0
  49. package/src/recipes/electronics-gadgets-store.json +1080 -0
  50. package/src/recipes/fashion-apparel-store.json +1074 -0
  51. package/src/tools/deneb-doctor.cjs +646 -0
  52. package/src/tools/recipe-engine.cjs +30 -0
  53. package/src/tools/template-converter.cjs +19 -6
@@ -0,0 +1,1074 @@
1
+ {
2
+ "name": "fashion-apparel-store",
3
+ "label": "Haute & Streetwear Fashion Apparel Storefront",
4
+ "description": "Specialized recipe for apparel, streetwear, fashion boutiques, and luxury garments with size selectors, lookbooks, color swatches, WhatsApp styling concierge, and bag drawer integration.",
5
+ "signatures": {
6
+ "keywords": [
7
+ "fashion",
8
+ "apparel",
9
+ "clothing",
10
+ "wear",
11
+ "outfit",
12
+ "boutique",
13
+ "dress",
14
+ "shirt",
15
+ "hoodie",
16
+ "denim",
17
+ "collection",
18
+ "lookbook",
19
+ "atelier",
20
+ "streetwear",
21
+ "garment",
22
+ "textile",
23
+ "couture",
24
+ "style"
25
+ ],
26
+ "componentRoles": [
27
+ "Navbar",
28
+ "Hero",
29
+ "ProductGrid",
30
+ "ProductCard",
31
+ "SizeGuide",
32
+ "Lookbook",
33
+ "FilterSidebar",
34
+ "CartDrawer",
35
+ "CollectionBanner",
36
+ "FabricCare",
37
+ "StylingConcierge",
38
+ "Footer",
39
+ "ProductDetail"
40
+ ]
41
+ },
42
+ "gridRules": {
43
+ "cardComponentNames": [
44
+ "ProductCard",
45
+ "ApparelCard",
46
+ "FashionCard",
47
+ "ItemCard",
48
+ "Card",
49
+ "LookCard",
50
+ "ClothingCard"
51
+ ],
52
+ "cardFields": [
53
+ {
54
+ "suffix": "Image",
55
+ "type": "image",
56
+ "label": "Garment Image"
57
+ },
58
+ {
59
+ "suffix": "Badge",
60
+ "type": "text",
61
+ "label": "Badge"
62
+ },
63
+ {
64
+ "suffix": "Category",
65
+ "type": "text",
66
+ "label": "Collection Category"
67
+ },
68
+ {
69
+ "suffix": "Name",
70
+ "type": "text",
71
+ "label": "Product Title"
72
+ },
73
+ {
74
+ "suffix": "Price",
75
+ "type": "text",
76
+ "label": "Price"
77
+ },
78
+ {
79
+ "suffix": "Sizes",
80
+ "type": "text",
81
+ "label": "Available Sizes"
82
+ }
83
+ ],
84
+ "autoIndex": true,
85
+ "defaultCardPrefix": "product",
86
+ "withBasePathImages": true,
87
+ "safeNavigationButtons": true
88
+ },
89
+ "productDetailRules": {
90
+ "enabled": true,
91
+ "sectionPath": "product",
92
+ "sampleRoute": "/products/classic-oversized-heavyweight-tee",
93
+ "galleryWithBasePath": true,
94
+ "noStaticOnEditableAncestors": true
95
+ },
96
+ "actionRules": {
97
+ "splitActionAndLabel": true,
98
+ "whatsappKeywords": [
99
+ "whatsapp",
100
+ "wa.me",
101
+ "order via whatsapp",
102
+ "styling concierge",
103
+ "ask stylist",
104
+ "chat with stylist",
105
+ "personal shopper"
106
+ ],
107
+ "actionFieldMapping": {
108
+ "whatsapp": {
109
+ "urlField": "whatsappCtaUrl",
110
+ "labelField": "whatsappCtaLabel"
111
+ },
112
+ "order": {
113
+ "urlField": "orderCtaUrl",
114
+ "labelField": "orderCtaLabel"
115
+ },
116
+ "promo": {
117
+ "urlField": "promoCtaUrl",
118
+ "labelField": "promoCtaLabel"
119
+ },
120
+ "sizeguide": {
121
+ "urlField": "sizeGuideUrl",
122
+ "labelField": "sizeGuideLabel"
123
+ }
124
+ }
125
+ },
126
+ "socialRules": {
127
+ "platforms": [
128
+ "instagram",
129
+ "tiktok",
130
+ "pinterest",
131
+ "facebook",
132
+ "youtube"
133
+ ],
134
+ "targetPath": "common.footer"
135
+ },
136
+ "pages": [
137
+ {
138
+ "id": "home",
139
+ "label": "Home",
140
+ "route": "/",
141
+ "required": true
142
+ },
143
+ {
144
+ "id": "shop",
145
+ "label": "Shop All",
146
+ "route": "/shop"
147
+ },
148
+ {
149
+ "id": "lookbook",
150
+ "label": "Lookbook",
151
+ "route": "/lookbook"
152
+ },
153
+ {
154
+ "id": "size-guide",
155
+ "label": "Size & Fit Guide",
156
+ "route": "/size-guide"
157
+ },
158
+ {
159
+ "id": "about",
160
+ "label": "Atelier & Story",
161
+ "route": "/about"
162
+ },
163
+ {
164
+ "id": "contact",
165
+ "label": "Contact & Concierge",
166
+ "route": "/contact",
167
+ "required": true
168
+ },
169
+ {
170
+ "id": "product",
171
+ "label": "Garment Detail",
172
+ "route": "/products/classic-oversized-heavyweight-tee"
173
+ }
174
+ ],
175
+ "sections": [
176
+ {
177
+ "id": "common",
178
+ "path": "common",
179
+ "type": "object",
180
+ "label": "Shared Storefront Content",
181
+ "fields": [
182
+ {
183
+ "key": "websiteTitle",
184
+ "type": "text",
185
+ "label": "Fashion Brand Name",
186
+ "required": true
187
+ },
188
+ {
189
+ "key": "shortDescription",
190
+ "type": "textarea",
191
+ "label": "Brand Manifesto"
192
+ },
193
+ {
194
+ "key": "tagline",
195
+ "type": "text",
196
+ "label": "Brand Tagline"
197
+ },
198
+ {
199
+ "key": "announcementText",
200
+ "type": "text",
201
+ "label": "Header Announcement Bar"
202
+ },
203
+ {
204
+ "key": "logoUrl",
205
+ "type": "image",
206
+ "label": "Atelier Logo",
207
+ "recommendedWidth": 512,
208
+ "recommendedHeight": 512
209
+ },
210
+ {
211
+ "key": "brandUrl",
212
+ "type": "text",
213
+ "label": "Home Link URL"
214
+ },
215
+ {
216
+ "key": "headerCtaLabel",
217
+ "type": "text",
218
+ "label": "Header Action Label"
219
+ },
220
+ {
221
+ "key": "navLabels",
222
+ "type": "object",
223
+ "label": "Navigation Links",
224
+ "fields": [
225
+ {
226
+ "key": "home",
227
+ "type": "text",
228
+ "label": "Home Link"
229
+ },
230
+ {
231
+ "key": "shop",
232
+ "type": "text",
233
+ "label": "Shop All Link"
234
+ },
235
+ {
236
+ "key": "lookbook",
237
+ "type": "text",
238
+ "label": "Lookbook Link"
239
+ },
240
+ {
241
+ "key": "sizeGuide",
242
+ "type": "text",
243
+ "label": "Size Guide Link"
244
+ },
245
+ {
246
+ "key": "about",
247
+ "type": "text",
248
+ "label": "Atelier Story Link"
249
+ },
250
+ {
251
+ "key": "contact",
252
+ "type": "text",
253
+ "label": "Concierge Link"
254
+ }
255
+ ]
256
+ },
257
+ {
258
+ "key": "business",
259
+ "type": "object",
260
+ "label": "Atelier Contact Details",
261
+ "fields": [
262
+ {
263
+ "key": "phone",
264
+ "type": "tel",
265
+ "label": "Customer Care Phone"
266
+ },
267
+ {
268
+ "key": "whatsapp",
269
+ "type": "text",
270
+ "label": "Styling Concierge WhatsApp"
271
+ },
272
+ {
273
+ "key": "email",
274
+ "type": "email",
275
+ "label": "Concierge Email"
276
+ },
277
+ {
278
+ "key": "location",
279
+ "type": "object",
280
+ "label": "Showroom Address",
281
+ "fields": [
282
+ {
283
+ "key": "address",
284
+ "type": "text",
285
+ "label": "Street Address"
286
+ },
287
+ {
288
+ "key": "city",
289
+ "type": "text",
290
+ "label": "City"
291
+ },
292
+ {
293
+ "key": "country",
294
+ "type": "text",
295
+ "label": "Country"
296
+ }
297
+ ]
298
+ }
299
+ ]
300
+ },
301
+ {
302
+ "key": "footer",
303
+ "type": "object",
304
+ "label": "Footer Columns & Links",
305
+ "fields": [
306
+ {
307
+ "key": "collectionsHeading",
308
+ "type": "text",
309
+ "label": "Collections Column Heading"
310
+ },
311
+ {
312
+ "key": "collectionsLink1",
313
+ "type": "text",
314
+ "label": "Collection Link 1"
315
+ },
316
+ {
317
+ "key": "collectionsLink2",
318
+ "type": "text",
319
+ "label": "Collection Link 2"
320
+ },
321
+ {
322
+ "key": "collectionsLink3",
323
+ "type": "text",
324
+ "label": "Collection Link 3"
325
+ },
326
+ {
327
+ "key": "collectionsLink4",
328
+ "type": "text",
329
+ "label": "Collection Link 4"
330
+ },
331
+ {
332
+ "key": "atelierHeading",
333
+ "type": "text",
334
+ "label": "Atelier Column Heading"
335
+ },
336
+ {
337
+ "key": "atelierLink1",
338
+ "type": "text",
339
+ "label": "Atelier Link 1"
340
+ },
341
+ {
342
+ "key": "atelierLink2",
343
+ "type": "text",
344
+ "label": "Atelier Link 2"
345
+ },
346
+ {
347
+ "key": "atelierLink3",
348
+ "type": "text",
349
+ "label": "Atelier Link 3"
350
+ },
351
+ {
352
+ "key": "conciergeHeading",
353
+ "type": "text",
354
+ "label": "Concierge Column Heading"
355
+ },
356
+ {
357
+ "key": "conciergeLink1",
358
+ "type": "text",
359
+ "label": "Concierge Link 1"
360
+ },
361
+ {
362
+ "key": "conciergeLink2",
363
+ "type": "text",
364
+ "label": "Concierge Link 2"
365
+ },
366
+ {
367
+ "key": "conciergeLink3",
368
+ "type": "text",
369
+ "label": "Concierge Link 3"
370
+ },
371
+ {
372
+ "key": "instagramUrl",
373
+ "type": "text",
374
+ "label": "Instagram Profile URL"
375
+ },
376
+ {
377
+ "key": "tiktokUrl",
378
+ "type": "text",
379
+ "label": "TikTok Profile URL"
380
+ },
381
+ {
382
+ "key": "pinterestUrl",
383
+ "type": "text",
384
+ "label": "Pinterest Profile URL"
385
+ }
386
+ ]
387
+ },
388
+ {
389
+ "key": "copyright",
390
+ "type": "text",
391
+ "label": "Copyright Text"
392
+ }
393
+ ]
394
+ },
395
+ {
396
+ "id": "home",
397
+ "path": "home",
398
+ "type": "object",
399
+ "label": "Home Page Content",
400
+ "fields": [
401
+ {
402
+ "key": "heroSeason",
403
+ "type": "text",
404
+ "label": "Hero Season / Eyebrow"
405
+ },
406
+ {
407
+ "key": "heroTitle",
408
+ "type": "text",
409
+ "label": "Hero Headline"
410
+ },
411
+ {
412
+ "key": "heroSummary",
413
+ "type": "textarea",
414
+ "label": "Hero Subtitle"
415
+ },
416
+ {
417
+ "key": "heroImage",
418
+ "type": "image",
419
+ "label": "Hero Editorial Banner",
420
+ "recommendedWidth": 1920,
421
+ "recommendedHeight": 1080
422
+ },
423
+ {
424
+ "key": "primaryCtaLabel",
425
+ "type": "text",
426
+ "label": "Primary Hero Button"
427
+ },
428
+ {
429
+ "key": "secondaryCtaLabel",
430
+ "type": "text",
431
+ "label": "Secondary Hero Button"
432
+ },
433
+ {
434
+ "key": "tickerItem1",
435
+ "type": "text",
436
+ "label": "Ticker Message 1"
437
+ },
438
+ {
439
+ "key": "tickerItem2",
440
+ "type": "text",
441
+ "label": "Ticker Message 2"
442
+ },
443
+ {
444
+ "key": "tickerItem3",
445
+ "type": "text",
446
+ "label": "Ticker Message 3"
447
+ },
448
+ {
449
+ "key": "tickerItem4",
450
+ "type": "text",
451
+ "label": "Ticker Message 4"
452
+ },
453
+ {
454
+ "key": "categoryLabel",
455
+ "type": "text",
456
+ "label": "Collections Section Eyebrow"
457
+ },
458
+ {
459
+ "key": "categoryTitle",
460
+ "type": "text",
461
+ "label": "Collections Section Title"
462
+ },
463
+ {
464
+ "key": "categoryDesc",
465
+ "type": "textarea",
466
+ "label": "Collections Section Description"
467
+ },
468
+ {
469
+ "key": "categoryLabel1",
470
+ "type": "text",
471
+ "label": "Collection Tab 1"
472
+ },
473
+ {
474
+ "key": "categoryLabel2",
475
+ "type": "text",
476
+ "label": "Collection Tab 2"
477
+ },
478
+ {
479
+ "key": "categoryLabel3",
480
+ "type": "text",
481
+ "label": "Collection Tab 3"
482
+ },
483
+ {
484
+ "key": "categoryLabel4",
485
+ "type": "text",
486
+ "label": "Collection Tab 4"
487
+ },
488
+ {
489
+ "key": "product1Name",
490
+ "type": "text",
491
+ "label": "Garment 1 Title"
492
+ },
493
+ {
494
+ "key": "product1Category",
495
+ "type": "text",
496
+ "label": "Garment 1 Collection"
497
+ },
498
+ {
499
+ "key": "product1Price",
500
+ "type": "text",
501
+ "label": "Garment 1 Price"
502
+ },
503
+ {
504
+ "key": "product1Badge",
505
+ "type": "text",
506
+ "label": "Garment 1 Badge"
507
+ },
508
+ {
509
+ "key": "product1Sizes",
510
+ "type": "text",
511
+ "label": "Garment 1 Available Sizes"
512
+ },
513
+ {
514
+ "key": "product1Image",
515
+ "type": "image",
516
+ "label": "Garment 1 Photo"
517
+ },
518
+ {
519
+ "key": "product2Name",
520
+ "type": "text",
521
+ "label": "Garment 2 Title"
522
+ },
523
+ {
524
+ "key": "product2Category",
525
+ "type": "text",
526
+ "label": "Garment 2 Collection"
527
+ },
528
+ {
529
+ "key": "product2Price",
530
+ "type": "text",
531
+ "label": "Garment 2 Price"
532
+ },
533
+ {
534
+ "key": "product2Badge",
535
+ "type": "text",
536
+ "label": "Garment 2 Badge"
537
+ },
538
+ {
539
+ "key": "product2Sizes",
540
+ "type": "text",
541
+ "label": "Garment 2 Available Sizes"
542
+ },
543
+ {
544
+ "key": "product2Image",
545
+ "type": "image",
546
+ "label": "Garment 2 Photo"
547
+ },
548
+ {
549
+ "key": "product3Name",
550
+ "type": "text",
551
+ "label": "Garment 3 Title"
552
+ },
553
+ {
554
+ "key": "product3Category",
555
+ "type": "text",
556
+ "label": "Garment 3 Collection"
557
+ },
558
+ {
559
+ "key": "product3Price",
560
+ "type": "text",
561
+ "label": "Garment 3 Price"
562
+ },
563
+ {
564
+ "key": "product3Badge",
565
+ "type": "text",
566
+ "label": "Garment 3 Badge"
567
+ },
568
+ {
569
+ "key": "product3Sizes",
570
+ "type": "text",
571
+ "label": "Garment 3 Available Sizes"
572
+ },
573
+ {
574
+ "key": "product3Image",
575
+ "type": "image",
576
+ "label": "Garment 3 Photo"
577
+ },
578
+ {
579
+ "key": "product4Name",
580
+ "type": "text",
581
+ "label": "Garment 4 Title"
582
+ },
583
+ {
584
+ "key": "product4Category",
585
+ "type": "text",
586
+ "label": "Garment 4 Collection"
587
+ },
588
+ {
589
+ "key": "product4Price",
590
+ "type": "text",
591
+ "label": "Garment 4 Price"
592
+ },
593
+ {
594
+ "key": "product4Badge",
595
+ "type": "text",
596
+ "label": "Garment 4 Badge"
597
+ },
598
+ {
599
+ "key": "product4Sizes",
600
+ "type": "text",
601
+ "label": "Garment 4 Available Sizes"
602
+ },
603
+ {
604
+ "key": "product4Image",
605
+ "type": "image",
606
+ "label": "Garment 4 Photo"
607
+ },
608
+ {
609
+ "key": "product5Name",
610
+ "type": "text",
611
+ "label": "Garment 5 Title"
612
+ },
613
+ {
614
+ "key": "product5Category",
615
+ "type": "text",
616
+ "label": "Garment 5 Collection"
617
+ },
618
+ {
619
+ "key": "product5Price",
620
+ "type": "text",
621
+ "label": "Garment 5 Price"
622
+ },
623
+ {
624
+ "key": "product5Badge",
625
+ "type": "text",
626
+ "label": "Garment 5 Badge"
627
+ },
628
+ {
629
+ "key": "product5Sizes",
630
+ "type": "text",
631
+ "label": "Garment 5 Available Sizes"
632
+ },
633
+ {
634
+ "key": "product5Image",
635
+ "type": "image",
636
+ "label": "Garment 5 Photo"
637
+ },
638
+ {
639
+ "key": "product6Name",
640
+ "type": "text",
641
+ "label": "Garment 6 Title"
642
+ },
643
+ {
644
+ "key": "product6Category",
645
+ "type": "text",
646
+ "label": "Garment 6 Collection"
647
+ },
648
+ {
649
+ "key": "product6Price",
650
+ "type": "text",
651
+ "label": "Garment 6 Price"
652
+ },
653
+ {
654
+ "key": "product6Badge",
655
+ "type": "text",
656
+ "label": "Garment 6 Badge"
657
+ },
658
+ {
659
+ "key": "product6Sizes",
660
+ "type": "text",
661
+ "label": "Garment 6 Available Sizes"
662
+ },
663
+ {
664
+ "key": "product6Image",
665
+ "type": "image",
666
+ "label": "Garment 6 Photo"
667
+ },
668
+ {
669
+ "key": "product7Name",
670
+ "type": "text",
671
+ "label": "Garment 7 Title"
672
+ },
673
+ {
674
+ "key": "product7Category",
675
+ "type": "text",
676
+ "label": "Garment 7 Collection"
677
+ },
678
+ {
679
+ "key": "product7Price",
680
+ "type": "text",
681
+ "label": "Garment 7 Price"
682
+ },
683
+ {
684
+ "key": "product7Badge",
685
+ "type": "text",
686
+ "label": "Garment 7 Badge"
687
+ },
688
+ {
689
+ "key": "product7Sizes",
690
+ "type": "text",
691
+ "label": "Garment 7 Available Sizes"
692
+ },
693
+ {
694
+ "key": "product7Image",
695
+ "type": "image",
696
+ "label": "Garment 7 Photo"
697
+ },
698
+ {
699
+ "key": "product8Name",
700
+ "type": "text",
701
+ "label": "Garment 8 Title"
702
+ },
703
+ {
704
+ "key": "product8Category",
705
+ "type": "text",
706
+ "label": "Garment 8 Collection"
707
+ },
708
+ {
709
+ "key": "product8Price",
710
+ "type": "text",
711
+ "label": "Garment 8 Price"
712
+ },
713
+ {
714
+ "key": "product8Badge",
715
+ "type": "text",
716
+ "label": "Garment 8 Badge"
717
+ },
718
+ {
719
+ "key": "product8Sizes",
720
+ "type": "text",
721
+ "label": "Garment 8 Available Sizes"
722
+ },
723
+ {
724
+ "key": "product8Image",
725
+ "type": "image",
726
+ "label": "Garment 8 Photo"
727
+ },
728
+ {
729
+ "key": "lookbookEyebrow",
730
+ "type": "text",
731
+ "label": "Lookbook Eyebrow"
732
+ },
733
+ {
734
+ "key": "lookbookTitle",
735
+ "type": "text",
736
+ "label": "Lookbook Headline"
737
+ },
738
+ {
739
+ "key": "lookbookDesc",
740
+ "type": "textarea",
741
+ "label": "Lookbook Description"
742
+ },
743
+ {
744
+ "key": "lookbookCtaLabel",
745
+ "type": "text",
746
+ "label": "Lookbook Action Button"
747
+ },
748
+ {
749
+ "key": "lookbookImage",
750
+ "type": "image",
751
+ "label": "Editorial Lookbook Image"
752
+ },
753
+ {
754
+ "key": "storyLabel",
755
+ "type": "text",
756
+ "label": "Atelier Story Eyebrow"
757
+ },
758
+ {
759
+ "key": "storyTitle",
760
+ "type": "text",
761
+ "label": "Atelier Story Headline"
762
+ },
763
+ {
764
+ "key": "storyDesc",
765
+ "type": "textarea",
766
+ "label": "Atelier Story Description"
767
+ },
768
+ {
769
+ "key": "storyImage",
770
+ "type": "image",
771
+ "label": "Atelier Story Image"
772
+ },
773
+ {
774
+ "key": "stat1Value",
775
+ "type": "text",
776
+ "label": "Statistic 1 Value"
777
+ },
778
+ {
779
+ "key": "stat1Label",
780
+ "type": "text",
781
+ "label": "Statistic 1 Label"
782
+ },
783
+ {
784
+ "key": "stat2Value",
785
+ "type": "text",
786
+ "label": "Statistic 2 Value"
787
+ },
788
+ {
789
+ "key": "stat2Label",
790
+ "type": "text",
791
+ "label": "Statistic 2 Label"
792
+ },
793
+ {
794
+ "key": "stat3Value",
795
+ "type": "text",
796
+ "label": "Statistic 3 Value"
797
+ },
798
+ {
799
+ "key": "stat3Label",
800
+ "type": "text",
801
+ "label": "Statistic 3 Label"
802
+ },
803
+ {
804
+ "key": "whatsappLabel",
805
+ "type": "text",
806
+ "label": "Concierge Section Eyebrow"
807
+ },
808
+ {
809
+ "key": "whatsappTitle",
810
+ "type": "text",
811
+ "label": "Concierge Section Headline"
812
+ },
813
+ {
814
+ "key": "whatsappDesc",
815
+ "type": "textarea",
816
+ "label": "Concierge Description"
817
+ },
818
+ {
819
+ "key": "whatsappCtaLabel",
820
+ "type": "text",
821
+ "label": "Styling Concierge Button Label"
822
+ },
823
+ {
824
+ "key": "whatsappCtaUrl",
825
+ "type": "text",
826
+ "label": "Styling Concierge WhatsApp URL"
827
+ }
828
+ ]
829
+ },
830
+ {
831
+ "id": "product",
832
+ "path": "product",
833
+ "type": "object",
834
+ "label": "Product Detail Content",
835
+ "fields": [
836
+ {
837
+ "key": "name",
838
+ "type": "text",
839
+ "label": "Garment Title",
840
+ "required": true
841
+ },
842
+ {
843
+ "key": "price",
844
+ "type": "text",
845
+ "label": "Garment Price",
846
+ "required": true
847
+ },
848
+ {
849
+ "key": "badge",
850
+ "type": "text",
851
+ "label": "Product Tag / Badge"
852
+ },
853
+ {
854
+ "key": "description",
855
+ "type": "textarea",
856
+ "label": "Garment Editorial Description"
857
+ },
858
+ {
859
+ "key": "featuredImage",
860
+ "type": "image",
861
+ "label": "Main Garment Photograph"
862
+ },
863
+ {
864
+ "key": "addToSelectionLabel",
865
+ "type": "text",
866
+ "label": "Add to Bag Button Label"
867
+ },
868
+ {
869
+ "key": "sizeGuideLabel",
870
+ "type": "text",
871
+ "label": "Size Guide Link Label"
872
+ },
873
+ {
874
+ "key": "fabricTitle",
875
+ "type": "text",
876
+ "label": "Fabric & Craftsmanship Heading"
877
+ },
878
+ {
879
+ "key": "fabricDetails",
880
+ "type": "textarea",
881
+ "label": "Fabric Composition & GSM"
882
+ },
883
+ {
884
+ "key": "fitTitle",
885
+ "type": "text",
886
+ "label": "Fit & Model Heading"
887
+ },
888
+ {
889
+ "key": "fitDetails",
890
+ "type": "textarea",
891
+ "label": "Fit Description & Model Measurements"
892
+ },
893
+ {
894
+ "key": "shippingTitle",
895
+ "type": "text",
896
+ "label": "Delivery & Packaging Heading"
897
+ },
898
+ {
899
+ "key": "shippingSummary",
900
+ "type": "textarea",
901
+ "label": "Delivery Times & Packaging Guarantee"
902
+ },
903
+ {
904
+ "key": "shippingReturns",
905
+ "type": "textarea",
906
+ "label": "Exchange Policy"
907
+ },
908
+ {
909
+ "key": "relatedLabel",
910
+ "type": "text",
911
+ "label": "Complete The Look Eyebrow"
912
+ },
913
+ {
914
+ "key": "relatedTitle",
915
+ "type": "text",
916
+ "label": "Complete The Look Heading"
917
+ }
918
+ ]
919
+ }
920
+ ],
921
+ "defaults": {
922
+ "common": {
923
+ "websiteTitle": "ATELIER ÉTOILE",
924
+ "shortDescription": "Contemporary luxury silhouettes and sculpted streetwear, ethically tailored with heavyweight organic textiles and bespoke architectural cuts.",
925
+ "tagline": "Modern Couture & Streetwear",
926
+ "announcementText": "Complimentary Worldwide Express Delivery on orders over LKR 15,000 — Code ATELIER10 for 10% off",
927
+ "logoUrl": "/logo.svg",
928
+ "brandUrl": "/",
929
+ "headerCtaLabel": "Shop The Drop",
930
+ "copyright": "© 2026 ATELIER ÉTOILE Studios. All rights reserved.",
931
+ "navLabels": {
932
+ "home": "Home",
933
+ "shop": "Shop All",
934
+ "lookbook": "Lookbook SS26",
935
+ "sizeGuide": "Size & Fit Guide",
936
+ "about": "Atelier",
937
+ "contact": "Concierge"
938
+ },
939
+ "business": {
940
+ "phone": "+94 77 987 6543",
941
+ "whatsapp": "94779876543",
942
+ "email": "concierge@atelieretoile.com",
943
+ "location": {
944
+ "address": "18 Horton Place, Cinnamon Gardens",
945
+ "city": "Colombo 07",
946
+ "country": "Sri Lanka"
947
+ }
948
+ },
949
+ "footer": {
950
+ "collectionsHeading": "Collections",
951
+ "collectionsLink1": "New Drop: Edition 06",
952
+ "collectionsLink2": "Heavyweight Knitwear",
953
+ "collectionsLink3": "Tailored Trousers",
954
+ "collectionsLink4": "Structured Outerwear",
955
+ "atelierHeading": "Atelier",
956
+ "atelierLink1": "Our Sustainability Ethos",
957
+ "atelierLink2": "Fabric Sourcing & Care",
958
+ "atelierLink3": "Colombo Flagship Showroom",
959
+ "conciergeHeading": "Concierge",
960
+ "conciergeLink1": "Complimentary Styling Advisor",
961
+ "conciergeLink2": "Size & Measurement Chart",
962
+ "conciergeLink3": "Order Status & Returns",
963
+ "instagramUrl": "https://instagram.com",
964
+ "tiktokUrl": "https://tiktok.com",
965
+ "pinterestUrl": "https://pinterest.com"
966
+ }
967
+ },
968
+ "home": {
969
+ "heroSeason": "SPRING / SUMMER 2026",
970
+ "heroTitle": "Architectural Cuts. Heavyweight Drape.",
971
+ "heroSummary": "Sculpted minimalism crafted for effortless presence. Heavyweight organic cottons, tailored raw linen, and structured outerwear designed for the contemporary wardrobe.",
972
+ "heroImage": "https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?w=1920&q=85",
973
+ "primaryCtaLabel": "Explore Collection",
974
+ "secondaryCtaLabel": "View SS26 Lookbook",
975
+ "tickerItem1": "Ethically Sourced 280 GSM Organic Cottons",
976
+ "tickerItem2": "Complimentary Islandwide Express Delivery",
977
+ "tickerItem3": "One-on-One WhatsApp Styling Concierge",
978
+ "tickerItem4": "Limited Batch Drops — No Restocks",
979
+ "categoryLabel": "CURATED PIECES",
980
+ "categoryTitle": "The Capsule Wardrobe",
981
+ "categoryDesc": "Essential modular silhouettes tailored to layer seamlessly from daytime meetings to midnight gallery openings.",
982
+ "categoryLabel1": "Outerwear",
983
+ "categoryLabel2": "Tops & Tees",
984
+ "categoryLabel3": "Tailored Trousers",
985
+ "categoryLabel4": "Accessories",
986
+ "product1Name": "Classic Oversized Heavyweight Tee",
987
+ "product1Category": "Tops & Tees",
988
+ "product1Price": "LKR 8,900",
989
+ "product1Badge": "New Drop",
990
+ "product1Sizes": "XS · S · M · L · XL",
991
+ "product1Image": "https://images.unsplash.com/photo-1521572267360-ee0c2909d518?w=800&q=85",
992
+ "product2Name": "Structured Double-Breasted Linen Blazer",
993
+ "product2Category": "Outerwear",
994
+ "product2Price": "LKR 28,500",
995
+ "product2Badge": "Editorial",
996
+ "product2Sizes": "S · M · L",
997
+ "product2Image": "https://images.unsplash.com/photo-1591047139829-d91aecb6caea?w=800&q=85",
998
+ "product3Name": "Pleated Wide-Leg Wool Blend Trousers",
999
+ "product3Category": "Tailored Trousers",
1000
+ "product3Price": "LKR 16,800",
1001
+ "product3Badge": "Bestseller",
1002
+ "product3Sizes": "28 · 30 · 32 · 34 · 36",
1003
+ "product3Image": "https://images.unsplash.com/photo-1624378439575-d8705ad7ae80?w=800&q=85",
1004
+ "product4Name": "Minimalist Cashmere Mock Neck Sweater",
1005
+ "product4Category": "Tops & Tees",
1006
+ "product4Price": "LKR 22,400",
1007
+ "product4Badge": "Pre-Order",
1008
+ "product4Sizes": "S · M · L · XL",
1009
+ "product4Image": "https://images.unsplash.com/photo-1576566588028-4147f3842f27?w=800&q=85",
1010
+ "product5Name": "Raw Denim Relaxed Carpenter Pant",
1011
+ "product5Category": "Tailored Trousers",
1012
+ "product5Price": "LKR 18,200",
1013
+ "product5Badge": "",
1014
+ "product5Sizes": "30 · 32 · 34 · 36",
1015
+ "product5Image": "https://images.unsplash.com/photo-1542272604-780c96856592?w=800&q=85",
1016
+ "product6Name": "Cocoon Hooded Trench Coat",
1017
+ "product6Category": "Outerwear",
1018
+ "product6Price": "LKR 34,900",
1019
+ "product6Badge": "Limited",
1020
+ "product6Sizes": "One Size (Fluid)",
1021
+ "product6Image": "https://images.unsplash.com/photo-1544441893-675973e31985?w=800&q=85",
1022
+ "product7Name": "Bias-Cut Silk Habotai Slip Dress",
1023
+ "product7Category": "Tops & Tees",
1024
+ "product7Price": "LKR 24,500",
1025
+ "product7Badge": "New",
1026
+ "product7Sizes": "XS · S · M · L",
1027
+ "product7Image": "https://images.unsplash.com/photo-1515372039744-b8f02a3ae446?w=800&q=85",
1028
+ "product8Name": "Sculptural Calfskin Leather Belt",
1029
+ "product8Category": "Accessories",
1030
+ "product8Price": "LKR 9,500",
1031
+ "product8Badge": "",
1032
+ "product8Sizes": "85cm · 95cm · 105cm",
1033
+ "product8Image": "https://images.unsplash.com/photo-1553062407-98eeb64c6a62?w=800&q=85",
1034
+ "lookbookEyebrow": "EDITORIAL CAMPAIGN",
1035
+ "lookbookTitle": "Shadows & Silhouettes in Colombo",
1036
+ "lookbookDesc": "Shot on 35mm film across the brutalist architectural landmarks of Colombo. Discover how raw sunlight interacts with tailored textures and structural drape.",
1037
+ "lookbookCtaLabel": "Browse Editorial Gallery",
1038
+ "lookbookImage": "https://images.unsplash.com/photo-1490481651871-ab68de25d43d?w=1200&q=85",
1039
+ "storyLabel": "CRAFT & SUSTAINABILITY",
1040
+ "storyTitle": "Garments Made to Outlive Trends",
1041
+ "storyDesc": "Every ATELIER ÉTOILE garment begins with deadstock or GOTS-certified organic fiber. We partner with multi-generational master patternmakers in Sri Lanka, producing strictly small batches to eliminate waste and guarantee heirloom longevity.",
1042
+ "storyImage": "https://images.unsplash.com/photo-1558769132-cb1aea458c5e?w=900&q=85",
1043
+ "stat1Value": "280 GSM",
1044
+ "stat1Label": "Custom Knitted Heavyweight Cotton",
1045
+ "stat2Value": "100%",
1046
+ "stat2Label": "Plastic-Free Biodegradable Packaging",
1047
+ "stat3Value": "< 100",
1048
+ "stat3Label": "Pieces Produced per Limited Silhouette",
1049
+ "whatsappLabel": "PERSONAL STYLING ADVISOR",
1050
+ "whatsappTitle": "Curate Your Fit via WhatsApp",
1051
+ "whatsappDesc": "Unsure about shoulder drape or trouser inseam? Message our in-house stylist on WhatsApp for personalized measurement recommendations and direct concierge ordering.",
1052
+ "whatsappCtaLabel": "Chat with Our Stylist",
1053
+ "whatsappCtaUrl": "https://wa.me/94779876543?text=Hi%20Atelier%20%C3%89toile%2C%20I'd%20like%20guidance%20with%20sizing%20and%20styling%20for%20my%20order."
1054
+ },
1055
+ "product": {
1056
+ "name": "Classic Oversized Heavyweight Tee",
1057
+ "price": "LKR 8,900",
1058
+ "badge": "NEW DROP",
1059
+ "description": "Constructed from custom-developed 280 GSM combed organic cotton with a boxy, dropped-shoulder silhouette. Preshrunk to ensure a permanent architectural drape wash after wash.",
1060
+ "featuredImage": "https://images.unsplash.com/photo-1521572267360-ee0c2909d518?w=1000&q=85",
1061
+ "addToSelectionLabel": "Add to Bag",
1062
+ "sizeGuideLabel": "View Fit & Measurement Guide",
1063
+ "fabricTitle": "Fabric & Craftsmanship",
1064
+ "fabricDetails": "100% GOTS-certified organic cotton, 280 GSM heavyweight jersey. Twin-needle reinforced neckband that will never bacon or warp. Garment dyed in Colombo using low-impact, non-toxic reactive dyes.",
1065
+ "fitTitle": "Fit & Model Information",
1066
+ "fitDetails": "Relaxed oversized cut. We recommend taking your normal size for the intended boxy aesthetic, or sizing down for a closer classic fit. Model is 6'1\" (185 cm) and wearing size L in Onyx Black.",
1067
+ "shippingTitle": "Delivery & Ethical Packaging",
1068
+ "shippingSummary": "Free islandwide courier delivery within 48 hours. Orders are presented in archival tissue wrap inside a 100% compostable cassava starch mailer.",
1069
+ "shippingReturns": "14-day exchange privilege for unworn garments with original tags intact. Simple courier pickup arranged via WhatsApp.",
1070
+ "relatedLabel": "COMPLETE THE SILHOUETTE",
1071
+ "relatedTitle": "Recommended Pairings"
1072
+ }
1073
+ }
1074
+ }