index.ts
46.3 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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
import type { SalesDetails } from './types'
import { getPublicUrl } from '@/server/utils/getPublicUrl'
const avatar1 = getPublicUrl('/images/avatars/avatar-1.png')
const avatar2 = getPublicUrl('/images/avatars/avatar-2.png')
const avatar3 = getPublicUrl('/images/avatars/avatar-3.png')
const avatar4 = getPublicUrl('/images/avatars/avatar-4.png')
const avatar5 = getPublicUrl('/images/avatars/avatar-5.png')
const avatar6 = getPublicUrl('/images/avatars/avatar-6.png')
const avatar7 = getPublicUrl('/images/avatars/avatar-7.png')
const avatar8 = getPublicUrl('/images/avatars/avatar-8.png')
const product3 = getPublicUrl('/images/eCommerce/3.png')
const product4 = getPublicUrl('/images/eCommerce/4.png')
const product5 = getPublicUrl('/images/eCommerce/5.png')
const product6 = getPublicUrl('/images/eCommerce/6.png')
const product7 = getPublicUrl('/images/eCommerce/7.png')
const product8 = getPublicUrl('/images/eCommerce/8.png')
const product9 = getPublicUrl('/images/eCommerce/9.png')
const product10 = getPublicUrl('/images/eCommerce/10.png')
const product11 = getPublicUrl('/images/eCommerce/11.png')
const product13 = getPublicUrl('/images/eCommerce/13.png')
const product14 = getPublicUrl('/images/eCommerce/14.png')
const product15 = getPublicUrl('/images/eCommerce/15.png')
const product16 = getPublicUrl('/images/eCommerce/16.png')
const product17 = getPublicUrl('/images/eCommerce/17.png')
const product18 = getPublicUrl('/images/eCommerce/18.png')
const product19 = getPublicUrl('/images/eCommerce/19.png')
const product20 = getPublicUrl('/images/eCommerce/20.png')
const product23 = getPublicUrl('/images/eCommerce/23.png')
const product24 = getPublicUrl('/images/eCommerce/24.png')
const product25 = getPublicUrl('/images/eCommerce/25.png')
const product26 = getPublicUrl('/images/eCommerce/26.png')
interface DB {
salesDetails: SalesDetails[]
}
export const db: DB = {
salesDetails: [
{
product: {
id: 19,
name: 'OnePlus 7 Pro ',
slug: 'one-plus-7-pro-19',
brand: 'Philips',
category: 'Smart Phone',
price: 14.99,
image: product9,
hasFreeShipping: false,
rating: 4,
description:
'The OnePlus 7 Pro features a brand new design, with a glass back and front and curved sides. The phone feels\n very premium but\u2019s it\u2019s also very heavy. The Nebula Blue variant looks slick but it\u2019s quite slippery, which\n makes single-handed use a real challenge. It has a massive 6.67-inch \u2018Fluid AMOLED\u2019 display with a QHD+\n resolution, 90Hz refresh rate and support for HDR 10+ content. The display produces vivid colours, deep blacks\n and has good viewing angles.',
},
date: '30 Apr 2020',
buyer: {
name: 'Ana Smith',
avatar: avatar3,
},
payment: {
total: 984,
receivedPaymentStatus: 'Fully Paid',
paidAmount: 984,
status: 'Completed',
},
},
{
product: {
id: 21,
name: 'Google - Google Home',
slug: 'google-google-home-white-slate-fabric-21',
brand: 'Google',
category: 'Google Home',
price: 129.29,
image: product7,
hasFreeShipping: true,
rating: 4,
description:
'Simplify your everyday life with the Google Home, a voice-activated speaker powered by the Google Assistant. Use\n voice commands to enjoy music, get answers from Google and manage everyday tasks. Google Home is compatible with\n Android and iOS operating systems, and can control compatible smart devices such as Chromecast or Nest.',
},
date: '11 Jul 2020',
buyer: {
name: 'Lindsay Green',
avatar: avatar8,
},
payment: {
total: 1101,
receivedPaymentStatus: 'Fully Paid',
paidAmount: 1101,
status: 'Completed',
},
},
{
product: {
id: 17,
name: 'Nike Air Max',
slug: '72-9301-speaker-wire-harness-adapter-for-most-plymouth-dodge-and-mitsubishi-vehicles-multi-17',
description:
'With a bold application of colorblocking inspired by modern art styles, the Nike Air Max 270 React sneaker is constructed with layers of lightweight material to achieve its artful look and comfortable feel.',
brand: 'Nike',
category: 'Shoes',
price: 81.99,
image: product11,
hasFreeShipping: true,
rating: 5,
},
date: '06 Jan 2021',
buyer: {
name: 'Ethan Lee',
avatar: avatar1,
},
payment: {
total: 726,
receivedPaymentStatus: 'Partially Paid',
paidAmount: 126,
status: 'Confirmed',
},
},
{
product: {
id: 2,
name: 'Bose Frames Tenor',
slug: 'bose-frames-tenor-rectangular-polarized-bluetooth-audio-sunglasses-2',
description:
'Redesigned for luxury \u2014 Thoughtfully refined and strikingly elegant, the latest Bose sunglasses blend enhanced features and designs for an elevated way to listen',
brand: 'Bose',
category: 'Glass',
price: 249,
image: product26,
hasFreeShipping: false,
rating: 4,
},
date: '21 Aug 2020',
buyer: {
name: 'Scott Miller',
avatar: avatar7,
},
payment: {
total: 646,
receivedPaymentStatus: 'Partially Paid',
paidAmount: 345,
status: 'Confirmed',
},
},
{
product: {
id: 25,
name: 'Apple iMac 27-inch',
slug: 'apple-i-mac-27-inch-25',
brand: 'Apple',
category: 'iMac',
price: 999.99,
image: product3,
hasFreeShipping: true,
rating: 4,
description:
'The all-in-one for all. If you can dream it, you can do it on iMac. It\u2019s beautifully & incredibly intuitive and\n packed with tools that let you take any idea to the next level. And the new 27-inch model elevates the\n experience in way, with faster processors and graphics, expanded memory and storage, enhanced audio and video\n capabilities, and an even more stunning Retina 5K display. It\u2019s the desktop that does it all \u2014 better and faster\n than ever.',
},
date: '21 Aug 2020',
buyer: {
name: 'Brandon Brooks',
avatar: avatar5,
},
payment: {
total: 1005,
receivedPaymentStatus: 'Partially Paid',
paidAmount: 21,
status: 'Confirmed',
},
},
{
product: {
id: 12,
name: 'Adidas Mens Tech Response Shoes',
slug: 'adidas-mens-tech-response-shoes-12',
description:
'Comfort + performance. Designed with materials that are durable, lightweight and extremely comfortable. Core performance delivers the perfect mix of fit, style and all-around performance.',
brand: 'Adidas',
category: 'Shoes',
price: 54.59,
image: product16,
hasFreeShipping: false,
rating: 5,
},
date: '10 Mar 2021',
buyer: {
name: 'Henry Mann',
avatar: avatar6,
},
payment: {
total: 1114,
receivedPaymentStatus: 'Partially Paid',
paidAmount: 814,
status: 'Confirmed',
},
},
{
product: {
id: 25,
name: 'Apple iMac 27-inch',
slug: 'apple-i-mac-27-inch-25',
brand: 'Apple',
category: 'iMac',
price: 999.99,
image: product3,
hasFreeShipping: true,
rating: 4,
description:
'The all-in-one for all. If you can dream it, you can do it on iMac. It\u2019s beautifully & incredibly intuitive and\n packed with tools that let you take any idea to the next level. And the new 27-inch model elevates the\n experience in way, with faster processors and graphics, expanded memory and storage, enhanced audio and video\n capabilities, and an even more stunning Retina 5K display. It\u2019s the desktop that does it all \u2014 better and faster\n than ever.',
},
date: '21 Aug 2020',
buyer: {
name: 'Brandon Brooks',
avatar: avatar5,
},
payment: {
total: 1005,
receivedPaymentStatus: 'Partially Paid',
paidAmount: 21,
status: 'Confirmed',
},
},
{
product: {
id: 24,
name: 'OneOdio A71 Wired Headphones',
slug: 'one-odio-a71-wired-headphones-24',
brand: 'OneOdio',
category: 'Headphone',
price: 49.99,
image: product4,
hasFreeShipping: true,
rating: 3,
description:
'Omnidirectional detachable boom mic upgrades the headphones into a professional headset for gaming, business,\n podcasting and taking calls on the go. Better pick up your voice. Control most electric devices through voice\n activation, or schedule a ride with Uber and order a pizza. OneOdio A71 Wired Headphones voice-controlled device\n turns any home into a smart device on a smartphone or tablet.',
},
date: '12 Nov 2020',
buyer: {
name: 'Grant Wright',
avatar: avatar2,
},
payment: {
total: 207,
receivedPaymentStatus: 'Fully Paid',
paidAmount: 207,
status: 'Completed',
},
},
{
product: {
id: 20,
name: 'Sony 4K Ultra HD LED TV ',
slug: 'sony-4-k-ultra-hd-led-tv-20',
brand: 'Apple',
category: 'Smart TV',
price: 7999.99,
image: product8,
hasFreeShipping: false,
rating: 5,
description:
'Sony 4K Ultra HD LED TV has 4K HDR Support. The TV provides clear visuals and provides distinct sound quality\n and an immersive experience. This TV has Yes HDMI ports & Yes USB ports. Connectivity options included are HDMI.\n You can connect various gadgets such as your laptop using the HDMI port. The TV comes with a 1 Year warranty.',
},
date: '19 Apr 2021',
buyer: {
name: 'Amanda Sanchez',
avatar: avatar2,
},
payment: {
total: 1119,
receivedPaymentStatus: 'Fully Paid',
paidAmount: 1119,
status: 'Completed',
},
},
{
product: {
id: 23,
name: 'Apple - MacBook Air\u00AE',
slug: 'apple-mac-book-air-latest-model-13-3-display-silver-23',
brand: 'Apple',
category: 'Mac',
price: 999.99,
image: product5,
hasFreeShipping: false,
rating: 4,
description:
'MacBook Air is a thin, lightweight laptop from Apple. MacBook Air features up to 8GB of memory, a\n fifth-generation Intel Core processor, Thunderbolt 2, great built-in apps, and all-day battery life.1 Its thin,\n light, and durable enough to take everywhere you go-and powerful enough to do everything once you get there,\n better.',
},
date: '25 Dec 2020',
buyer: {
name: 'Kathy Estrada',
avatar: avatar2,
},
payment: {
total: 1221,
receivedPaymentStatus: 'Partially Paid',
paidAmount: 1025,
status: 'Confirmed',
},
},
{
product: {
id: 25,
name: 'Apple iMac 27-inch',
slug: 'apple-i-mac-27-inch-25',
brand: 'Apple',
category: 'iMac',
price: 999.99,
image: product3,
hasFreeShipping: true,
rating: 4,
description:
'The all-in-one for all. If you can dream it, you can do it on iMac. It\u2019s beautifully & incredibly intuitive and\n packed with tools that let you take any idea to the next level. And the new 27-inch model elevates the\n experience in way, with faster processors and graphics, expanded memory and storage, enhanced audio and video\n capabilities, and an even more stunning Retina 5K display. It\u2019s the desktop that does it all \u2014 better and faster\n than ever.',
},
date: '19 May 2020',
buyer: {
name: 'William Lopez',
avatar: avatar2,
},
payment: {
total: 973,
receivedPaymentStatus: 'Partially Paid',
paidAmount: 374,
status: 'Confirmed',
},
},
{
product: {
id: 8,
name: 'PlayStation 4 Console',
slug: 'play-station-4-console-8',
description:
'All the greatest, games, TV, music and more. Connect with your friends to broadcast and celebrate your epic moments at the press of the Share button to Twitch, YouTube, Facebook and Twitter.',
brand: 'Sony',
category: 'Gaming',
price: 339.95,
image: product20,
hasFreeShipping: false,
rating: 4,
},
date: '27 Mar 2021',
buyer: {
name: 'Colleen Taylor',
avatar: avatar2,
},
payment: {
total: 1235,
receivedPaymentStatus: 'Fully Paid',
paidAmount: 1235,
status: 'Completed',
},
},
{
product: {
id: 5,
name: 'Toshiba Canvio External Hard Drive',
slug: 'toshiba-canvio-advance-2-tb-portable-external-hard-drive-5',
description:
'Up to 3TB of storage capacity to store your growing files and content',
brand: 'Toshiba',
category: 'Storage Device',
price: 69.99,
image: product23,
hasFreeShipping: true,
rating: 2,
},
date: '21 Jun 2020',
buyer: {
name: 'Melanie Olson',
avatar: avatar6,
},
payment: {
total: 780,
receivedPaymentStatus: 'Fully Paid',
paidAmount: 780,
status: 'Completed',
},
},
{
product: {
id: 19,
name: 'OnePlus 7 Pro ',
slug: 'one-plus-7-pro-19',
brand: 'Philips',
category: 'Smart Phone',
price: 14.99,
image: product9,
hasFreeShipping: false,
rating: 4,
description:
'The OnePlus 7 Pro features a brand new design, with a glass back and front and curved sides. The phone feels\n very premium but\u2019s it\u2019s also very heavy. The Nebula Blue variant looks slick but it\u2019s quite slippery, which\n makes single-handed use a real challenge. It has a massive 6.67-inch \u2018Fluid AMOLED\u2019 display with a QHD+\n resolution, 90Hz refresh rate and support for HDR 10+ content. The display produces vivid colours, deep blacks\n and has good viewing angles.',
},
date: '28 Jan 2021',
buyer: {
name: 'Cynthia Cannon',
avatar: avatar7,
},
payment: {
total: 1073,
receivedPaymentStatus: 'Partially Paid',
paidAmount: 871,
status: 'Confirmed',
},
},
{
product: {
id: 23,
name: 'Apple - MacBook Air\u00AE',
slug: 'apple-mac-book-air-latest-model-13-3-display-silver-23',
brand: 'Apple',
category: 'Mac',
price: 999.99,
image: product5,
hasFreeShipping: false,
rating: 4,
description:
'MacBook Air is a thin, lightweight laptop from Apple. MacBook Air features up to 8GB of memory, a\n fifth-generation Intel Core processor, Thunderbolt 2, great built-in apps, and all-day battery life.1 Its thin,\n light, and durable enough to take everywhere you go-and powerful enough to do everything once you get there,\n better.',
},
date: '20 Aug 2020',
buyer: {
name: 'David Archer',
avatar: avatar5,
},
payment: {
total: 224,
receivedPaymentStatus: 'Fully Paid',
paidAmount: 224,
status: 'Completed',
},
},
{
product: {
id: 9,
name: 'Giotto 32oz Leakproof BPA Free Drinking Water',
slug: 'giotto-32oz-leakproof-bpa-free-drinking-water-9',
description:
'With unique inspirational quote and time markers on it,this water bottle is great for measuring your daily intake of water,reminding you stay hydrated and drink enough water throughout the day.A must have for any fitness goals including weight loss,appetite control and overall health.',
brand: '3M',
category: 'Home',
price: 16.99,
image: product19,
hasFreeShipping: true,
rating: 4,
},
date: '29 Dec 2020',
buyer: {
name: 'Michael Cervantes',
avatar: avatar8,
},
payment: {
total: 960,
receivedPaymentStatus: 'Partially Paid',
paidAmount: 866,
status: 'Confirmed',
},
},
{
product: {
id: 13,
name: 'Laptop Bag',
slug: 'laptop-bag-13',
description:
'TSA FRIENDLY- A separate DIGI SMART compartment can hold 15.6 inch Laptop as well as 15 inch, 14 inch MacBook, 12.9 inch iPad, and tech accessories like charger for quick TSA checkpoint when traveling',
brand: 'TAS',
category: 'Bag',
price: 29.99,
image: product15,
hasFreeShipping: true,
rating: 5,
},
date: '15 Aug 2020',
buyer: {
name: 'Nathaniel Marshall',
avatar: avatar6,
},
payment: {
total: 1423,
receivedPaymentStatus: 'Unpaid',
paidAmount: 0,
status: 'Cancelled',
},
},
{
product: {
id: 5,
name: 'Toshiba Canvio External Hard Drive',
slug: 'toshiba-canvio-advance-2-tb-portable-external-hard-drive-5',
description:
'Up to 3TB of storage capacity to store your growing files and content',
brand: 'Toshiba',
category: 'Storage Device',
price: 69.99,
image: product23,
hasFreeShipping: true,
rating: 2,
},
date: '03 Jan 2021',
buyer: {
name: 'Tiffany Ross',
avatar: avatar4,
},
payment: {
total: 663,
receivedPaymentStatus: 'Partially Paid',
paidAmount: 285,
status: 'Confirmed',
},
},
{
product: {
id: 14,
name: 'Wireless Charger 5W Max',
slug: 'wireless-charger-5-w-max-14',
description:
'Charge with case: transmits charging power directly through protective cases. Rubber/plastic/TPU cases under 5 mm thickness . Do not use any magnetic and metal attachments or cards, or it will prevent charging.',
brand: '3M',
category: 'Electronics',
price: 10.83,
image: product14,
hasFreeShipping: true,
rating: 3,
},
date: '20 Dec 2020',
buyer: {
name: 'Philip Walters',
avatar: null,
},
payment: {
total: 1112,
receivedPaymentStatus: 'Partially Paid',
paidAmount: 426,
status: 'Confirmed',
},
},
{
product: {
id: 15,
name: 'Vankyo leisure 3 mini projector',
slug: '3-m-filtrete-vacuum-belt-for-select-hoover-t-series-upright-vacuums-15',
description:
'SUPERIOR VIEWING EXPERIENCE: Supporting 1920x1080 resolution, VANKYO Leisure 3 projector is powered by MStar Advanced Color Engine, which is ideal for home entertainment. 2020 upgraded LED lighting provides a superior viewing experience for you.',
brand: 'Vankyo Store',
category: 'Projector',
price: 99.99,
image: product13,
hasFreeShipping: true,
rating: 2,
},
date: '02 Jul 2020',
buyer: {
name: 'Pamela Smith',
avatar: null,
},
payment: {
total: 462,
receivedPaymentStatus: 'Partially Paid',
paidAmount: 383,
status: 'Confirmed',
},
},
{
product: {
id: 12,
name: 'Adidas Mens Tech Response Shoes',
slug: 'adidas-mens-tech-response-shoes-12',
description:
'Comfort + performance. Designed with materials that are durable, lightweight and extremely comfortable. Core performance delivers the perfect mix of fit, style and all-around performance.',
brand: 'Adidas',
category: 'Shoes',
price: 54.59,
image: product16,
hasFreeShipping: false,
rating: 5,
},
date: '24 Jul 2020',
buyer: {
name: 'Kara Gonzalez',
avatar: avatar3,
},
payment: {
total: 1325,
receivedPaymentStatus: 'Partially Paid',
paidAmount: 792,
status: 'Confirmed',
},
},
{
product: {
id: 18,
name: 'Logitech K380 Wireless Keyboard',
slug: 'acer-11-6-chromebook-intel-celeron-2-gb-memory-16-gb-e-mmc-flash-memory-moonstone-white-18',
description:
'Logitech K380 Bluetooth Wireless Keyboard gives you the comfort and convenience of desktop typing on your smartphone, and tablet. It is a wireless keyboard that connects to all Bluetooth wireless devices that support external keyboards. Take this compact, lightweight, Bluetooth keyboard anywhere in your home. Type wherever you like, on any compatible computer, phone or tablet.',
brand: 'Logitech',
category: 'Keyboard',
price: 81.99,
image: product10,
hasFreeShipping: false,
rating: 4,
},
date: '07 Jan 2021',
buyer: {
name: 'Katherine Tate',
avatar: avatar8,
},
payment: {
total: 582,
receivedPaymentStatus: 'Partially Paid',
paidAmount: 234,
status: 'Confirmed',
},
},
{
product: {
id: 3,
name: 'Willful Smart Watch for Men Women 2020,',
slug: 'willful-smart-watch-for-men-women-2020-3',
description:
'Are you looking for a smart watch, which can not only easily keep tracking of your steps, calories, heart rate and sleep quality, but also keep you informed of incoming calls.',
brand: 'Willful',
category: 'Smart Watch',
price: 29.99,
image: product25,
hasFreeShipping: true,
rating: 5,
},
date: '29 Aug 2020',
buyer: {
name: 'Ashley Douglas DDS',
avatar: avatar3,
},
payment: {
total: 1092,
receivedPaymentStatus: 'Fully Paid',
paidAmount: 1092,
status: 'Completed',
},
},
{
product: {
id: 22,
name: 'Switch Pro Controller',
slug: 'switch-pro-controller-22',
brand: 'Sharp',
category: 'Gaming',
price: 429.99,
image: product6,
hasFreeShipping: false,
rating: 3,
description:
'The Nintendo Switch Pro Controller is one of the priciest \'baseline\' controllers in the current console\n generation, but it\'s also sturdy, feels good to play with, has an excellent direction pad, and features\n impressive motion sensors and vibration systems. On top of all of that, it uses Bluetooth, so you don\'t need an\n adapter to use it with your PC.',
},
date: '09 Jan 2021',
buyer: {
name: 'Eric Gregory',
avatar: avatar3,
},
payment: {
total: 939,
receivedPaymentStatus: 'Fully Paid',
paidAmount: 939,
status: 'Completed',
},
},
{
product: {
id: 4,
name: 'Ronyes Unisex College Bag Bookbags for Women',
slug: 'ronyes-unisex-college-bag-bookbags-for-women-4',
description:
'Made of high quality water-resistant material; padded and adjustable shoulder straps; external USB with built-in charging cable offers a convenient charging',
brand: 'Ronyes',
category: 'Bag',
price: 23.99,
image: product24,
hasFreeShipping: true,
rating: 2,
},
date: '06 May 2020',
buyer: {
name: 'Taylor Hernandez',
avatar: avatar3,
},
payment: {
total: 1129,
receivedPaymentStatus: 'Unpaid',
paidAmount: 0,
status: 'Cancelled',
},
},
{
product: {
id: 10,
name: 'Oculus Quest All-in-one VR',
slug: 'oculus-quest-all-in-one-vr-10',
description:
'All-in-one VR: No PC. No wires. No limits. Oculus quest is an all-in-one gaming system built for virtual reality. Now you can play almost anywhere with just a VR headset and controllers. Oculus touch controllers: arm yourself with the award-winning Oculus touch controllers. Your slashes, throws and grab appear in VR with intuitive, realistic Precision, transporting your hands and gestures right into the game',
brand: 'Oculus',
category: 'VR',
price: 645,
image: product18,
hasFreeShipping: false,
rating: 1,
},
date: '29 Dec 2020',
buyer: {
name: 'Justin Patterson',
avatar: avatar3,
},
payment: {
total: 252,
receivedPaymentStatus: 'Fully Paid',
paidAmount: 252,
status: 'Completed',
},
},
{
product: {
id: 11,
name: 'Handbags for Women Large Designer bag',
slug: 'handbags-for-women-large-designer-bag-11',
description:
'Classic Hobo Purse: Top zipper closure, with 2 side zipper pockets design and elegant tassels decoration, fashionable and practical handbags for women, perfect for shopping, dating, travel and business',
brand: 'Hobo',
category: 'Bag',
price: 39.99,
image: product17,
hasFreeShipping: true,
rating: 3,
},
date: '19 Dec 2020',
buyer: {
name: 'Judy Cummings',
avatar: avatar3,
},
payment: {
total: 1369,
receivedPaymentStatus: 'Fully Paid',
paidAmount: 1369,
status: 'Completed',
},
},
{
product: {
id: 18,
name: 'Logitech K380 Wireless Keyboard',
slug: 'acer-11-6-chromebook-intel-celeron-2-gb-memory-16-gb-e-mmc-flash-memory-moonstone-white-18',
description:
'Logitech K380 Bluetooth Wireless Keyboard gives you the comfort and convenience of desktop typing on your smartphone, and tablet. It is a wireless keyboard that connects to all Bluetooth wireless devices that support external keyboards. Take this compact, lightweight, Bluetooth keyboard anywhere in your home. Type wherever you like, on any compatible computer, phone or tablet.',
brand: 'Logitech',
category: 'Keyboard',
price: 81.99,
image: product10,
hasFreeShipping: false,
rating: 4,
},
date: '02 Jan 2021',
buyer: {
name: 'Linda Buchanan',
avatar: avatar7,
},
payment: {
total: 351,
receivedPaymentStatus: 'Fully Paid',
paidAmount: 351,
status: 'Completed',
},
},
{
product: {
id: 21,
name: 'Google - Google Home',
slug: 'google-google-home-white-slate-fabric-21',
brand: 'Google',
category: 'Google Home',
price: 129.29,
image: product7,
hasFreeShipping: true,
rating: 4,
description:
'Simplify your everyday life with the Google Home, a voice-activated speaker powered by the Google Assistant. Use\n voice commands to enjoy music, get answers from Google and manage everyday tasks. Google Home is compatible with\n Android and iOS operating systems, and can control compatible smart devices such as Chromecast or Nest.',
},
date: '25 Feb 2021',
buyer: {
name: 'Brian Perez',
avatar: avatar8,
},
payment: {
total: 506,
receivedPaymentStatus: 'Partially Paid',
paidAmount: 497,
status: 'Confirmed',
},
},
{
product: {
id: 3,
name: 'Willful Smart Watch for Men Women 2020,',
slug: 'willful-smart-watch-for-men-women-2020-3',
description:
'Are you looking for a smart watch, which can not only easily keep tracking of your steps, calories, heart rate and sleep quality, but also keep you informed of incoming calls.',
brand: 'Willful',
category: 'Smart Watch',
price: 29.99,
image: product25,
hasFreeShipping: true,
rating: 5,
},
date: '13 Sep 2020',
buyer: {
name: 'Amy White',
avatar: null,
},
payment: {
total: 195,
receivedPaymentStatus: 'Fully Paid',
paidAmount: 195,
status: 'Completed',
},
},
{
product: {
id: 18,
name: 'Logitech K380 Wireless Keyboard',
slug: 'acer-11-6-chromebook-intel-celeron-2-gb-memory-16-gb-e-mmc-flash-memory-moonstone-white-18',
description:
'Logitech K380 Bluetooth Wireless Keyboard gives you the comfort and convenience of desktop typing on your smartphone, and tablet. It is a wireless keyboard that connects to all Bluetooth wireless devices that support external keyboards. Take this compact, lightweight, Bluetooth keyboard anywhere in your home. Type wherever you like, on any compatible computer, phone or tablet.',
brand: 'Logitech',
category: 'Keyboard',
price: 81.99,
image: product10,
hasFreeShipping: false,
rating: 4,
},
date: '30 Sep 2020',
buyer: {
name: 'Katherine Clark',
avatar: avatar1,
},
payment: {
total: 1246,
receivedPaymentStatus: 'Partially Paid',
paidAmount: 475,
status: 'Confirmed',
},
},
{
product: {
id: 14,
name: 'Wireless Charger 5W Max',
slug: 'wireless-charger-5-w-max-14',
description:
'Charge with case: transmits charging power directly through protective cases. Rubber/plastic/TPU cases under 5 mm thickness . Do not use any magnetic and metal attachments or cards, or it will prevent charging.',
brand: '3M',
category: 'Electronics',
price: 10.83,
image: product14,
hasFreeShipping: true,
rating: 3,
},
date: '26 Mar 2021',
buyer: {
name: 'Jose Murphy',
avatar: avatar5,
},
payment: {
total: 383,
receivedPaymentStatus: 'Fully Paid',
paidAmount: 383,
status: 'Completed',
},
},
{
product: {
id: 2,
name: 'Bose Frames Tenor',
slug: 'bose-frames-tenor-rectangular-polarized-bluetooth-audio-sunglasses-2',
description:
'Redesigned for luxury \u2014 Thoughtfully refined and strikingly elegant, the latest Bose sunglasses blend enhanced features and designs for an elevated way to listen',
brand: 'Bose',
category: 'Glass',
price: 249,
image: product26,
hasFreeShipping: false,
rating: 4,
},
date: '01 Dec 2020',
buyer: {
name: 'Jeffrey Rose',
avatar: avatar5,
},
payment: {
total: 902,
receivedPaymentStatus: 'Fully Paid',
paidAmount: 902,
status: 'Completed',
},
},
{
product: {
id: 24,
name: 'OneOdio A71 Wired Headphones',
slug: 'one-odio-a71-wired-headphones-24',
brand: 'OneOdio',
category: 'Headphone',
price: 49.99,
image: product4,
hasFreeShipping: true,
rating: 3,
description:
'Omnidirectional detachable boom mic upgrades the headphones into a professional headset for gaming, business,\n podcasting and taking calls on the go. Better pick up your voice. Control most electric devices through voice\n activation, or schedule a ride with Uber and order a pizza. OneOdio A71 Wired Headphones voice-controlled device\n turns any home into a smart device on a smartphone or tablet.',
},
date: '15 Sep 2020',
buyer: {
name: 'Amber Hunt',
avatar: avatar7,
},
payment: {
total: 379,
receivedPaymentStatus: 'Partially Paid',
paidAmount: 174,
status: 'Confirmed',
},
},
{
product: {
id: 2,
name: 'Bose Frames Tenor',
slug: 'bose-frames-tenor-rectangular-polarized-bluetooth-audio-sunglasses-2',
description:
'Redesigned for luxury \u2014 Thoughtfully refined and strikingly elegant, the latest Bose sunglasses blend enhanced features and designs for an elevated way to listen',
brand: 'Bose',
category: 'Glass',
price: 249,
image: product26,
hasFreeShipping: false,
rating: 4,
},
date: '08 Apr 2021',
buyer: {
name: 'Christopher Haas',
avatar: avatar2,
},
payment: {
total: 7,
receivedPaymentStatus: 'Unpaid',
paidAmount: 0,
status: 'Confirmed',
},
},
{
product: {
id: 2,
name: 'Bose Frames Tenor',
slug: 'bose-frames-tenor-rectangular-polarized-bluetooth-audio-sunglasses-2',
description:
'Redesigned for luxury \u2014 Thoughtfully refined and strikingly elegant, the latest Bose sunglasses blend enhanced features and designs for an elevated way to listen',
brand: 'Bose',
category: 'Glass',
price: 249,
image: product26,
hasFreeShipping: false,
rating: 4,
},
date: '21 Oct 2020',
buyer: {
name: 'Stephen Mccormick',
avatar: avatar6,
},
payment: {
total: 186,
receivedPaymentStatus: 'Partially Paid',
paidAmount: 81,
status: 'Confirmed',
},
},
{
product: {
id: 19,
name: 'OnePlus 7 Pro ',
slug: 'one-plus-7-pro-19',
brand: 'Philips',
category: 'Smart Phone',
price: 14.99,
image: product9,
hasFreeShipping: false,
rating: 4,
description:
'The OnePlus 7 Pro features a brand new design, with a glass back and front and curved sides. The phone feels\n very premium but\u2019s it\u2019s also very heavy. The Nebula Blue variant looks slick but it\u2019s quite slippery, which\n makes single-handed use a real challenge. It has a massive 6.67-inch \u2018Fluid AMOLED\u2019 display with a QHD+\n resolution, 90Hz refresh rate and support for HDR 10+ content. The display produces vivid colours, deep blacks\n and has good viewing angles.',
},
date: '21 Oct 2020',
buyer: {
name: 'Matthew Reyes',
avatar: avatar3,
},
payment: {
total: 198,
receivedPaymentStatus: 'Fully Paid',
paidAmount: 198,
status: 'Completed',
},
},
{
product: {
id: 4,
name: 'Ronyes Unisex College Bag Bookbags for Women',
slug: 'ronyes-unisex-college-bag-bookbags-for-women-4',
description:
'Made of high quality water-resistant material; padded and adjustable shoulder straps; external USB with built-in charging cable offers a convenient charging',
brand: 'Ronyes',
category: 'Bag',
price: 23.99,
image: product24,
hasFreeShipping: true,
rating: 2,
},
date: '16 May 2020',
buyer: {
name: 'Ricardo Morgan',
avatar: avatar5,
},
payment: {
total: 519,
receivedPaymentStatus: 'Partially Paid',
paidAmount: 447,
status: 'Confirmed',
},
},
{
product: {
id: 20,
name: 'Sony 4K Ultra HD LED TV ',
slug: 'sony-4-k-ultra-hd-led-tv-20',
brand: 'Apple',
category: 'Smart TV',
price: 7999.99,
image: product8,
hasFreeShipping: false,
rating: 5,
description:
'Sony 4K Ultra HD LED TV has 4K HDR Support. The TV provides clear visuals and provides distinct sound quality\n and an immersive experience. This TV has Yes HDMI ports & Yes USB ports. Connectivity options included are HDMI.\n You can connect various gadgets such as your laptop using the HDMI port. The TV comes with a 1 Year warranty.',
},
date: '01 Jul 2020',
buyer: {
name: 'William Castillo',
avatar: avatar4,
},
payment: {
total: 10,
receivedPaymentStatus: 'Partially Paid',
paidAmount: 6,
status: 'Confirmed',
},
},
{
product: {
id: 11,
name: 'Handbags for Women Large Designer bag',
slug: 'handbags-for-women-large-designer-bag-11',
description:
'Classic Hobo Purse: Top zipper closure, with 2 side zipper pockets design and elegant tassels decoration, fashionable and practical handbags for women, perfect for shopping, dating, travel and business',
brand: 'Hobo',
category: 'Bag',
price: 39.99,
image: product17,
hasFreeShipping: true,
rating: 3,
},
date: '04 Jul 2020',
buyer: {
name: 'James Coleman',
avatar: avatar8,
},
payment: {
total: 897,
receivedPaymentStatus: 'Partially Paid',
paidAmount: 677,
status: 'Confirmed',
},
},
{
product: {
id: 18,
name: 'Logitech K380 Wireless Keyboard',
slug: 'acer-11-6-chromebook-intel-celeron-2-gb-memory-16-gb-e-mmc-flash-memory-moonstone-white-18',
description:
'Logitech K380 Bluetooth Wireless Keyboard gives you the comfort and convenience of desktop typing on your smartphone, and tablet. It is a wireless keyboard that connects to all Bluetooth wireless devices that support external keyboards. Take this compact, lightweight, Bluetooth keyboard anywhere in your home. Type wherever you like, on any compatible computer, phone or tablet.',
brand: 'Logitech',
category: 'Keyboard',
price: 81.99,
image: product10,
hasFreeShipping: false,
rating: 4,
},
date: '19 Feb 2021',
buyer: {
name: 'Michael Summers',
avatar: avatar3,
},
payment: {
total: 653,
receivedPaymentStatus: 'Fully Paid',
paidAmount: 653,
status: 'Completed',
},
},
{
product: {
id: 3,
name: 'Willful Smart Watch for Men Women 2020,',
slug: 'willful-smart-watch-for-men-women-2020-3',
description:
'Are you looking for a smart watch, which can not only easily keep tracking of your steps, calories, heart rate and sleep quality, but also keep you informed of incoming calls.',
brand: 'Willful',
category: 'Smart Watch',
price: 29.99,
image: product25,
hasFreeShipping: true,
rating: 5,
},
date: '03 Mar 2021',
buyer: {
name: 'Jeremiah Espinoza',
avatar: avatar2,
},
payment: {
total: 913,
receivedPaymentStatus: 'Partially Paid',
paidAmount: 468,
status: 'Confirmed',
},
},
{
product: {
id: 2,
name: 'Bose Frames Tenor',
slug: 'bose-frames-tenor-rectangular-polarized-bluetooth-audio-sunglasses-2',
description:
'Redesigned for luxury \u2014 Thoughtfully refined and strikingly elegant, the latest Bose sunglasses blend enhanced features and designs for an elevated way to listen',
brand: 'Bose',
category: 'Glass',
price: 249,
image: product26,
hasFreeShipping: false,
rating: 4,
},
date: '03 Mar 2021',
buyer: {
name: 'Tyler Brooks',
avatar: null,
},
payment: {
total: 1123,
receivedPaymentStatus: 'Fully Paid',
paidAmount: 1123,
status: 'Completed',
},
},
{
product: {
id: 17,
name: 'Nike Air Max',
slug: '72-9301-speaker-wire-harness-adapter-for-most-plymouth-dodge-and-mitsubishi-vehicles-multi-17',
description:
'With a bold application of colorblocking inspired by modern art styles, the Nike Air Max 270 React sneaker is constructed with layers of lightweight material to achieve its artful look and comfortable feel.',
brand: 'Nike',
category: 'Shoes',
price: 81.99,
image: product11,
hasFreeShipping: true,
rating: 5,
},
date: '29 Dec 2020',
buyer: {
name: 'Juan Wilson',
avatar: avatar3,
},
payment: {
total: 779,
receivedPaymentStatus: 'Fully Paid',
paidAmount: 779,
status: 'Completed',
},
},
{
product: {
id: 15,
name: 'Vankyo leisure 3 mini projector',
slug: '3-m-filtrete-vacuum-belt-for-select-hoover-t-series-upright-vacuums-15',
description:
'SUPERIOR VIEWING EXPERIENCE: Supporting 1920x1080 resolution, VANKYO Leisure 3 projector is powered by MStar Advanced Color Engine, which is ideal for home entertainment. 2020 upgraded LED lighting provides a superior viewing experience for you.',
brand: 'Vankyo Store',
category: 'Projector',
price: 99.99,
image: product13,
hasFreeShipping: true,
rating: 2,
},
date: '03 Dec 2020',
buyer: {
name: 'Marvin Duran',
avatar: null,
},
payment: {
total: 594,
receivedPaymentStatus: 'Unpaid',
paidAmount: 0,
status: 'Cancelled',
},
},
{
product: {
id: 22,
name: 'Switch Pro Controller',
slug: 'switch-pro-controller-22',
brand: 'Sharp',
category: 'Gaming',
price: 429.99,
image: product6,
hasFreeShipping: false,
rating: 3,
description:
'The Nintendo Switch Pro Controller is one of the priciest \'baseline\' controllers in the current console\n generation, but it\'s also sturdy, feels good to play with, has an excellent direction pad, and features\n impressive motion sensors and vibration systems. On top of all of that, it uses Bluetooth, so you don\'t need an\n adapter to use it with your PC.',
},
date: '28 May 2020',
buyer: {
name: 'Jessica Glass',
avatar: avatar5,
},
payment: {
total: 1065,
receivedPaymentStatus: 'Partially Paid',
paidAmount: 844,
status: 'Confirmed',
},
},
{
product: {
id: 18,
name: 'Logitech K380 Wireless Keyboard',
slug: 'acer-11-6-chromebook-intel-celeron-2-gb-memory-16-gb-e-mmc-flash-memory-moonstone-white-18',
description:
'Logitech K380 Bluetooth Wireless Keyboard gives you the comfort and convenience of desktop typing on your smartphone, and tablet. It is a wireless keyboard that connects to all Bluetooth wireless devices that support external keyboards. Take this compact, lightweight, Bluetooth keyboard anywhere in your home. Type wherever you like, on any compatible computer, phone or tablet.',
brand: 'Logitech',
category: 'Keyboard',
price: 81.99,
image: product10,
hasFreeShipping: false,
rating: 4,
},
date: '17 May 2020',
buyer: {
name: 'Gary Herman',
avatar: avatar8,
},
payment: {
total: 432,
receivedPaymentStatus: 'Partially Paid',
paidAmount: 64,
status: 'Confirmed',
},
},
{
product: {
id: 19,
name: 'OnePlus 7 Pro ',
slug: 'one-plus-7-pro-19',
brand: 'Philips',
category: 'Smart Phone',
price: 14.99,
image: product9,
hasFreeShipping: false,
rating: 4,
description:
'The OnePlus 7 Pro features a brand new design, with a glass back and front and curved sides. The phone feels\n very premium but\u2019s it\u2019s also very heavy. The Nebula Blue variant looks slick but it\u2019s quite slippery, which\n makes single-handed use a real challenge. It has a massive 6.67-inch \u2018Fluid AMOLED\u2019 display with a QHD+\n resolution, 90Hz refresh rate and support for HDR 10+ content. The display produces vivid colours, deep blacks\n and has good viewing angles.',
},
date: '25 Mar 2021',
buyer: {
name: 'Adam Williams',
avatar: avatar2,
},
payment: {
total: 1402,
receivedPaymentStatus: 'Partially Paid',
paidAmount: 434,
status: 'Confirmed',
},
},
{
product: {
id: 20,
name: 'Sony 4K Ultra HD LED TV ',
slug: 'sony-4-k-ultra-hd-led-tv-20',
brand: 'Apple',
category: 'Smart TV',
price: 7999.99,
image: product8,
hasFreeShipping: false,
rating: 5,
description:
'Sony 4K Ultra HD LED TV has 4K HDR Support. The TV provides clear visuals and provides distinct sound quality\n and an immersive experience. This TV has Yes HDMI ports & Yes USB ports. Connectivity options included are HDMI.\n You can connect various gadgets such as your laptop using the HDMI port. The TV comes with a 1 Year warranty.',
},
date: '13 Apr 2021',
buyer: {
name: 'Bobby Brown',
avatar: null,
},
payment: {
total: 100,
receivedPaymentStatus: 'Partially Paid',
paidAmount: 65,
status: 'Confirmed',
},
},
{
product: {
id: 14,
name: 'Wireless Charger 5W Max',
slug: 'wireless-charger-5-w-max-14',
description:
'Charge with case: transmits charging power directly through protective cases. Rubber/plastic/TPU cases under 5 mm thickness . Do not use any magnetic and metal attachments or cards, or it will prevent charging.',
brand: '3M',
category: 'Electronics',
price: 10.83,
image: product14,
hasFreeShipping: true,
rating: 3,
},
date: '07 Aug 2020',
buyer: {
name: 'Sharon Moss',
avatar: avatar8,
},
payment: {
total: 823,
receivedPaymentStatus: 'Unpaid',
paidAmount: 0,
status: 'Cancelled',
},
},
{
product: {
id: 15,
name: 'Vankyo leisure 3 mini projector',
slug: '3-m-filtrete-vacuum-belt-for-select-hoover-t-series-upright-vacuums-15',
description:
'SUPERIOR VIEWING EXPERIENCE: Supporting 1920x1080 resolution, VANKYO Leisure 3 projector is powered by MStar Advanced Color Engine, which is ideal for home entertainment. 2020 upgraded LED lighting provides a superior viewing experience for you.',
brand: 'Vankyo Store',
category: 'Projector',
price: 99.99,
image: product13,
hasFreeShipping: true,
rating: 2,
},
date: '23 Feb 2021',
buyer: {
name: 'Scott Buchanan',
avatar: avatar5,
},
payment: {
total: 183,
receivedPaymentStatus: 'Unpaid',
paidAmount: 0,
status: 'Cancelled',
},
},
],
}