@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,1080 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "electronics-gadgets-store",
|
|
3
|
+
"label": "Precision Electronics & Smart Gadgets Storefront",
|
|
4
|
+
"description": "Specialized recipe for consumer electronics, audio acoustics, gaming gear, and smart devices with technical spec matrices, trust badges, device comparison, and WhatsApp tech support.",
|
|
5
|
+
"signatures": {
|
|
6
|
+
"keywords": [
|
|
7
|
+
"electronics",
|
|
8
|
+
"gadget",
|
|
9
|
+
"tech",
|
|
10
|
+
"device",
|
|
11
|
+
"audio",
|
|
12
|
+
"phone",
|
|
13
|
+
"headphones",
|
|
14
|
+
"earbuds",
|
|
15
|
+
"wireless",
|
|
16
|
+
"hardware",
|
|
17
|
+
"gaming",
|
|
18
|
+
"specs",
|
|
19
|
+
"charger",
|
|
20
|
+
"monitor",
|
|
21
|
+
"anc",
|
|
22
|
+
"bluetooth",
|
|
23
|
+
"hifi",
|
|
24
|
+
"smart"
|
|
25
|
+
],
|
|
26
|
+
"componentRoles": [
|
|
27
|
+
"Navbar",
|
|
28
|
+
"Hero",
|
|
29
|
+
"SpecsGrid",
|
|
30
|
+
"ProductGrid",
|
|
31
|
+
"ProductCard",
|
|
32
|
+
"CompareDrawer",
|
|
33
|
+
"TrustBadges",
|
|
34
|
+
"CartDrawer",
|
|
35
|
+
"TechSpecTable",
|
|
36
|
+
"WarrantyInfo",
|
|
37
|
+
"Footer",
|
|
38
|
+
"ProductDetail"
|
|
39
|
+
]
|
|
40
|
+
},
|
|
41
|
+
"gridRules": {
|
|
42
|
+
"cardComponentNames": [
|
|
43
|
+
"ProductCard",
|
|
44
|
+
"TechCard",
|
|
45
|
+
"DeviceCard",
|
|
46
|
+
"GadgetCard",
|
|
47
|
+
"ItemCard",
|
|
48
|
+
"Card",
|
|
49
|
+
"HardwareCard"
|
|
50
|
+
],
|
|
51
|
+
"cardFields": [
|
|
52
|
+
{
|
|
53
|
+
"suffix": "Image",
|
|
54
|
+
"type": "image",
|
|
55
|
+
"label": "Device Photograph"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"suffix": "Badge",
|
|
59
|
+
"type": "text",
|
|
60
|
+
"label": "Badge"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"suffix": "Category",
|
|
64
|
+
"type": "text",
|
|
65
|
+
"label": "Device Category"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"suffix": "Name",
|
|
69
|
+
"type": "text",
|
|
70
|
+
"label": "Device Model Title"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"suffix": "Price",
|
|
74
|
+
"type": "text",
|
|
75
|
+
"label": "Price"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"suffix": "KeySpec",
|
|
79
|
+
"type": "text",
|
|
80
|
+
"label": "Key Specification"
|
|
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/sonic-pro-wireless-anc-headphones",
|
|
92
|
+
"galleryWithBasePath": true,
|
|
93
|
+
"noStaticOnEditableAncestors": true
|
|
94
|
+
},
|
|
95
|
+
"actionRules": {
|
|
96
|
+
"splitActionAndLabel": true,
|
|
97
|
+
"whatsappKeywords": [
|
|
98
|
+
"whatsapp",
|
|
99
|
+
"wa.me",
|
|
100
|
+
"order via whatsapp",
|
|
101
|
+
"tech support",
|
|
102
|
+
"chat with expert",
|
|
103
|
+
"ask tech support",
|
|
104
|
+
"order hardware"
|
|
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
|
+
"warranty": {
|
|
120
|
+
"urlField": "warrantyUrl",
|
|
121
|
+
"labelField": "warrantyLabel"
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
"socialRules": {
|
|
126
|
+
"platforms": [
|
|
127
|
+
"youtube",
|
|
128
|
+
"twitter",
|
|
129
|
+
"instagram",
|
|
130
|
+
"facebook",
|
|
131
|
+
"linkedin"
|
|
132
|
+
],
|
|
133
|
+
"targetPath": "common.footer"
|
|
134
|
+
},
|
|
135
|
+
"pages": [
|
|
136
|
+
{
|
|
137
|
+
"id": "home",
|
|
138
|
+
"label": "Home",
|
|
139
|
+
"route": "/",
|
|
140
|
+
"required": true
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"id": "products",
|
|
144
|
+
"label": "Devices & Gear",
|
|
145
|
+
"route": "/products"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"id": "specs",
|
|
149
|
+
"label": "Technical Specifications",
|
|
150
|
+
"route": "/specs"
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"id": "warranty",
|
|
154
|
+
"label": "Warranty & Support",
|
|
155
|
+
"route": "/warranty"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"id": "contact",
|
|
159
|
+
"label": "Tech Support Hotline",
|
|
160
|
+
"route": "/contact",
|
|
161
|
+
"required": true
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"id": "product",
|
|
165
|
+
"label": "Device Detail",
|
|
166
|
+
"route": "/products/sonic-pro-wireless-anc-headphones"
|
|
167
|
+
}
|
|
168
|
+
],
|
|
169
|
+
"sections": [
|
|
170
|
+
{
|
|
171
|
+
"id": "common",
|
|
172
|
+
"path": "common",
|
|
173
|
+
"type": "object",
|
|
174
|
+
"label": "Shared Storefront Content",
|
|
175
|
+
"fields": [
|
|
176
|
+
{
|
|
177
|
+
"key": "websiteTitle",
|
|
178
|
+
"type": "text",
|
|
179
|
+
"label": "Tech Brand Name",
|
|
180
|
+
"required": true
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"key": "shortDescription",
|
|
184
|
+
"type": "textarea",
|
|
185
|
+
"label": "Hardware Brand Overview"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"key": "tagline",
|
|
189
|
+
"type": "text",
|
|
190
|
+
"label": "Tech Tagline"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"key": "announcementText",
|
|
194
|
+
"type": "text",
|
|
195
|
+
"label": "Header Announcement Bar"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"key": "logoUrl",
|
|
199
|
+
"type": "image",
|
|
200
|
+
"label": "Brand Logo",
|
|
201
|
+
"recommendedWidth": 512,
|
|
202
|
+
"recommendedHeight": 512
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"key": "brandUrl",
|
|
206
|
+
"type": "text",
|
|
207
|
+
"label": "Home Link URL"
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"key": "headerCtaLabel",
|
|
211
|
+
"type": "text",
|
|
212
|
+
"label": "Header Button Label"
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"key": "navLabels",
|
|
216
|
+
"type": "object",
|
|
217
|
+
"label": "Navigation Links",
|
|
218
|
+
"fields": [
|
|
219
|
+
{
|
|
220
|
+
"key": "home",
|
|
221
|
+
"type": "text",
|
|
222
|
+
"label": "Home Link"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"key": "products",
|
|
226
|
+
"type": "text",
|
|
227
|
+
"label": "All Devices Link"
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"key": "specs",
|
|
231
|
+
"type": "text",
|
|
232
|
+
"label": "Spec Sheets Link"
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"key": "warranty",
|
|
236
|
+
"type": "text",
|
|
237
|
+
"label": "Warranty Portal Link"
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"key": "contact",
|
|
241
|
+
"type": "text",
|
|
242
|
+
"label": "Tech Support Link"
|
|
243
|
+
}
|
|
244
|
+
]
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"key": "business",
|
|
248
|
+
"type": "object",
|
|
249
|
+
"label": "Hardware Support Channels",
|
|
250
|
+
"fields": [
|
|
251
|
+
{
|
|
252
|
+
"key": "phone",
|
|
253
|
+
"type": "tel",
|
|
254
|
+
"label": "Tech Support Hotline"
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
"key": "whatsapp",
|
|
258
|
+
"type": "text",
|
|
259
|
+
"label": "Direct WhatsApp Order Desk"
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"key": "email",
|
|
263
|
+
"type": "email",
|
|
264
|
+
"label": "Enterprise Inquiry Email"
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
"key": "location",
|
|
268
|
+
"type": "object",
|
|
269
|
+
"label": "Service Center Address",
|
|
270
|
+
"fields": [
|
|
271
|
+
{
|
|
272
|
+
"key": "address",
|
|
273
|
+
"type": "text",
|
|
274
|
+
"label": "Street Address"
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"key": "city",
|
|
278
|
+
"type": "text",
|
|
279
|
+
"label": "City"
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"key": "country",
|
|
283
|
+
"type": "text",
|
|
284
|
+
"label": "Country"
|
|
285
|
+
}
|
|
286
|
+
]
|
|
287
|
+
}
|
|
288
|
+
]
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
"key": "footer",
|
|
292
|
+
"type": "object",
|
|
293
|
+
"label": "Footer Columns & Specs",
|
|
294
|
+
"fields": [
|
|
295
|
+
{
|
|
296
|
+
"key": "devicesHeading",
|
|
297
|
+
"type": "text",
|
|
298
|
+
"label": "Devices Column Heading"
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
"key": "devicesLink1",
|
|
302
|
+
"type": "text",
|
|
303
|
+
"label": "Device Link 1"
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
"key": "devicesLink2",
|
|
307
|
+
"type": "text",
|
|
308
|
+
"label": "Device Link 2"
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"key": "devicesLink3",
|
|
312
|
+
"type": "text",
|
|
313
|
+
"label": "Device Link 3"
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"key": "devicesLink4",
|
|
317
|
+
"type": "text",
|
|
318
|
+
"label": "Device Link 4"
|
|
319
|
+
},
|
|
320
|
+
{
|
|
321
|
+
"key": "supportHeading",
|
|
322
|
+
"type": "text",
|
|
323
|
+
"label": "Tech Support Heading"
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"key": "supportLink1",
|
|
327
|
+
"type": "text",
|
|
328
|
+
"label": "Support Link 1"
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
"key": "supportLink2",
|
|
332
|
+
"type": "text",
|
|
333
|
+
"label": "Support Link 2"
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
"key": "supportLink3",
|
|
337
|
+
"type": "text",
|
|
338
|
+
"label": "Support Link 3"
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"key": "warrantyHeading",
|
|
342
|
+
"type": "text",
|
|
343
|
+
"label": "Warranty & Claims Heading"
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
"key": "warrantyLink1",
|
|
347
|
+
"type": "text",
|
|
348
|
+
"label": "Warranty Link 1"
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
"key": "warrantyLink2",
|
|
352
|
+
"type": "text",
|
|
353
|
+
"label": "Warranty Link 2"
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"key": "warrantyLink3",
|
|
357
|
+
"type": "text",
|
|
358
|
+
"label": "Warranty Link 3"
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
"key": "youtubeUrl",
|
|
362
|
+
"type": "text",
|
|
363
|
+
"label": "YouTube Reviews URL"
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"key": "twitterUrl",
|
|
367
|
+
"type": "text",
|
|
368
|
+
"label": "X / Twitter URL"
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"key": "instagramUrl",
|
|
372
|
+
"type": "text",
|
|
373
|
+
"label": "Instagram Profile URL"
|
|
374
|
+
}
|
|
375
|
+
]
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
"key": "copyright",
|
|
379
|
+
"type": "text",
|
|
380
|
+
"label": "Copyright Text"
|
|
381
|
+
}
|
|
382
|
+
]
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
"id": "home",
|
|
386
|
+
"path": "home",
|
|
387
|
+
"type": "object",
|
|
388
|
+
"label": "Home Page Content",
|
|
389
|
+
"fields": [
|
|
390
|
+
{
|
|
391
|
+
"key": "heroBadge",
|
|
392
|
+
"type": "text",
|
|
393
|
+
"label": "Hero Tech Badge"
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
"key": "heroTitle",
|
|
397
|
+
"type": "text",
|
|
398
|
+
"label": "Hero Headline"
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
"key": "heroSummary",
|
|
402
|
+
"type": "textarea",
|
|
403
|
+
"label": "Hero Hardware Summary"
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
"key": "heroImage",
|
|
407
|
+
"type": "image",
|
|
408
|
+
"label": "Hero Flagship Hardware Render",
|
|
409
|
+
"recommendedWidth": 1920,
|
|
410
|
+
"recommendedHeight": 1080
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"key": "heroKeySpec1",
|
|
414
|
+
"type": "text",
|
|
415
|
+
"label": "Hero Spec Callout 1"
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
"key": "heroKeySpec2",
|
|
419
|
+
"type": "text",
|
|
420
|
+
"label": "Hero Spec Callout 2"
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"key": "heroKeySpec3",
|
|
424
|
+
"type": "text",
|
|
425
|
+
"label": "Hero Spec Callout 3"
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
"key": "primaryCtaLabel",
|
|
429
|
+
"type": "text",
|
|
430
|
+
"label": "Hero Buy / Order Button"
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
"key": "secondaryCtaLabel",
|
|
434
|
+
"type": "text",
|
|
435
|
+
"label": "Hero View Specs Button"
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
"key": "tickerItem1",
|
|
439
|
+
"type": "text",
|
|
440
|
+
"label": "Trust Ticker 1"
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
"key": "tickerItem2",
|
|
444
|
+
"type": "text",
|
|
445
|
+
"label": "Trust Ticker 2"
|
|
446
|
+
},
|
|
447
|
+
{
|
|
448
|
+
"key": "tickerItem3",
|
|
449
|
+
"type": "text",
|
|
450
|
+
"label": "Trust Ticker 3"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"key": "tickerItem4",
|
|
454
|
+
"type": "text",
|
|
455
|
+
"label": "Trust Ticker 4"
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"key": "categoryLabel",
|
|
459
|
+
"type": "text",
|
|
460
|
+
"label": "Gear Catalog Eyebrow"
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
"key": "categoryTitle",
|
|
464
|
+
"type": "text",
|
|
465
|
+
"label": "Gear Catalog Headline"
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"key": "categoryDesc",
|
|
469
|
+
"type": "textarea",
|
|
470
|
+
"label": "Gear Catalog Description"
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
"key": "categoryLabel1",
|
|
474
|
+
"type": "text",
|
|
475
|
+
"label": "Category Tab 1"
|
|
476
|
+
},
|
|
477
|
+
{
|
|
478
|
+
"key": "categoryLabel2",
|
|
479
|
+
"type": "text",
|
|
480
|
+
"label": "Category Tab 2"
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
"key": "categoryLabel3",
|
|
484
|
+
"type": "text",
|
|
485
|
+
"label": "Category Tab 3"
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
"key": "categoryLabel4",
|
|
489
|
+
"type": "text",
|
|
490
|
+
"label": "Category Tab 4"
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
"key": "product1Name",
|
|
494
|
+
"type": "text",
|
|
495
|
+
"label": "Device 1 Title"
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
"key": "product1Category",
|
|
499
|
+
"type": "text",
|
|
500
|
+
"label": "Device 1 Category"
|
|
501
|
+
},
|
|
502
|
+
{
|
|
503
|
+
"key": "product1Price",
|
|
504
|
+
"type": "text",
|
|
505
|
+
"label": "Device 1 Price"
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
"key": "product1Badge",
|
|
509
|
+
"type": "text",
|
|
510
|
+
"label": "Device 1 Badge"
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"key": "product1KeySpec",
|
|
514
|
+
"type": "text",
|
|
515
|
+
"label": "Device 1 Key Spec"
|
|
516
|
+
},
|
|
517
|
+
{
|
|
518
|
+
"key": "product1Image",
|
|
519
|
+
"type": "image",
|
|
520
|
+
"label": "Device 1 Photo"
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"key": "product2Name",
|
|
524
|
+
"type": "text",
|
|
525
|
+
"label": "Device 2 Title"
|
|
526
|
+
},
|
|
527
|
+
{
|
|
528
|
+
"key": "product2Category",
|
|
529
|
+
"type": "text",
|
|
530
|
+
"label": "Device 2 Category"
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
"key": "product2Price",
|
|
534
|
+
"type": "text",
|
|
535
|
+
"label": "Device 2 Price"
|
|
536
|
+
},
|
|
537
|
+
{
|
|
538
|
+
"key": "product2Badge",
|
|
539
|
+
"type": "text",
|
|
540
|
+
"label": "Device 2 Badge"
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
"key": "product2KeySpec",
|
|
544
|
+
"type": "text",
|
|
545
|
+
"label": "Device 2 Key Spec"
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
"key": "product2Image",
|
|
549
|
+
"type": "image",
|
|
550
|
+
"label": "Device 2 Photo"
|
|
551
|
+
},
|
|
552
|
+
{
|
|
553
|
+
"key": "product3Name",
|
|
554
|
+
"type": "text",
|
|
555
|
+
"label": "Device 3 Title"
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
"key": "product3Category",
|
|
559
|
+
"type": "text",
|
|
560
|
+
"label": "Device 3 Category"
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"key": "product3Price",
|
|
564
|
+
"type": "text",
|
|
565
|
+
"label": "Device 3 Price"
|
|
566
|
+
},
|
|
567
|
+
{
|
|
568
|
+
"key": "product3Badge",
|
|
569
|
+
"type": "text",
|
|
570
|
+
"label": "Device 3 Badge"
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
"key": "product3KeySpec",
|
|
574
|
+
"type": "text",
|
|
575
|
+
"label": "Device 3 Key Spec"
|
|
576
|
+
},
|
|
577
|
+
{
|
|
578
|
+
"key": "product3Image",
|
|
579
|
+
"type": "image",
|
|
580
|
+
"label": "Device 3 Photo"
|
|
581
|
+
},
|
|
582
|
+
{
|
|
583
|
+
"key": "product4Name",
|
|
584
|
+
"type": "text",
|
|
585
|
+
"label": "Device 4 Title"
|
|
586
|
+
},
|
|
587
|
+
{
|
|
588
|
+
"key": "product4Category",
|
|
589
|
+
"type": "text",
|
|
590
|
+
"label": "Device 4 Category"
|
|
591
|
+
},
|
|
592
|
+
{
|
|
593
|
+
"key": "product4Price",
|
|
594
|
+
"type": "text",
|
|
595
|
+
"label": "Device 4 Price"
|
|
596
|
+
},
|
|
597
|
+
{
|
|
598
|
+
"key": "product4Badge",
|
|
599
|
+
"type": "text",
|
|
600
|
+
"label": "Device 4 Badge"
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
"key": "product4KeySpec",
|
|
604
|
+
"type": "text",
|
|
605
|
+
"label": "Device 4 Key Spec"
|
|
606
|
+
},
|
|
607
|
+
{
|
|
608
|
+
"key": "product4Image",
|
|
609
|
+
"type": "image",
|
|
610
|
+
"label": "Device 4 Photo"
|
|
611
|
+
},
|
|
612
|
+
{
|
|
613
|
+
"key": "product5Name",
|
|
614
|
+
"type": "text",
|
|
615
|
+
"label": "Device 5 Title"
|
|
616
|
+
},
|
|
617
|
+
{
|
|
618
|
+
"key": "product5Category",
|
|
619
|
+
"type": "text",
|
|
620
|
+
"label": "Device 5 Category"
|
|
621
|
+
},
|
|
622
|
+
{
|
|
623
|
+
"key": "product5Price",
|
|
624
|
+
"type": "text",
|
|
625
|
+
"label": "Device 5 Price"
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
"key": "product5Badge",
|
|
629
|
+
"type": "text",
|
|
630
|
+
"label": "Device 5 Badge"
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
"key": "product5KeySpec",
|
|
634
|
+
"type": "text",
|
|
635
|
+
"label": "Device 5 Key Spec"
|
|
636
|
+
},
|
|
637
|
+
{
|
|
638
|
+
"key": "product5Image",
|
|
639
|
+
"type": "image",
|
|
640
|
+
"label": "Device 5 Photo"
|
|
641
|
+
},
|
|
642
|
+
{
|
|
643
|
+
"key": "product6Name",
|
|
644
|
+
"type": "text",
|
|
645
|
+
"label": "Device 6 Title"
|
|
646
|
+
},
|
|
647
|
+
{
|
|
648
|
+
"key": "product6Category",
|
|
649
|
+
"type": "text",
|
|
650
|
+
"label": "Device 6 Category"
|
|
651
|
+
},
|
|
652
|
+
{
|
|
653
|
+
"key": "product6Price",
|
|
654
|
+
"type": "text",
|
|
655
|
+
"label": "Device 6 Price"
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
"key": "product6Badge",
|
|
659
|
+
"type": "text",
|
|
660
|
+
"label": "Device 6 Badge"
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
"key": "product6KeySpec",
|
|
664
|
+
"type": "text",
|
|
665
|
+
"label": "Device 6 Key Spec"
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
"key": "product6Image",
|
|
669
|
+
"type": "image",
|
|
670
|
+
"label": "Device 6 Photo"
|
|
671
|
+
},
|
|
672
|
+
{
|
|
673
|
+
"key": "product7Name",
|
|
674
|
+
"type": "text",
|
|
675
|
+
"label": "Device 7 Title"
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
"key": "product7Category",
|
|
679
|
+
"type": "text",
|
|
680
|
+
"label": "Device 7 Category"
|
|
681
|
+
},
|
|
682
|
+
{
|
|
683
|
+
"key": "product7Price",
|
|
684
|
+
"type": "text",
|
|
685
|
+
"label": "Device 7 Price"
|
|
686
|
+
},
|
|
687
|
+
{
|
|
688
|
+
"key": "product7Badge",
|
|
689
|
+
"type": "text",
|
|
690
|
+
"label": "Device 7 Badge"
|
|
691
|
+
},
|
|
692
|
+
{
|
|
693
|
+
"key": "product7KeySpec",
|
|
694
|
+
"type": "text",
|
|
695
|
+
"label": "Device 7 Key Spec"
|
|
696
|
+
},
|
|
697
|
+
{
|
|
698
|
+
"key": "product7Image",
|
|
699
|
+
"type": "image",
|
|
700
|
+
"label": "Device 7 Photo"
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
"key": "product8Name",
|
|
704
|
+
"type": "text",
|
|
705
|
+
"label": "Device 8 Title"
|
|
706
|
+
},
|
|
707
|
+
{
|
|
708
|
+
"key": "product8Category",
|
|
709
|
+
"type": "text",
|
|
710
|
+
"label": "Device 8 Category"
|
|
711
|
+
},
|
|
712
|
+
{
|
|
713
|
+
"key": "product8Price",
|
|
714
|
+
"type": "text",
|
|
715
|
+
"label": "Device 8 Price"
|
|
716
|
+
},
|
|
717
|
+
{
|
|
718
|
+
"key": "product8Badge",
|
|
719
|
+
"type": "text",
|
|
720
|
+
"label": "Device 8 Badge"
|
|
721
|
+
},
|
|
722
|
+
{
|
|
723
|
+
"key": "product8KeySpec",
|
|
724
|
+
"type": "text",
|
|
725
|
+
"label": "Device 8 Key Spec"
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
"key": "product8Image",
|
|
729
|
+
"type": "image",
|
|
730
|
+
"label": "Device 8 Photo"
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
"key": "featureEyebrow",
|
|
734
|
+
"type": "text",
|
|
735
|
+
"label": "Engineering Highlight Eyebrow"
|
|
736
|
+
},
|
|
737
|
+
{
|
|
738
|
+
"key": "featureTitle",
|
|
739
|
+
"type": "text",
|
|
740
|
+
"label": "Engineering Highlight Title"
|
|
741
|
+
},
|
|
742
|
+
{
|
|
743
|
+
"key": "featureDesc",
|
|
744
|
+
"type": "textarea",
|
|
745
|
+
"label": "Engineering Highlight Description"
|
|
746
|
+
},
|
|
747
|
+
{
|
|
748
|
+
"key": "featureCtaLabel",
|
|
749
|
+
"type": "text",
|
|
750
|
+
"label": "Engineering Highlight Action"
|
|
751
|
+
},
|
|
752
|
+
{
|
|
753
|
+
"key": "featureImage",
|
|
754
|
+
"type": "image",
|
|
755
|
+
"label": "Engineering Blueprint / Exploded View"
|
|
756
|
+
},
|
|
757
|
+
{
|
|
758
|
+
"key": "storyLabel",
|
|
759
|
+
"type": "text",
|
|
760
|
+
"label": "Acoustic Lab Eyebrow"
|
|
761
|
+
},
|
|
762
|
+
{
|
|
763
|
+
"key": "storyTitle",
|
|
764
|
+
"type": "text",
|
|
765
|
+
"label": "Acoustic Lab Headline"
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
"key": "storyDesc",
|
|
769
|
+
"type": "textarea",
|
|
770
|
+
"label": "Acoustic Lab Story"
|
|
771
|
+
},
|
|
772
|
+
{
|
|
773
|
+
"key": "storyImage",
|
|
774
|
+
"type": "image",
|
|
775
|
+
"label": "Lab Testing Image"
|
|
776
|
+
},
|
|
777
|
+
{
|
|
778
|
+
"key": "stat1Value",
|
|
779
|
+
"type": "text",
|
|
780
|
+
"label": "Spec 1 Metric"
|
|
781
|
+
},
|
|
782
|
+
{
|
|
783
|
+
"key": "stat1Label",
|
|
784
|
+
"type": "text",
|
|
785
|
+
"label": "Spec 1 Metric Label"
|
|
786
|
+
},
|
|
787
|
+
{
|
|
788
|
+
"key": "stat2Value",
|
|
789
|
+
"type": "text",
|
|
790
|
+
"label": "Spec 2 Metric"
|
|
791
|
+
},
|
|
792
|
+
{
|
|
793
|
+
"key": "stat2Label",
|
|
794
|
+
"type": "text",
|
|
795
|
+
"label": "Spec 2 Metric Label"
|
|
796
|
+
},
|
|
797
|
+
{
|
|
798
|
+
"key": "stat3Value",
|
|
799
|
+
"type": "text",
|
|
800
|
+
"label": "Spec 3 Metric"
|
|
801
|
+
},
|
|
802
|
+
{
|
|
803
|
+
"key": "stat3Label",
|
|
804
|
+
"type": "text",
|
|
805
|
+
"label": "Spec 3 Metric Label"
|
|
806
|
+
},
|
|
807
|
+
{
|
|
808
|
+
"key": "whatsappLabel",
|
|
809
|
+
"type": "text",
|
|
810
|
+
"label": "Tech Hotline Eyebrow"
|
|
811
|
+
},
|
|
812
|
+
{
|
|
813
|
+
"key": "whatsappTitle",
|
|
814
|
+
"type": "text",
|
|
815
|
+
"label": "Tech Hotline Headline"
|
|
816
|
+
},
|
|
817
|
+
{
|
|
818
|
+
"key": "whatsappDesc",
|
|
819
|
+
"type": "textarea",
|
|
820
|
+
"label": "Tech Hotline Description"
|
|
821
|
+
},
|
|
822
|
+
{
|
|
823
|
+
"key": "whatsappCtaLabel",
|
|
824
|
+
"type": "text",
|
|
825
|
+
"label": "Tech Hotline Button Label"
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
"key": "whatsappCtaUrl",
|
|
829
|
+
"type": "text",
|
|
830
|
+
"label": "Tech Hotline WhatsApp Link"
|
|
831
|
+
}
|
|
832
|
+
]
|
|
833
|
+
},
|
|
834
|
+
{
|
|
835
|
+
"id": "product",
|
|
836
|
+
"path": "product",
|
|
837
|
+
"type": "object",
|
|
838
|
+
"label": "Product Detail Content",
|
|
839
|
+
"fields": [
|
|
840
|
+
{
|
|
841
|
+
"key": "name",
|
|
842
|
+
"type": "text",
|
|
843
|
+
"label": "Device Model Name",
|
|
844
|
+
"required": true
|
|
845
|
+
},
|
|
846
|
+
{
|
|
847
|
+
"key": "price",
|
|
848
|
+
"type": "text",
|
|
849
|
+
"label": "Device Retail Price",
|
|
850
|
+
"required": true
|
|
851
|
+
},
|
|
852
|
+
{
|
|
853
|
+
"key": "badge",
|
|
854
|
+
"type": "text",
|
|
855
|
+
"label": "Device Status Tag"
|
|
856
|
+
},
|
|
857
|
+
{
|
|
858
|
+
"key": "description",
|
|
859
|
+
"type": "textarea",
|
|
860
|
+
"label": "Device Overview"
|
|
861
|
+
},
|
|
862
|
+
{
|
|
863
|
+
"key": "featuredImage",
|
|
864
|
+
"type": "image",
|
|
865
|
+
"label": "Main Hardware Render"
|
|
866
|
+
},
|
|
867
|
+
{
|
|
868
|
+
"key": "addToSelectionLabel",
|
|
869
|
+
"type": "text",
|
|
870
|
+
"label": "Add to Cart Label"
|
|
871
|
+
},
|
|
872
|
+
{
|
|
873
|
+
"key": "warrantyLabel",
|
|
874
|
+
"type": "text",
|
|
875
|
+
"label": "Warranty Claim Label"
|
|
876
|
+
},
|
|
877
|
+
{
|
|
878
|
+
"key": "specsTitle",
|
|
879
|
+
"type": "text",
|
|
880
|
+
"label": "Technical Specifications Heading"
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
"key": "specsDetails",
|
|
884
|
+
"type": "textarea",
|
|
885
|
+
"label": "Technical Specs Summary"
|
|
886
|
+
},
|
|
887
|
+
{
|
|
888
|
+
"key": "boxTitle",
|
|
889
|
+
"type": "text",
|
|
890
|
+
"label": "What's In The Box Heading"
|
|
891
|
+
},
|
|
892
|
+
{
|
|
893
|
+
"key": "boxDetails",
|
|
894
|
+
"type": "textarea",
|
|
895
|
+
"label": "Included In Box Items"
|
|
896
|
+
},
|
|
897
|
+
{
|
|
898
|
+
"key": "shippingTitle",
|
|
899
|
+
"type": "text",
|
|
900
|
+
"label": "Fast Delivery & Warranty Heading"
|
|
901
|
+
},
|
|
902
|
+
{
|
|
903
|
+
"key": "shippingSummary",
|
|
904
|
+
"type": "textarea",
|
|
905
|
+
"label": "Delivery Times & Express Courier Guarantee"
|
|
906
|
+
},
|
|
907
|
+
{
|
|
908
|
+
"key": "shippingReturns",
|
|
909
|
+
"type": "textarea",
|
|
910
|
+
"label": "Direct 1-to-1 Replacement Warranty Policy"
|
|
911
|
+
},
|
|
912
|
+
{
|
|
913
|
+
"key": "relatedLabel",
|
|
914
|
+
"type": "text",
|
|
915
|
+
"label": "Compatible Gear Eyebrow"
|
|
916
|
+
},
|
|
917
|
+
{
|
|
918
|
+
"key": "relatedTitle",
|
|
919
|
+
"type": "text",
|
|
920
|
+
"label": "Recommended Ecosystem Additions"
|
|
921
|
+
}
|
|
922
|
+
]
|
|
923
|
+
}
|
|
924
|
+
],
|
|
925
|
+
"defaults": {
|
|
926
|
+
"common": {
|
|
927
|
+
"websiteTitle": "NEXUS HARDWARE",
|
|
928
|
+
"shortDescription": "Audiophile acoustics, ultra-fast charging matrices, and high-performance computing peripherals built for creators and gamers.",
|
|
929
|
+
"tagline": "Precision Hardware & Acoustics",
|
|
930
|
+
"announcementText": "Official 2-Year Direct Replacement Warranty On All Devices — Islandwide 24h Express Dispatch",
|
|
931
|
+
"logoUrl": "/logo.svg",
|
|
932
|
+
"brandUrl": "/",
|
|
933
|
+
"headerCtaLabel": "Browse Gear",
|
|
934
|
+
"copyright": "© 2026 NEXUS Technologies Lab. All rights reserved.",
|
|
935
|
+
"navLabels": {
|
|
936
|
+
"home": "Home",
|
|
937
|
+
"products": "Devices & Gear",
|
|
938
|
+
"specs": "Spec Sheets",
|
|
939
|
+
"warranty": "2-Year Warranty",
|
|
940
|
+
"contact": "Tech Support"
|
|
941
|
+
},
|
|
942
|
+
"business": {
|
|
943
|
+
"phone": "+94 11 234 5678",
|
|
944
|
+
"whatsapp": "94771234567",
|
|
945
|
+
"email": "support@nexushardware.com",
|
|
946
|
+
"location": {
|
|
947
|
+
"address": "104 Galle Road, Kollupitiya",
|
|
948
|
+
"city": "Colombo 03",
|
|
949
|
+
"country": "Sri Lanka"
|
|
950
|
+
}
|
|
951
|
+
},
|
|
952
|
+
"footer": {
|
|
953
|
+
"devicesHeading": "Hardware Ecosystem",
|
|
954
|
+
"devicesLink1": "Spatial ANC Headphones",
|
|
955
|
+
"devicesLink2": "GaN Fast Power Delivery",
|
|
956
|
+
"devicesLink3": "Precision Gaming Mice",
|
|
957
|
+
"devicesLink4": "Mechanical Keyboards",
|
|
958
|
+
"supportHeading": "Tech Support",
|
|
959
|
+
"supportLink1": "Firmware & Driver Downloads",
|
|
960
|
+
"supportLink2": "Live Diagnostics Chat",
|
|
961
|
+
"supportLink3": "Authorized Repair Centers",
|
|
962
|
+
"warrantyHeading": "Protection",
|
|
963
|
+
"warrantyLink1": "Register Serial Number",
|
|
964
|
+
"warrantyLink2": "1-to-1 Replacement Policy",
|
|
965
|
+
"warrantyLink3": "Extended Care Coverage",
|
|
966
|
+
"youtubeUrl": "https://youtube.com",
|
|
967
|
+
"twitterUrl": "https://x.com",
|
|
968
|
+
"instagramUrl": "https://instagram.com"
|
|
969
|
+
}
|
|
970
|
+
},
|
|
971
|
+
"home": {
|
|
972
|
+
"heroBadge": "FLAGSHIP ACOUSTICS · BT 5.4 · 48H ANC",
|
|
973
|
+
"heroTitle": "Sonic Pro Wireless. Pure Silence. Pure Detail.",
|
|
974
|
+
"heroSummary": "Engineered with 45mm beryllium-coated dynamic drivers and dual hybrid active noise cancellation chips for studio-master fidelity anywhere in the world.",
|
|
975
|
+
"heroImage": "https://images.unsplash.com/photo-1505740420928-5e560c06d30e?w=1920&q=85",
|
|
976
|
+
"heroKeySpec1": "-42dB Active Noise Cancellation",
|
|
977
|
+
"heroKeySpec2": "48 Hours High-Fidelity Playback",
|
|
978
|
+
"heroKeySpec3": "Lossless LDAC & aptX Adaptive",
|
|
979
|
+
"primaryCtaLabel": "Order via WhatsApp",
|
|
980
|
+
"secondaryCtaLabel": "Compare Specifications",
|
|
981
|
+
"tickerItem1": "Genuine Direct Manufacturer Warranty",
|
|
982
|
+
"tickerItem2": "Zero Latency 2.4GHz & Bluetooth 5.4",
|
|
983
|
+
"tickerItem3": "Complimentary Priority Tech Support",
|
|
984
|
+
"tickerItem4": "Islandwide Cash on Delivery Verified",
|
|
985
|
+
"categoryLabel": "PERFORMANCE MATRICES",
|
|
986
|
+
"categoryTitle": "The Hardware Catalog",
|
|
987
|
+
"categoryDesc": "Tested in rigorous acoustic and thermal chambers to exceed professional studio and gaming standards.",
|
|
988
|
+
"categoryLabel1": "Audio & ANC",
|
|
989
|
+
"categoryLabel2": "Power & GaN",
|
|
990
|
+
"categoryLabel3": "Gaming Gear",
|
|
991
|
+
"categoryLabel4": "Smart Wearables",
|
|
992
|
+
"product1Name": "Sonic Pro Wireless ANC Headphones",
|
|
993
|
+
"product1Category": "Audio & ANC",
|
|
994
|
+
"product1Price": "LKR 46,500",
|
|
995
|
+
"product1Badge": "Flagship",
|
|
996
|
+
"product1KeySpec": "45mm Beryllium · -42dB ANC · 48h Battery",
|
|
997
|
+
"product1Image": "https://images.unsplash.com/photo-1505740420928-5e560c06d30e?w=800&q=85",
|
|
998
|
+
"product2Name": "AeroBuds Neo True Wireless",
|
|
999
|
+
"product2Category": "Audio & ANC",
|
|
1000
|
+
"product2Price": "LKR 18,900",
|
|
1001
|
+
"product2Badge": "New",
|
|
1002
|
+
"product2KeySpec": "Spatial Audio · IPX5 Water Resistance · 32h Case",
|
|
1003
|
+
"product2Image": "https://images.unsplash.com/photo-1590658268037-6bf12165a8df?w=800&q=85",
|
|
1004
|
+
"product3Name": "Titan 140W GaN 4-Port Fast Charger",
|
|
1005
|
+
"product3Category": "Power & GaN",
|
|
1006
|
+
"product3Price": "LKR 14,200",
|
|
1007
|
+
"product3Badge": "Bestseller",
|
|
1008
|
+
"product3KeySpec": "3x USB-C PD 3.1 + 1x USB-A · ThermalGuard",
|
|
1009
|
+
"product3Image": "https://images.unsplash.com/photo-1583863788434-e58a36330cf0?w=800&q=85",
|
|
1010
|
+
"product4Name": "MagFlow 20000mAh 65W Power Bank",
|
|
1011
|
+
"product4Category": "Power & GaN",
|
|
1012
|
+
"product4Price": "LKR 16,500",
|
|
1013
|
+
"product4Badge": "",
|
|
1014
|
+
"product4KeySpec": "Laptop Fast Charge · Digital OLED Percentage Display",
|
|
1015
|
+
"product4Image": "https://images.unsplash.com/photo-1609091839311-d5365f9ff1c5?w=800&q=85",
|
|
1016
|
+
"product5Name": "Apex 75 Pro Hall-Effect Keyboard",
|
|
1017
|
+
"product5Category": "Gaming Gear",
|
|
1018
|
+
"product5Price": "LKR 38,900",
|
|
1019
|
+
"product5Badge": "Pro Esports",
|
|
1020
|
+
"product5KeySpec": "Rapid Trigger 0.1mm · CNC Aluminum · PBT Keycaps",
|
|
1021
|
+
"product5Image": "https://images.unsplash.com/photo-1587829741301-dc798b83add3?w=800&q=85",
|
|
1022
|
+
"product6Name": "Viper 8K Ultra-Light Wireless Mouse",
|
|
1023
|
+
"product6Category": "Gaming Gear",
|
|
1024
|
+
"product6Price": "LKR 21,500",
|
|
1025
|
+
"product6Badge": "",
|
|
1026
|
+
"product6KeySpec": "49g Feathery · 3395 Optical Sensor · 8000Hz Polling",
|
|
1027
|
+
"product6Image": "https://images.unsplash.com/photo-1615663245857-ac93bb7c39e7?w=800&q=85",
|
|
1028
|
+
"product7Name": "ChronoTrack Pro Smartwatch",
|
|
1029
|
+
"product7Category": "Smart Wearables",
|
|
1030
|
+
"product7Price": "LKR 31,000",
|
|
1031
|
+
"product7Badge": "New",
|
|
1032
|
+
"product7KeySpec": "AMOLED 1000nits · Dual-GPS · Titanium Bezel",
|
|
1033
|
+
"product7Image": "https://images.unsplash.com/photo-1523275335684-37898b6baf30?w=800&q=85",
|
|
1034
|
+
"product8Name": "StreamMaster 4K USB-C Audio Interface",
|
|
1035
|
+
"product8Category": "Audio & ANC",
|
|
1036
|
+
"product8Price": "LKR 29,800",
|
|
1037
|
+
"product8Badge": "",
|
|
1038
|
+
"product8KeySpec": "32-bit/192kHz · Pre-amp +48V Phantom · Zero Latency",
|
|
1039
|
+
"product8Image": "https://images.unsplash.com/photo-1598488035139-bdbb2231ce04?w=800&q=85",
|
|
1040
|
+
"featureEyebrow": "ACOUSTIC BENCHMARK",
|
|
1041
|
+
"featureTitle": "Beryllium Dynamics Meets Spatial Clarity",
|
|
1042
|
+
"featureDesc": "Unlike standard mylar drivers that distort at high volumes, our 45mm custom beryllium diaphragms deliver lightning-fast transient response, razor-sharp instrument separation, and thunderous 10Hz sub-bass extension.",
|
|
1043
|
+
"featureCtaLabel": "Explore Audio Architecture",
|
|
1044
|
+
"featureImage": "https://images.unsplash.com/photo-1546435770-a3e426bf472b?w=1200&q=85",
|
|
1045
|
+
"storyLabel": "R&D ENGINEERING",
|
|
1046
|
+
"storyTitle": "No Gimmicks. Only Measured Performance.",
|
|
1047
|
+
"storyDesc": "At NEXUS, we engineer hardware with verified technical benchmarks. Every component is subjected to RF interference chambers, drop impact tests, and multi-thousand hour thermal burn-in before earning the NEXUS seal.",
|
|
1048
|
+
"storyImage": "https://images.unsplash.com/photo-1581092160607-ee22621dd758?w=900&q=85",
|
|
1049
|
+
"stat1Value": "< 0.05%",
|
|
1050
|
+
"stat1Label": "Total Harmonic Distortion (THD)",
|
|
1051
|
+
"stat2Value": "140W",
|
|
1052
|
+
"stat2Label": "Maximum GaN Power Delivery Output",
|
|
1053
|
+
"stat3Value": "2 Years",
|
|
1054
|
+
"stat3Label": "Full Direct Hardware Warranty",
|
|
1055
|
+
"whatsappLabel": "DIRECT TECH ADVISOR",
|
|
1056
|
+
"whatsappTitle": "Consult an Engineer via WhatsApp",
|
|
1057
|
+
"whatsappDesc": "Have questions about system compatibility, impedance matching, or high-draw multi-device charging? Chat directly with our technical support team for instant answers and priority ordering.",
|
|
1058
|
+
"whatsappCtaLabel": "Message Tech Support",
|
|
1059
|
+
"whatsappCtaUrl": "https://wa.me/94771234567?text=Hi%20NEXUS%20Tech%20Support%2C%20I'd%20like%20assistance%20choosing%20hardware%20and%20verifying%20compatibility."
|
|
1060
|
+
},
|
|
1061
|
+
"product": {
|
|
1062
|
+
"name": "Sonic Pro Wireless ANC Headphones",
|
|
1063
|
+
"price": "LKR 46,500",
|
|
1064
|
+
"badge": "FLAGSHIP",
|
|
1065
|
+
"description": "Premium wireless over-ear headphones featuring dual hybrid active noise cancellation, custom 45mm beryllium drivers, and up to 48 hours of non-stop high-resolution playback with rapid charge.",
|
|
1066
|
+
"featuredImage": "https://images.unsplash.com/photo-1505740420928-5e560c06d30e?w=1000&q=85",
|
|
1067
|
+
"addToSelectionLabel": "Add to Cart",
|
|
1068
|
+
"warrantyLabel": "Official 2-Year Warranty Included",
|
|
1069
|
+
"specsTitle": "Technical Specifications",
|
|
1070
|
+
"specsDetails": "Driver Architecture: 45mm Custom Beryllium Diaphragm | Frequency Response: 10Hz – 40,000Hz | Impedance: 32 Ohms | Bluetooth Version: 5.4 with Multipoint Dual Connection | Codec Support: LDAC, aptX Adaptive, AAC, SBC | Weight: 265g | Battery Capacity: 850mAh | Rapid Charge: 10 mins = 5 hours play.",
|
|
1071
|
+
"boxTitle": "What's in the Box",
|
|
1072
|
+
"boxDetails": "Sonic Pro Wireless Headphones | Hardshell Travel Case with Cable Pocket | Gold-plated 3.5mm to 3.5mm Aux Cable (1.2m) | Braided USB-C to USB-C Charging Cable | Airplane Dual-Pin Adapter | Quick Start Guide & Warranty Certificate.",
|
|
1073
|
+
"shippingTitle": "Express Delivery & Direct Warranty",
|
|
1074
|
+
"shippingSummary": "Free courier delivery nationwide within 24 hours in Colombo and 48 hours islandwide. Secure tamper-evident protective transit packaging.",
|
|
1075
|
+
"shippingReturns": "Official 2-Year Direct Replacement Warranty. If hardware defect occurs under normal use, we swap for a brand new unit with zero repair turnaround delay.",
|
|
1076
|
+
"relatedLabel": "COMPLETE YOUR AUDIO ECOSYSTEM",
|
|
1077
|
+
"relatedTitle": "Recommended Accessories"
|
|
1078
|
+
}
|
|
1079
|
+
}
|
|
1080
|
+
}
|