-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.js
More file actions
2167 lines (2149 loc) · 87 KB
/
data.js
File metadata and controls
2167 lines (2149 loc) · 87 KB
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
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Disclaimer - This data is collected from Amazon.com manually and it is intended to be used for learning purposes only.
// Dummy Data for E-commerce App with Images, Filters and Reviews
// categories an Object of Objects containing the categories
// and the products Array of Objects containing the products
// Total Categories: 6
// Total Products: (4 * 10) + (2 * 5) = 50
// Contributed by Shubham Lingayat : https://seebham.codes https://twitter.com/seebham
const structureOfCategoryData = [
// Category 1
{
title: "", // title of category,
keywords: [], // keywords of category,
filters: [], // array of filter objects for the category
},
{}, // Category 2 ...
];
// Structure of filter array
const filtersStructure = {
// Filter 1
filterName: {
filterName: "", // title of filter
filterList: ["", ""], // array of filter values of type String
},
filter2: {}, // Filter 2 ...
};
// Structure of product array
const productsStructure = [
// Product 1
{
filter1: "", // filter1 value
filter2: "", // filter2 value
title: "", // title of product
category: "", // category of product
price: 1, // price of product in INR
imgs: ["", ""], // array of images of product
specs: ["", ""], // Array or String of specs of product -> If Array, then render as list else if String, then render as single line
inStock: 20, // quantity in stock of product -> If 0, then hide from the store, or less than 10, then show a "Very few left" or play with this value
eta: 20, // estimated time of arrival of product in mins
id: "", // unique id of product
rating: 0.0, // rating of product
},
];
// Actual Data
const categories = {
Mobiles: {
title: "Mobiles",
keywords: [],
filters: {
Brand: {
filterName: "Brand",
filterList: [
"Apple",
"Samsung",
"Redmi",
"Jio",
"OnePlus",
"Realme",
"Oppo",
"Vivo",
"Mi",
],
},
RAM: {
filterName: "RAM",
filterList: ["4 MB", "2 GB", "4 GB", "6 GB", "8 GB"],
},
},
},
Books: {
title: "Books",
keywords: "",
filters: {
Language: {
filterName: "Language",
filterList: ["English", "Hindi", "Marathi"],
},
Genre: {
filterName: "Genre",
filterList: ["Fiction", "Historical", "Mystery", "Romance", "Poetry"],
},
},
},
Clothings: {
title: "Clothings",
keywords: "",
filters: {
For: {
filterName: "For",
filterList: ["Kids", "Men", "Women"],
},
},
},
Beauty: {
title: "Beauty",
keywords: "",
filters: {
Type: {
filterName: "Type",
filterList: [
"Bath and Body",
"Fragrance",
"Skin Care",
"Hair Care",
"Makeup",
],
},
},
},
Furniture: {
title: "Furniture",
keywords: "",
filters: {
Type: {
filterName: "Type",
filterList: ["Office Chair", "Desk", "Beds", "Sofas", "Wardrobes"],
},
},
},
Laptops: {
title: "Laptops",
keywords: "",
filters: {
For: {
filterName: "For",
filterList: [
"Students",
"Travel",
"Coding",
"Gaming",
"Content Creation",
],
},
Brand: {
filterName: "Brand",
filterList: ["Acer", "Dell", "HP", "Lenovo", "Asus", "Apple"],
},
RAM: {
filterName: "RAM",
filterList: ["4 GB", "8 GB", "16 GB", "32 GB", "64 GB"],
},
Processor: {
filterName: "Processor",
filterList: ["Intel", "AMD"],
},
DisplaySize: {
filterName: "Display Size",
filterList: ["14", "15.6", "16"],
},
HasSSD: {
filterName: "Has SSD?",
filterList: ["Yes", "No"],
},
},
},
};
// Products
const products = [
{
Brand: "Redmi",
RAM: "2 GB", // filters
title: "Redmi 9A (Nature Green, 2GB RAM, 32GB Storage)",
category: "Mobiles",
price: 6999,
imgs: [
"https://gitcdn.link/cdn/seebham/ecommerce-dummy-data/main/images/redmi9A1.jpg",
"https://gitcdn.link/cdn/seebham/ecommerce-dummy-data/main/images/redmi9A2.jpg",
],
specs: [
// Always check whether this is Array or String, if Array -> Bulleded List else if String -> Para
"13MP rear camera with AI portrait, AI scene recognition, HDR, pro mode | 5MP front camera.",
"16.58 centimeters (6.53 inch) HD+ multi-touch capacitive touchscreen with 1600 x 720 pixels resolution, 268 ppi pixel density and 20:9 aspect ratio",
"Memory, Storage & SIM: 2GB RAM, 32GB internal memory expandable up to 512GB | Dual SIM (nano+nano) + Dedicated SD card slot",
"Android v10 operating system with upto 2.0GHz clock speed Mediatek Helio G25 octa core processor",
"5000mAH lithium-polymer large battery with 10W wired charger in-box",
],
inStock: 40, // if less than 10, then display "Only {9} left!", else don't show anything.
eta: 30, // in mins
id: "m1",
rating: 4.2,
reviews: [
{
name: "Shubham",
title: "Don't buy this phone",
content: `Both 13 MP and 5MP Camera quality is good. Have lot of pre installed apps.
But can be uninstalled if not required. Overall good performance . I am using Asus zenfone max and according to me far better than Asus except Camera quality. It comes in 5000 mah battery and one can't get a better option at this price range. Go for it. It's really goodAfter one week useEdit:- please don't buy this phone. It hangs a lot and sometimes there is problem in touch screen.`,
rating: 1,
},
{
name: "Swanand",
title: "One of the good choice for low budget phone",
content: `If you are looking for low budget phone this can be a good choice for you.
If you wanna android phone just for day to day work then it's really good.
On playing heavy games it will hange obviously. Camera is fine at this range. When you start your new device it take some time but later it will work smoothly.
Phone is light weight with a good look`,
rating: "4",
},
{
name: "Sanskar",
title:
"Simply excellent. Read complete review written after my 30 days of experience",
content: `Excellent mobile for daily use @7500/-. Don't belive in negative reviews at all. If course the product parts made in China, entire assembly, software all are of India. Even this mobile have no bloat ware or Chinese apps and it's 3gb variant is excellent and black colour looks great.
Camera is good at it's price range and has autofocus and AI potrait feature.
Regarding battery is really huge and with normal daily usage it lasts for about 24 hrs as of my experience. With heavy usage and gaming it lasts for 7-10 hrs.
Regarding gaming, since it has gaming processor helio G25 (equal to Snapdragon 625), and it's hyperdrive technology, no lag in gaming and better network connectivity makes games more aweful.`,
rating: "5",
},
],
},
{
Brand: "Samsung",
RAM: "6 GB",
title: "Samsung Galaxy M31 (Ocean Blue, 6GB RAM, 128GB Storage)",
category: "Mobiles",
price: 14999,
imgs: [
"https://gitcdn.link/cdn/seebham/ecommerce-dummy-data/main/images/SamsungM311.jpg",
"https://gitcdn.link/cdn/seebham/ecommerce-dummy-data/main/images/SamsungM312.jpg",
],
specs: [
"Quad Camera Setup - 64MP (F1.8) Main Camera +8MP (F2.2) Ultra Wide Camera +5MP(F2.2) Depth Camera +5MP(F2.4) Macro Camera and 32MP (F2.0) front facing Camera",
"6.4-inch(16.21 centimeters) Super Amoled - Infinity U Cut Display , FHD+ Resolution (2340 x 1080) , 404 ppi pixel density and 16M color support",
"Android v10.0 operating system with 2.3GHz + 1.7GHz Exynos 9611 Octa core processor , 6GB RAM, 128GB internal memory expandable up to 512GB and dual SIM",
"6000 mAh Battery",
],
inStock: 50,
eta: 20,
id: "m2",
rating: 4.7,
reviews: [
{
name: "Rohit",
title: "Best mobile in buget",
content: "I higely recoomend this mobile",
rating: 5,
},
{
name: "Doraemon",
title: "Value for money",
content:
"Really a good budget phone with big battery. Camera performance also awesome, but in pro mode there no control for shutter speed and while changing the iso i don't feel any differences. I need more update on camera modes. Phone performance and charging speed is good. Except camera modes i love this phone.",
rating: 4,
},
{
name: "Nobita",
title: "Best in the market with this price range",
content:
"A Descent phone Definitely not for pro pubg player but can work fine Super amoled gives it best performance Descent camera Improved Selfie camera compared to M30 Long battery life Nice Security No ads unlike MI Works smoothly",
rating: 5,
},
],
},
{
popular: true,
Brand: "Apple",
RAM: "6 GB",
title: "Apple iPhone 12 Pro Max (128GB)",
category: "Mobiles",
price: 119999,
imgs: [
"https://gitcdn.link/cdn/seebham/ecommerce-dummy-data/main/images/iphone12M1.jpg",
"https://gitcdn.link/cdn/seebham/ecommerce-dummy-data/main/images/iphone12M2.jpg",
],
specs: [
"6.7-inch (17 cm diagonal) Super Retina XDR display",
"Ceramic Shield, tougher than any smartphone glass",
"A14 Bionic chip, the fastest chip ever in a smartphone",
"Pro camera system with 12MP Ultra Wide, Wide and Telephoto cameras; 5x optical zoom range; Night mode, Deep Fusion, Smart HDR 3, Apple ProRAW, 4K Dolby Vision HDR recording",
],
inStock: 1,
eta: 5,
id: "m3",
rating: 4.3,
reviews: [
{
name: "Johhny S",
title: "This took one of my kidneys. But worth it",
content:
"Impressed! I’ve tested it with iphone11 and other iphones, it’s remarkable. It has unquestionably better video quality and touch sensitivity. The screen is bigger than I thought. I loved the Gold variant. But if u have a 11 max or a X max I wouldn’t suggest for an upgradation. I feel that the next iphone will have way more cooler features so wouldn’t hurt to wait. My previous iphone was 6, so in my case am totally peachy with this phone. Though it has a ceramic glass wouldn’t hurt to buy a screen guard. If u can afford it u can totally go 4 it.",
rating: 5,
},
{
name: "Arjun",
title: "The best iPhone in 2020. Phone of the year.",
content:
"This is the best iPhone yes. The Max model gives you the better screen and overall is a camera beast. I would highly recommend this to anyone. Regarding value for money, its sad that we live in a country where Falling Rupee, Import Duty and High GST are the reasons for such high poricing. A rich country like USA pays only $1099 (Rs. 81,500) whereas its priced a whopping Rs. 48,400 more in India. Thats slmost 60% more. Shame!",
rating: "5",
},
{
name: "Sahith",
title: "Best & Biggest iPhone i ever owned 🥰",
content:
"Just no words, what a beauty. Upgrading from iPhone X, this feels so big and heavy. But do not has much discomfort while using, you will get used to it.Make sure to get a decent Screen guard and clear case just to safeguard this beauty.",
rating: "4",
},
],
},
{
Brand: "OnePlus",
RAM: "8 GB",
title: "OnePlus Nord CE 5G (Charcoal Ink, 8GB RAM, 128GB Storage)",
category: "Mobiles",
price: 24999,
imgs: [
"https://gitcdn.link/cdn/seebham/ecommerce-dummy-data/main/images/oneplusN1.jpg",
"https://gitcdn.link/cdn/seebham/ecommerce-dummy-data/main/images/oneplusN2.jpg",
],
specs: [
"64MP+8MP+2MP triple rear camera with 1080p video at 30/60 fps, 4k 30 fps | 16MP front camera with 1080p video at 30/60 fps",
"6.43-inch, 90Hz fluid AMOLED display with 2400 x 1080 pixels resolution | 410ppi",
"Memory, Storage & SIM: 8GB RAM | 128GB internal memory on UFS 2.1 storage system",
"Dual SIM (nano + nano) | OnePlus Nord CE currently supports dual 4G SIM Cards or a single 5G SIM + 4G SIM",
],
inStock: 5,
eta: 10,
id: "m4",
rating: 4.9,
reviews: [
{
name: "Bakwas",
title: "Bakwas phone",
content: "Bakwas phone",
rating: 1,
},
{
name: "Vikas",
title: "Good overall",
content: `The best part of the phone is it's super simple and user friendly operating system. Camera doesn't oversaturate colours and captures decent photos. Battery charging is super fast. People argue that this is overpriced in this segment but I guess ease of using the phone and mainly the OS wouldn't be so good in other comparable phones. It is super light and handy.
Edit: taking away 1 star from the review after a month's usage.
Phone app lags all the time. Phone starts ringing when I receive a call while the name of caller appears 5 seconds later. This is very annoying. Similar issue while calling. Hope some software update fixes this issue.`,
rating: "4",
},
{
name: "Smooth John",
title: "Smooth user experience",
content:
"Very nice Phone with really nice features! I didn't even know I needed a phone but it is so good ",
rating: "5",
},
],
},
{
Brand: "Jio",
RAM: "4 MB",
title: "Jio Phone 3 (Black, 4 MB RAM, 4GB Storage)",
category: "Mobiles",
price: 1999,
imgs: [
"https://gitcdn.link/cdn/seebham/ecommerce-dummy-data/main/images/jioPhone1.jpg",
"https://gitcdn.link/cdn/seebham/ecommerce-dummy-data/main/images/jioPhone2.jpg",
],
specs: [
"2MP rear and 0.3MP front camera",
"Internal Storage 4GB",
"1500mAh battery",
"Access to Jio apps 1 cr+ songs with JioMusic, 6000+ movies with JioCinema",
],
inStock: 50,
eta: 2,
id: "m5",
rating: 3.5,
reviews: [
{
name: "BabaKun",
title: "Good for My Dad",
content:
"Like really I was looking for a phone in which I can be always connected with my family but they didn't want a smartphone. So really good for filling the niche",
rating: 4,
},
{
name: "Ambani",
title: "Buy This",
content: "Very good Must Buy!",
rating: 5,
},
{
name: "Average Consumer",
title: "Ok",
content: "ok for like daily use but not much",
rating: 3,
},
],
},
{
Brand: "Realme",
RAM: "6 GB",
title: "realme narzo 30 (Racing Blue, 6GB RAM, 128GB Storage)",
category: "Mobiles",
price: 14999,
imgs: [
"https://gitcdn.link/cdn/seebham/ecommerce-dummy-data/main/images/realmeNazro1.jpg",
"https://gitcdn.link/cdn/seebham/ecommerce-dummy-data/main/images/realmeNazro2.jpg",
],
specs: [
"6 GB RAM | 128 GB ROM | Expandable Upto 256 GB",
"16.51 cm (6.5 inch) Full HD+ Display",
"48MP + 2MP + 2MP | 16MP Front Camera",
"5000 mAh Battery",
"MediaTek Helio G95 Processor",
],
inStock: 20,
eta: 30,
id: "m6",
rating: 4,
reviews: [
{
name: "Navin Kumar",
title: "Amazing Product",
content:
"Like really I was looking for a phone in which I can be always connected with my family but they didn't want a smartphone. So really good for filling the nicheAll the things are nice. Only macro camera is not powerful. Good product go for it. Gorgeous. And the charger is also very heavy.",
rating: 5,
},
{
name: "Manish",
title: "THE PROCESSING POWER IS PHENOMENAL HELIO G95 IS A BEAST",
content:
"Overall a good phone camera performance is decent enough in this price point the front camera though does a great job because of sony imx471 sensor ultrawide on the back would be great the macro and b/w sensor is not that useful battery life is good for an average user iam getting a screen on time of about 45-50 minutes using 10% battery so it can give you about 8-9 hours of screen time daily the charging is powerful and charges quickly In short its a gaming phone The antutu score os this device is around 350k which is greater than redmi note 10 pro max score of 300k",
rating: 4,
},
],
},
{
Brand: "Oppo",
RAM: "4 GB",
title: "OPPO A54 (Starry Blue, 4GB RAM, 128GB Storage)",
category: "Mobiles",
price: 15490,
imgs: [
"https://gitcdn.link/cdn/seebham/ecommerce-dummy-data/main/images/oppophone1.jpg",
"https://gitcdn.link/cdn/seebham/ecommerce-dummy-data/main/images/oppophone2.jpg",
],
specs: [
"6.51' Inch (16.5cm) HD+ Puch-hole Display with 1600x720 pixels. Larger screen to body ratio of 89.2%.|Side Fingerprint Sensor.",
"MediaTek Helio P35 GPU IMG GE8320 @ 680 MHz| Powerful 2.3 GHz Octa-core processor, support LPDDR4X memory",
"13MP Quad Camera ( 13MP Main + 2MP Macro + 2MP Bokeh Lens) | 16MP Front Camera.",
"5000 mAh lithium polymer battery",
"Memory, Storage & SIM: 4GB RAM | 128GB internal memory expandable up to 256GB | Dual SIM (nano+nano) dual-standby (4G+4G).| Color OS 7.2 based on Android 10.0 operating system.",
],
inStock: 2,
eta: 15,
id: "m7",
rating: 4.2,
reviews: [
{
name: "Alwin",
title: "Good Phone",
content: "Good phone working fine good battery thanks",
rating: 5,
},
{
name: "Ankita",
title: "Extremely slow.",
content:
"Okay so this product is not expensive, affordable and very beautiful, this is only good thing about it. Phone freezes a lot and when someone calls, it keeps vibrating without showing any number on the screen. I bought this phone in may 2021. And this is July 2021. I hate this phone already",
rating: 2,
},
],
},
{
Brand: "Vivo",
RAM: "8 GB",
title: "Vivo S1 Pro (Jazzy Blue, 8GB RAM, 128GB Storage)",
category: "Mobiles",
price: 29999,
imgs: [
"https://gitcdn.link/cdn/seebham/ecommerce-dummy-data/main/images/vivo1.jpg",
],
specs: [
"48+8+2+2MP rear camera | 32MP front camera Front camera",
"Memory, Storage & SIM: 8GB RAM, 128GB internal memory | Dual SIM (nano+nano) dual-standby (4G+4G)",
"Android v9 based on OS 9.1 operating system with Qualcomm Snapdragon 665AIE octa core processor",
"1 year manufacturer warranty for device and 6 months manufacturer warranty for in-box accessories including batteries from the date of purchase",
"In display fingerprint",
],
inStock: 0,
eta: 50,
id: "m8",
rating: 5,
reviews: [
{
name: "Blaze",
title: "Fast and great deal",
content: "Thanks, please manufacture more",
rating: 5,
},
],
},
{
Brand: "Mi",
RAM: "8 GB",
title: "Mi 11X 5G Cosmic Black 8GB RAM 128GB ROM",
category: "Mobiles",
price: 31999,
imgs: [
"https://gitcdn.link/cdn/seebham/ecommerce-dummy-data/main/images/miphone1.jpg",
],
specs: [
"Processor: Qualcomm Snapdragon 870 5G with Kryo 585 Octa-core; 7nm process; Up to 3.2GHz clock speed; Liquidcool technology",
"Camera: 48 MP Triple Rear camera with 8MP Ultra-wide and 5MP Super macro | 20 MP Front camera",
"Display: 120Hz high refresh rate FHD+ (1080x2400) AMOLED Dot display; 16.9 centimeters (6.67 inch); 2.76mm ultra tiny punch hole; HDR 10+ support; 360Hz touch sampling, MEMC technology",
"Battery: 4520 mAH large battery with 33W fast charger in-box and Type-C connectivity",
"Hands-Free access to Alexa: Alexa on your phone lets you make phone calls, open apps, control smart home devices, access the library of Alexa skills, and more using just your voice while on-the-go. Download the Alexa app and complete hands-free setup to get started. Just ask - and Alexa will respond instantly",
],
inStock: 8,
eta: 50,
id: "m9",
rating: 4,
reviews: [
{
name: "Nitea Ghosh",
title: "Waste of money",
content:
"Very bad experience, i am going to return it, i am facing touch issue very much",
rating: 1,
},
],
},
{
Brand: "Apple",
RAM: "6 GB",
title: "Apple iPhone XR (64GB) - White",
category: "Mobiles",
price: 41999,
imgs: [
"https://gitcdn.link/cdn/seebham/ecommerce-dummy-data/main/images/iphonXR1.jpg",
"https://gitcdn.link/cdn/seebham/ecommerce-dummy-data/main/images/iphonXR2.jpg",
],
specs: [
"6.1-inch (15.5 cm diagonal) Liquid Retina HD LCD display",
"Water and dust resistant (1 meter for up to 30 minutes, IP67)",
"Single 12MP Wide camera with Portrait mode, Portrait Lighting, Depth Control, Smart HDR, and 4K video up to 60fps",
"7MP TrueDepth front camera system with Portrait mode, Portrait Lighting, Depth Control, and 1080p video",
"Face ID for secure authentication",
"A12 Bionic with second-generation Neural Engine",
],
inStock: 8,
eta: 20,
id: "m10",
rating: 4.5,
reviews: [
{
name: "Darshan Sanghvi",
title: "Fabulous!",
content:
"Thanks, the device was received well packed and before time! The device is fabulous, it's like love at first sight! It doesn't feel like a 2018 device, the speed, the sensors, the touch is pretty amazing! A12 Bionic works well! 3GB RAM is sufficient to run the phone, COD, BGMI and NFS can be played without lag. Face ID is fast and accurate to unlock the device in dark! In low to moderate usage, battery supports 30+ hours and in heavy usage, battery supports 20+ hours. This one doesn't have Adapter and Earphones, but you can buy them separately! Bought for 43K (128GB) during Prime Day Sale! Overall a value for money device! A good device to start if you’re moving to Apple from Android or upgrading from previous generation iPhones. Thank You Apple!",
rating: 5,
},
{
name: "Sushma",
title: "Economical Phone",
content:
"The phone is not lacking in any sphere. The halmark quality of iPhone is telltale. The size is very handy and convenient. Charging cord is working only on one side like USB cord but then, the charging is very fast. Battery is very long lasting, better than 6000 mah batteries of Android. Picture quality better than so called 4 camera android. Go for it without a second thought. Charger not provided in the box, is freely available outside. Must buy a good bluetooth headset also to enjoy the phone.",
rating: 5,
},
],
},
{
popular: true,
Language: "English",
Genre: "Fiction",
title: "The Monk Who Sold His Ferrari",
category: "Books",
price: 159,
imgs: [
"https://gitcdn.link/cdn/seebham/ecommerce-dummy-data/main/images/monksoldhisferrari.jpg",
],
specs:
"A renowned inspirational fiction, The Monk Who Sold His Ferrari is a revealing story that offers the readers a simple yet profound way to live life. The plot of this story revolves around Julian Mantle, a lawyer who has made his fortune and name in the profession. A sudden heart-attack creates havoc in the successful lawyer’s life. Jolted by the sudden onset of the illness, his practice comes to a standstill. He ponders over material success being worth it all, renounces all of it and leaves for India.",
inStock: 50,
eta: 5,
id: "b1",
rating: 4.0,
reviews: [
{
name: "Takumi",
title: "I sold my ae86 after this",
content:
"Very nice thriller story It inspired me to sell my car like the monk.",
rating: 5,
},
{
name: "Om",
title: "My kids liked It",
content:
"Was fine as my kids liked it thats all it matters ultimately, however i would say its a little overpriced for its quality and",
rating: 3,
},
{
name: "Shyam",
title: "Very nice read",
content: "I thourougly enjoyed the content of this",
rating: 4,
},
],
},
{
Language: "English",
Genre: "Historical",
title: "The Immortals of Meluha (Shiva Trilogy)",
category: "Books",
price: 299,
imgs: [
"https://gitcdn.link/cdn/seebham/ecommerce-dummy-data/main/images/meluha.jpg",
],
specs:
"The Immortals of Meluha is a series of short stories by the Indian author, K. S. Shukla, that tell the story of the Immortals of Meluha, who are the most powerful and powerful figures in the history of the Indian subcontinent.",
inStock: 50,
eta: 5,
id: "b2",
rating: 4.1,
reviews: [
{
name: "Himanshu",
title: "Amazing",
content: `We'll I'm not a great critic but here's my honest review about what I felt after reading this book.
At first I was hesitant to buy the book thinking that it would contain the same unbelievable fictional aspects where the gods can fly and cure the incurable diseases by their touch. I was blown away by the simplicity of the protagonist. He didn't have any powers, instead he had the skill and intelligence which led to his rise to become a Mahadev.
The story is well narrated with twists and turns of comedy, drama, rage and emotions which leaves you hooked till you read the last chapter and then, the other two books. The characters are well developed making you feel their pain and happiness.
10/10`,
rating: 4,
},
{
name: "Divyani",
title: "Too much like a dramatic Script of a TV show",
content: `I got this thanks to its popularity but unfortunately its a little too dramatic for me, it reads like a script for a Zee TV show which I don't watch but know about thanks to some family members fascinations.......
There is no character development, poor scripting, no historical research has gone into this I can presume since their are facts that don't match with what's written along with others........
Also Lord Shiva is not an angry God but when he will get angry its the end or so say the Purans but Lord Shiva is perpetually angry in this book, vendetta is raging in his veins, revenge is his middle name and for what......`,
rating: 1,
},
{
name: "Vaishnavi",
title: "Could have been better",
content:
"Mediocre writing at best. Hindu mythology is quite rich and author benifits from choosing it. Besides one trick of imputing a benign, logical rationale (which i can hope were the case in reality) to hindu customs, the author doesnt have much to write about. Its feels like just another hero's journey.",
rating: 2,
},
],
},
{
Language: "English",
Genre: "Romance",
title: "Wuthering Heights (Emily Brontë)",
category: "Books",
price: 69,
imgs: [
"https://gitcdn.link/cdn/seebham/ecommerce-dummy-data/main/images/Wuthering.jpg",
],
specs:
"Wuthering Heights is a story of love, hate, social status, and revenge set in the moorlands of Northern England at the end of the 18th century. The novel follows the repercussions of the ill-fated love between the impetuous, strong-willed protagonists Catherine “Cathy” Earnshaw and Heathcliff. The story is narrated in diary-like entries by Lockwood, a tenant of one of Heathcliff’s estates. Lockwood annotates and gathers the story told to him by Nelly Dean, the housekeeper, and also records his present-day interactions to create the frame of the story. The events taking place in Wuthering Heights span a 40-year period.",
inStock: 50,
eta: 1,
id: "b3",
rating: 4.0,
reviews: [
{
name: "Elle",
title: "I Tried it But,",
content: `I never expected this book to be as flagrantly, unforgivably bad as it was.
To start, Bronte's technical choice of narrating the story of the primary characters by having the housekeeper explain everything to a tenant 20 years after it happened completely kills suspense and intimacy.`,
rating: 1,
},
{
name: "Sophie",
title: "Interestingly enough",
content:
"Ah the classics. Everybody can read their own agenda in them. So, first a short plot guide for dinner conversations when one needs to fake acculturation, and then on to the critics’ view.",
rating: 2,
},
{
name: "American Dragon",
title: "Childhood Memory",
content: `I first read this in AP English Literature - senior year of high school. This book is dense and thick and confusing, and with a class full of haters, it was hard to wrap my head around it. I subsequently read it three or four more times for classes in college and every time I read it, I loved it more.`,
rating: 5,
},
],
},
{
Language: "Hindi",
Genre: "Mystery",
title: "Byomkesh Bakshi ki Rahasyamayi Kahaniyan",
category: "Books",
price: 139,
imgs: [
"https://gitcdn.link/cdn/seebham/ecommerce-dummy-data/main/images/bumkeshbakshi.jpg",
],
specs:
"सारदेंदु बंद्योपाध्याय की विशिष्टता उनके जासूसी लेखन के अतिरिक्त उनकी अद्वितीय लेखन-शैली के साथ-साथ उनके चरित्रों का सूक्ष्म जीवंत चित्रण है। बीसवीं सदी के प्रारंभ के बंगाल में लेखक और पाठक समान रूप से अपराध और जासूसी साहित्य को नीची निगाहों से देखते थे। सारदेंदु बंद्योपाध्याय ने पहली बार उस लेखन को सम्मानीय स्थान दिलाया। इसका एक बड़ा कारण यह था कि उनके पूर्व के लेखक पंचकोरी दे और दिनेंद्र कुमार अंग्रेजी के जासूसी लेखक आर्थर कोनान, डोएल, एडगर एलन पो, जी.के. चेस्टरसन तथा अगाथा क्रिस्टी से प्रभावित होकर लिखते थे, जबकि सारदेंदु के चरित्र और स्थान अन्य जासूसी उपन्यासों के विपरीत, भारतीय मूल और स्थल के परिवेश में जीते हैं। उनके लेखन का विनोदी स्वभाव पाठक को अनायास कथा के दौरान गुदगुदाता रहता है। ब्योमकेश का साहित्य न केवल अभूतपूर्व जासूसी साहित्य है बल्कि सभी समय और काल में, समाज के सभी वर्गों के युवाओं और वृद्धों में समान रूप से सदैव लोकप्रिय बना रहा है। पाठक इन रहस्य भरी कहानियों को उनके जीवंत लेखन के लिए, अंत जानने के बावजूद, बार-बार पढ़ने के लिए लालायित रहता है। किसी भी लोकप्रिय साहित्य में यह एक अद्वितीय उपलब्धि मानी जाती है और यही उपलब्धि सारदेंदु के ब्योमकेश बक्शी साहित्य को सत्यजीत राय के प्रसिद्ध उपन्यास ‘फेलूदा के कारनामे’ के समान हमारे समय के ‘क्लासिक’ का स्थान दिलाती है।",
inStock: 50,
eta: 1,
id: "b4",
rating: 4.6,
reviews: [
{
name: "Tony",
title: "One of the best detective stories book ever.",
content: `Fantastic. Simply superb. I thought after watching it's series on TV I might not like reading it. But, it was an amazing experience. Due to the above-mentioned fear, I couldn't buy it in the first time but only after a couple of days after thinking a couple of times. But, once I bought it, I couldn't stop. Finished it in less than a week's time. Totally enjoyed it. Highly recommended. Don't miss for anything. Wish I could write something like this!`,
rating: 4,
},
{
name: "Ram Singh",
title: " One of the Best Story Book",
content:
"It is an honour to review the Story book of Byomkesh Sir. He was fantastic and Wise. His assumptions were so accurate. The main theme of the book is successful. Nice book.",
rating: 3,
},
{
name: "Shizuka",
title: "Don't trust seller.",
content: `I ordered it at low price from Amazon but when the book reached, what i seen was one page miss print. So i reordered the book but second time they confirmed the order at high price. But as i was buying it to gift someone on her birthday, i ordered it. When i opened to check the miss prints, all the pages were well printed. But when the person to whom i gifted it, opened the book what she seen was missing pages. Example - after 112 page number you jump to direct page no. 129. I mean where are the pages? It all destroyed the emotions of the gift. I will not buy any product from seller 'Cloudtale' at all cost.`,
rating: 4,
},
],
},
{
Language: "English",
Genre: "Historical",
title: "Pride and Prejudice",
category: "Books",
price: 79,
imgs: [
"https://gitcdn.link/cdn/seebham/ecommerce-dummy-data/main/images/prideandprejudice.jpg",
],
specs:
"The story follows the main character Elizabeth Bennet as she deals with issues of manners, upbringing, morality, education, and marriage in the society of the landed gentry of early 19th-century England. Elizabeth is the second of five daughters of country gentleman living near the fictional town of meryton in Hertfordshire, near London. The story begins as the people of rural meryton scurry to marry their daughters off to Charles Bingley, a dashing and eligible Bachelor who has taken an estate near the Bennet. At the villagers welcoming ball, Elizabeth meets up with a formidable adversary: bingley’s closest friend, the Cold, prideful, extremely wealthy Fitzwilliam Darcy, who piques her to new heights of antagonism. When Darcy arrogantly urges Bingley to give up his burgeoning courtship of Elizabeth sister, misunderstanding threatens to bury all he loves in turmoil and regret",
inStock: 50,
eta: 1,
id: "b5",
rating: 4.3,
reviews: [
{
name: "raze",
title: "Boom",
content:
"Imagine having a pride when you get blown up and shattered like a bot",
rating: 4,
},
{
name: "Max Walters",
title: "Simply Amazing",
content:
"My partner really loved it , she said that its really potrays the issues which you might need to face but might not be able to solve cause of pride. I say it was like a really good investment for my partner as she liked it.",
rating: 4,
},
{
name: "Robert Williams",
title: "Imagine Dealing with",
content:
"Issues potrayed in the book, can really be disturbing right ? It can be really hard on you sometimes, as it can be really real sometimes",
rating: 4,
},
],
},
{
Language: "English",
Genre: "Humour",
title:
"The Ultimate Hitchhiker's Guide to the Galaxy: The Complete Trilogy in Five Parts",
category: "Books",
price: 507,
imgs: [
"https://gitcdn.link/cdn/seebham/ecommerce-dummy-data/main/images/guidetogalaxy.jpg",
],
specs:
"A phenomenon across all formats, this 42nd anniversary paperback omnibus contains the complete Hitchhiker's Guide trilogy in five parts, charting the whole of Arthur Dent's odyssey through space and time. Share and enjoy. Collected together in this omnibus are the five titles that comprise Douglas Adams wildly popular and wholly remarkable comedy science fiction trilogy, introductions to each book, expanded material from the Douglas Adams archives plus a bonus short story, Young Zaphod Plays It Safe, and a special undeleted scene . . .The Hitchhiker's Guide to the Galaxy",
inStock: 27,
eta: 1,
id: "b6",
rating: 4.8,
reviews: [
{
name: "Ruchika Amin",
title: "Must Buy",
content:
"Great Book. Excellent Condition. If you want to buy this book, buy this edition m",
rating: 5,
},
{
name: "Aditi s.",
title: "3 three blank pages at the end",
content:
"I just ordered this book, and i have 3 blank pages at the end of the book ...is it supposed to be like this?",
rating: 4,
},
],
},
{
Language: "English",
Genre: "Humour",
title: "Green Humour for a Greying Planet",
category: "Books",
price: 258,
imgs: [
"https://gitcdn.link/cdn/seebham/ecommerce-dummy-data/main/images/greyhumour.jpg",
],
specs:
"Green Humour For A Greying Planet is a curation of gag cartoons and comic strips based exclusively on wildlife and nature, perhaps the first of its kind. At a time when global warming, wildlife crimes and man-animal conflicts are at their worst, 'Green Humour' is sure to provide its readers some much needed comic relief. A comprehensive and satirical take on various aspects of the natural world and the threats to its conservation, this book will appeal to both the scientifically inclined readers as well as the general readers.",
inStock: 17,
eta: 1,
id: "b7",
rating: 4.9,
reviews: [
{
name: "Sherebanu Frosh",
title: "Sherebanu Frosh",
content:
"Absolutely fun and fabulous. Particularly good for gifting to someone who doesn't actively care about the environment. The humour, the digs can really wake us up to the perspective of animals without being trite or dull. My kids couldn't stop reading, kept coming to me to show me a comic. Enjoyed it thoroughly myself when I could finally get it from them!",
rating: 5,
},
{
name: "Ankit Anurag",
title: "Humour & Alarming",
content:
"Book is full of interesting facts and observations which will make you see things in a new light.",
rating: 4.8,
},
],
},
{
popular: true,
Language: "Hindi",
Genre: "Historical",
title: "Sunderkand (Hindi) - Goswami Tulsidas",
category: "Books",
price: 99,
imgs: [
"https://gitcdn.link/cdn/seebham/ecommerce-dummy-data/main/images/sunderkand.jpg",
],
specs:
"Sunderkand, believed to be the most beautiful (Sunder) part of the Ramayana, describes Lord Hanuman journey to Lanka. This book elucidates his pristine lifestyle, following which brings karmic and spiritual knowledge and bhakti (devotion) in one’s life. It is even believed that when one reads the sunderkand, Lord Hanuman himself graces the reader with his presence. Carrying the entire text and explanation of the sunderkand, Shri Hanuman Chalisa and sankatmochan hanumanashtak, this edition also contains a art is of Lord Ganesha, Lord Ram and Lord Hanuman.",
inStock: 17,
eta: 1,
id: "b8",
rating: 4.7,
reviews: [
{
name: "Vikram",
title: "Sherebanu Frosh",
content:
"Very nice, everything with meaning in hindi. Even all Chalisa has it's meaning explained. Superb",
rating: 5,
},
{
name: "Vikas Verma",
title: "4 star for bad packing",
content:
"Book is good and quality of is also good but packing is bad. They put direct book in plastic cover.when I opened book it was fold.",
rating: 4,
},
],
},
{
Language: "Hindi",
Genre: "Poetry",
title: "Phir Meri Yaad - Hindi - Kumar Vishwas",
category: "Books",
price: 159,
imgs: [
"https://gitcdn.link/cdn/seebham/ecommerce-dummy-data/main/images/phirmeriyaad.jpg",
],
specs:
"Reading books is a kind of enjoyment. Reading books is a good habit. We bring you a different kinds of books. You can carry this book where ever you want. It is easy to carry. It can be an ideal gift to yourself and to your loved ones. Care instruction keep away from fire.",
inStock: 7,
eta: 1,
id: "b9",
rating: 4.5,
reviews: [
{
name: "Shagun Srivastava",
title: "Hindi ki adbhut kavita...",
content: "A beautiful book by one of my favourite person....",
rating: 5,
},
{
name: "Satyajit Dasgupta",
title: "MUCH LIKE THE AUTHOR HIMSELF",
content:
"Introspective in parts which are therefore worth a read. Mostly playing to a faithful gallery, which for me is worth a miss.",
rating: 3,
},
],
},
{
Language: "English",
Genre: "Historical",
title: "Kabir: The life and work of the early modern poet",
category: "Books",
price: 431,
imgs: [
"https://gitcdn.link/cdn/seebham/ecommerce-dummy-data/main/images/kabirkabir.jpg",
],
specs:
"As the right wing tries to claim Kabir for itself, while other conservatives disown him and yet others portray him as a secular idol beyond religion, the poet has never been so misunderstood. Coming from the Nirgun bhakti tradition, the words of this fifteenth-century poet have the power to reach beyond time and speak to us today. Was he a Hindu or Muslim or was he beyond religion? Did he try to cultivate a new faith or did he eschew organised religion altogether? Was his modernity an exception or a reflection of the times he lived in? What does Kabir’s life and poetry tell us about this nation’s past and present? In this rare appraisal of Kabir’s writings and his life, Purushottam Agarwal approaches this timeless poet-revolutionary with little preconceptions, presenting him the way the poet wanted to be seen, rather than what his followers and fans want to see in him.",
inStock: 9,
eta: 1,
id: "b10",
rating: 4.5,
reviews: [
{
name: "Subhhan s.",
title: "Superb",
content:
"Very good book. Chronicles the life and times of kabir very convincingly. Author's knowledge about his subject is very good. A very good introduction to kabir and mediveal india.",
rating: 5,
},
{
name: "Shivam",
title: "Atleast give a bookmark with the book.",
content:
"You should have the courtesy to atleast provide a bookmark with the book.",
rating: 2,
},
],
},
{
popular: true,
For: "Men",
title: "AEROPOSTALE Men's Casual Shirt",
category: "Clothings",
price: 549,
imgs: [
"https://gitcdn.link/cdn/seebham/ecommerce-dummy-data/main/images/shirt.jpg",
],
specs: [
"Size: Medium",
"Color name: Light Ceramic",
"Material: Cotton",
"Pattern: Solid",
"Long Sleeve",
],
inStock: 50,
eta: 10,
id: "c1",
rating: 4.7,
reviews: [
{
name: "Rahul Sharma",
title: "Good cotton Shirt",
content: "It gets the job done, really gets me looking sexy and cool!",
rating: 4,
},
{
name: "Ayush Goyal",
title: "Fabric not that good",
content:
"It shrank and is losing color after every wash. I don't think its as premium as advertised or I got a fake product. Really Disappointed...",
rating: 2,
},
{
name: "Gon",
title: "Ok",
content: "Gets the work done Its ok for me nothing really special",
rating: 2,
},
],
},
{
For: "Women",
title: "ANNI DESIGNER Khadi Silk with Blouse Piece Saree",
category: "Clothings",
price: 299,
imgs: [
"https://gitcdn.link/cdn/seebham/ecommerce-dummy-data/main/images/saaree.jpg",
],
specs: [
"Saree Color: Beige and Red",
"Saree Fabric: Khadi Silk",
"Wash Care: Dry Clean for the first time",
],
inStock: 2,
eta: 2,
id: "c2",
rating: 4.2,
reviews: [
{
name: "Motu",
title: "I got the wrong size Feel cheated",
content:
"I ordered it 2 weeks ago and I not only got a wrong product as but they also denied my refund request quoting its non refundable even though its their fault!!!",
rating: 1,
},
{
name: "Forsen",
title: "ZULUL",
content:
"I Wore this as my wife nina forced me too, I felt really good and nice but she still left me now I wear it to remember her",
rating: 5,
},
{
name: "Viper",
title: "Toxic Screen Down",
content:
"My coworker said you are looking fire bruh which is really weird but really tells how much it suits me",
rating: 4,