-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathproducts.js
628 lines (626 loc) · 16.9 KB
/
products.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
/**
* @typedef {object} Variant
* @property {string} name - The variant name.
* @property {string} image - The URL to the variant's image.
* @property {string} sku - The stock keeping unit.
* @property {string} color - The color code in hexadecimal.
* @property {number} price - The price of the variant.
*/
/**
* @typedef {object} Product
* @property {string} name - The product name.
* @property {string} id - The product ID.
* @property {string} category - The product category.
* @property {string[]} highlights - List of product highlights.
* @property {Variant[]} variants - Available variants of the product.
*/
/**
* @type {Product[]}
*/
export default [
{
name: "TerraFirma AutoCultivator T-300",
id: "AU-01",
category: "autonomous",
highlightsa: [
"Precision GPS mapping optimizes field coverage.",
"Hybrid engine ensures eco-friendly extended operation.",
"Fully autonomous with smart obstacle detection and terrain adaptation.",
],
variants: [
{
name: "Silver",
image: "/cdn/img/product/[size]/AU-01-SI.webp",
sku: "AU-01-SI",
color: "#C0C0C0", // Silver
price: 1000,
},
],
},
{
name: "SmartFarm Titan",
id: "AU-02",
category: "autonomous",
highlights: [
"Advanced autopilot technology for precise farming operations.",
"Eco-friendly solar-assisted power system for sustainable use.",
"Intelligent AI for real-time field analysis and automated adjustments.",
],
variants: [
{
name: "Sunset Copper",
image: "/cdn/img/product/[size]/AU-02-OG.webp",
sku: "AU-02-OG",
color: "#dd5219", // Sunset Copper:
price: 4100,
},
{
name: "Cosmic Sapphire",
image: "/cdn/img/product/[size]/AU-02-BL.webp",
sku: "AU-02-BL",
color: "#2A52BE", // Cosmic Sapphire:
price: 4000,
},
{
name: "Verdant Shadow",
image: "/cdn/img/product/[size]/AU-02-GG.webp",
sku: "AU-02-GG",
color: "#005A04",
price: 4000,
},
],
},
{
name: "FutureHarvest Navigator",
id: "AU-03",
category: "autonomous",
highlights: [
"Autonomous navigation with sub-inch accuracy",
"Solar-enhanced hybrid powertrain for extended operation",
"Real-time crop and soil health analytics",
],
variants: [
{
name: "Turquoise Titan",
image: "/cdn/img/product/[size]/AU-03-TQ.webp",
sku: "AU-03-TQ",
color: "#169fb8", // Turquoise Titan:
price: 1600,
},
{
name: "Majestic Violet",
image: "/cdn/img/product/[size]/AU-03-PL.webp",
sku: "AU-03-PL",
color: "#9B5FC0", // Majestic Violet:
price: 1700,
},
{
name: "Scarlet Dynamo",
image: "/cdn/img/product/[size]/AU-03-RD.webp",
sku: "AU-03-RD",
color: "#FF2400", // Scarlet Dynamo:
price: 1900,
},
{
name: "Sunbeam Yellow",
image: "/cdn/img/product/[size]/AU-03-YE.webp",
sku: "AU-03-YE",
color: "#faad00", // Sunbeam Yellow:
price: 1800,
},
],
},
{
name: "Sapphire Sunworker 460R",
id: "AU-04",
category: "autonomous",
highlights: [
"Next-generation autonomous guidance system for seamless operation",
"High-capacity energy storage for all-day work without recharge",
"Advanced analytics suite for precision soil and plant health management",
],
variants: [
{
name: "Ruby Red",
image: "/cdn/img/product/[size]/AU-04-RD.webp",
sku: "AU-04-RD",
color: "#9B111E", // Ruby Red:
price: 8700,
},
{
name: "Midnight Onyx",
image: "/cdn/img/product/[size]/AU-04-BK.webp",
sku: "AU-04-BK",
color: "#353839", // Midnight Onyx:
price: 8500,
},
],
},
{
name: "EcoGrow Crop Commander",
id: "AU-05",
category: "autonomous",
highlights: [
"Ultra-precise field navigation technology",
"Dual-mode power system for maximum uptime",
"On-the-go field data analysis for smart farming decisions",
],
variants: [
{
name: "Zestful Horizon",
image: "/cdn/img/product/[size]/AU-05-ZH.webp",
sku: "AU-05-ZH",
color: "#FFA07A", // Zestful Horizon:
price: 3400,
},
],
},
{
name: "FarmFleet Sovereign",
id: "AU-06",
category: "autonomous",
highlights: [
"Robust all-terrain adaptability for diverse farm landscapes",
"High-efficiency energy matrix for longer field endurance",
"Integrated crop management system with advanced diagnostics",
],
variants: [
{
name: "Canary Zenith",
image: "/cdn/img/product/[size]/AU-06-CZ.webp",
sku: "AU-06-CZ",
color: "#FFD700", // Canary Zenith:
price: 2200,
},
{
name: "Minted Jade",
color: "#628882", // Minted Jade:
image: "/cdn/img/product/[size]/AU-06-MT.webp",
sku: "AU-06-MT",
price: 2100,
},
],
},
{
name: "Verde Voyager",
id: "AU-07",
category: "autonomous",
highlights: [
"Adaptive drive system intelligently navigates through diverse field conditions",
"Clean energy operation with advanced solar battery technology",
"High-resolution field scanners for precise agronomy insights",
],
variants: [
{
name: "Glacial Mint",
image: "/cdn/img/product/[size]/AU-07-MT.webp",
sku: "AU-07-MT",
color: "#AFDBD2", // Glacial Mint:
price: 4000,
},
{
name: "Sunbeam Yellow",
image: "/cdn/img/product/[size]/AU-07-YE.webp",
sku: "AU-07-YE",
color: "#FFDA03", // Sunbeam Yellow:
price: 5000,
},
],
},
{
name: "Field Pioneer",
id: "AU-08",
category: "autonomous",
highlights: [
"Automated field traversal with intelligent pathfinding algorithms",
"Eco-friendly electric motors paired with high-capacity batteries",
"Real-time environmental monitoring for optimal crop growth",
],
variants: [
{
name: "Polar White",
image: "/cdn/img/product/[size]/AU-08-WH.webp",
sku: "AU-08-WH",
color: "#E8E8E8", // Polar White:
price: 4500,
},
],
},
{
name: "Heritage Workhorse",
id: "CL-01",
category: "classic",
highlights: [
"Proven reliability with a touch of modern reliability enhancements",
"Robust construction equipped to withstand decades of labor",
"User-friendly operation with traditional manual controls",
],
variants: [
{
name: "Verdant Field",
image: "/cdn/img/product/[size]/CL-01-GR.webp",
sku: "CL-01-GR",
color: "#6B8E23", // Verdant Field:
price: 5700,
},
{
name: "Stormy Sky",
image: "/cdn/img/product/[size]/CL-01-GY.webp",
sku: "CL-01-GY",
color: "#708090", // Stormy Sky:
price: 6200,
},
],
},
{
name: "Falcon Crest Farm",
id: "CL-02",
category: "classic",
highlights: [
"Rugged simplicity meets classic design",
"Built-to-last machinery for reliable fieldwork",
"Ease of control with straightforward mechanical systems",
],
variants: [
{
name: "Cerulean Classic",
image: "/cdn/img/product/[size]/CL-02-BL.webp",
sku: "CL-02-BL",
color: "#007BA7", // Cerulean Classic:
price: 2600,
},
],
},
{
name: "Falcon Crest Work",
id: "CL-03",
category: "classic",
highlights: [
"Vintage engineering with a legacy of durability",
"Powerful yet simple mechanics for easy operation and repair",
"Classic aesthetics with a robust body, built to last",
],
variants: [
{
name: "Meadow Green",
image: "/cdn/img/product/[size]/CL-03-GR.webp",
sku: "CL-03-GR",
color: "#7CFC00", // Meadow Green:
price: 2300,
},
{
name: "Rustic Rose",
image: "/cdn/img/product/[size]/CL-03-PI.webp",
sku: "CL-03-PI",
color: "#b50018", // Rustic Rose:
price: 2300,
},
{
name: "Harvest Gold",
image: "/cdn/img/product/[size]/CL-03-YE.webp",
sku: "CL-03-YE",
color: "#DA9100", // Harvest Gold:
price: 2300,
},
],
},
{
name: "Broadfield Majestic",
id: "CL-04",
category: "classic",
highlights: [
"Built with the robust heart of early industrial workhorses",
"Simplified mechanics for unparalleled ease of use and maintenance",
"A testament to early agricultural machinery with a dependable engine",
],
variants: [
{
name: "Oceanic Blue",
image: "/cdn/img/product/[size]/CL-04-BL.webp",
sku: "CL-04-BL",
color: "#0040a6", // Oceanic Blue:
price: 2200,
},
{
name: "Rustic Crimson",
image: "/cdn/img/product/[size]/CL-04-RD.webp",
sku: "CL-04-RD",
color: "#7B3F00", // Rustic Crimson:
price: 2200,
},
{
name: "Aqua Green",
image: "/cdn/img/product/[size]/CL-04-TQ.webp",
sku: "CL-04-TQ",
color: "#00b298", // Aqua Green:
price: 2200,
},
],
},
{
name: "Countryside Commander",
id: "CL-05",
category: "classic",
highlights: [
"Reliable performance with time-tested engineering",
"Rugged design for efficient operation across all types of terrain",
"Classic operator comfort with modern ergonomic enhancements",
],
variants: [
{
name: "Pacific Teal",
image: "/cdn/img/product/[size]/CL-05-PT.webp",
sku: "CL-05-PT",
color: "#479da8", // Pacific Teal:
price: 2700,
},
{
name: "Barn Red",
image: "/cdn/img/product/[size]/CL-05-RD.webp",
sku: "CL-05-RD",
color: "#7C0A02", // Barn Red:
price: 2700,
},
],
},
{
name: "Danamark Steadfast",
id: "CL-06",
category: "classic",
highlights: [
"Engineered for the meticulous demands of Danish agriculture",
"Sturdy chassis and reliable mechanics for longevity",
"Utilitarian design with practical functionality and comfort",
],
variants: [
{
name: "Emerald Forest",
image: "/cdn/img/product/[size]/CL-06-MT.webp",
sku: "CL-06-MT",
color: "#46f5bb", // Emerald Forest:
price: 2800,
},
{
name: "Golden Wheat",
image: "/cdn/img/product/[size]/CL-06-YE.webp",
sku: "CL-06-YE",
color: "#faaf3f", // Golden Wheat:
price: 2800,
},
],
},
{
name: "Greenland Rover",
id: "CL-07",
category: "classic",
highlights: [
"Engineered to tackle the diverse European terrain with ease",
"Sturdy and reliable mechanics known for their longevity",
"Ergonomically designed for comfort during long working hours",
],
variants: [
{
name: "Forest Fern",
image: "/cdn/img/product/[size]/CL-07-GR.webp",
sku: "CL-07-GR",
color: "#2ea250", // Forest Fern:
price: 2900,
},
{
name: "Autumn Amber",
image: "/cdn/img/product/[size]/CL-07-YE.webp",
sku: "CL-07-YE",
color: "#FFBF00", // Autumn Amber:
price: 2900,
},
],
},
{
name: "Holland Hamster",
id: "CL-08",
category: "classic",
highlights: [
"Dutch craftsmanship for precision and quality",
"Optimized for tulip fields and versatile European landscapes",
"Ergonomic design with a focus on operator comfort and efficiency",
],
variants: [
{
name: "Polder Green",
image: "/cdn/img/product/[size]/CL-08-GR.webp",
sku: "CL-08-GR",
color: "#C2B280", // Polder Green:
price: 7750,
},
{
name: "Tulip Magenta",
image: "/cdn/img/product/[size]/CL-08-PI.webp",
sku: "CL-08-PI",
color: "#D65282", // Tulip Magenta:
price: 7900,
},
],
},
{
name: "TerraFirma Veneto",
id: "CL-09",
category: "classic",
highlights: [
"Elegant Italian design with sleek lines and a vibrant aesthetic",
"Precision mechanics for vineyard and orchard maneuverability",
"Comfort-focused design with a flair for the dramatic",
],
variants: [
{
name: "Adriatic Blue",
image: "/cdn/img/product/[size]/CL-09-BL.webp",
sku: "CL-09-BL",
color: "#2f6ea3", // Adriatic Blue:
price: 2950,
},
{
name: "Tuscan Green",
image: "/cdn/img/product/[size]/CL-09-GR.webp",
sku: "CL-09-GR",
color: "#518b2b", // Tuscan Green:
price: 2950,
},
],
},
{
name: "Global Gallant",
id: "CL-10",
category: "classic",
highlights: [
"Retro design with a nod to the golden era of farming",
"Engine robustness that stands the test of time",
"Functional simplicity for ease of operation in any region",
],
variants: [
{
name: "Sahara Dawn",
image: "/cdn/img/product/[size]/CL-10-SD.webp",
sku: "CL-10-SD",
color: "#b8a875", // Sahara Dawn:
price: 2600,
},
{
name: "Violet Vintage",
image: "/cdn/img/product/[size]/CL-10-VI.webp",
sku: "CL-10-VI",
color: "#8A2BE2", // Violet Vintage:
price: 2600,
},
],
},
{
name: "Scandinavia Sower",
id: "CL-11",
category: "classic",
highlights: [
"Authentic Swedish engineering for optimal cold-climate performance",
"Sturdy build and mechanics for lifelong reliability",
"Iconic design reflecting the simplicity and efficiency of Scandinavian style",
],
variants: [
{
name: "Baltic Blue",
image: "/cdn/img/product/[size]/CL-11-SK.webp",
sku: "CL-11-SK",
color: "#95c1f4", // Baltic Blue:
price: 3100,
},
{
name: "Nordic Gold",
image: "/cdn/img/product/[size]/CL-11-YE.webp",
sku: "CL-11-YE",
color: "#FFD700", // Nordic Gold:
price: 3100,
},
],
},
{
name: "Celerity Cruiser",
id: "CL-12",
category: "classic",
highlights: [
"A speedster in the classic tractor segment, unparalleled in quick task completion",
"Sleek design with aerodynamic contours for reduced drag",
"Enhanced gearbox for smooth acceleration and nimble handling",
],
variants: [
{
name: "Velocity Blue",
image: "/cdn/img/product/[size]/CL-12-BL.webp",
sku: "CL-12-BL",
color: "#1E90FF", // Velocity Blue:
price: 3200,
},
{
name: "Rally Red",
image: "/cdn/img/product/[size]/CL-12-RD.webp",
sku: "CL-12-RD",
color: "#ED2939", // Rally Red:
price: 3200,
},
],
},
{
name: "Rapid Racer",
id: "CL-13",
category: "classic",
highlights: [
"Streamlined design for faster field operations",
"Optimized gear ratios for efficient power transmission",
"Advanced air flow system for superior engine cooling",
],
variants: [
{
name: "Speedway Blue",
image: "/cdn/img/product/[size]/CL-13-BL.webp",
sku: "CL-13-BL",
color: "#2679a6", // Speedway Blue:
price: 7500,
},
{
name: "Raceway Red",
image: "/cdn/img/product/[size]/CL-13-RD.webp",
sku: "CL-13-RD",
color: "#CF1020", // Raceway Red:
price: 7500,
},
],
},
{
name: "Caribbean Cruiser",
id: "CL-14",
category: "classic",
highlights: [
"Robust construction for enduring performance",
"Time-tested design with a proven track record",
"Easy-to-service mechanics for long-term reliability",
],
variants: [
{
name: "Emerald Grove",
image: "/cdn/img/product/[size]/CL-14-GR.webp",
sku: "CL-14-GR",
color: "#57ae13", // Emerald Grove:
price: 2300,
},
{
name: "Ruby Fields",
image: "/cdn/img/product/[size]/CL-14-RD.webp",
sku: "CL-14-RD",
color: "#cd2b1e", // Ruby Fields:
price: 2300,
},
],
},
{
name: "Fieldmaster Classic",
id: "CL-15",
category: "classic",
highlights: [
"Timeless design with a focus on comfort and control",
"Efficient fuel consumption with a powerful engine",
"Versatile functionality for all types of agricultural work",
],
variants: [
{
name: "Vintage Pink",
image: "/cdn/img/product/[size]/CL-15-PI.webp",
sku: "CL-15-PI",
color: "#e1949e", // Vintage Pink:
price: 6200,
},
{
name: "Sahara Dust",
image: "/cdn/img/product/[size]/CL-15-SD.webp",
sku: "CL-15-SD",
color: "#dec78c", // Sahara Dust:
price: 6200,
},
],
},
];