-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.js
98 lines (98 loc) · 3.34 KB
/
data.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
const data = [
{
id: 1,
descripcion: "Dell XPS 13",
categoria: "Ultrabook",
precio: 999,
href: "https://m.media-amazon.com/images/I/710EGJBdIML._AC_SL1500_.jpg",
stock: 15,
},
{
id: 2,
descripcion: "HP Omen 15",
categoria: "Gaming",
precio: 1299,
href: "https://www.omen.com/content/dam/sites/omen/worldwide/laptops/omen-15-laptop/2-0/starmade-15-50-w-numpad-4-zone-oled-shadow-black-nt-h-dcam-non-odd-non-fpr-freedos-core-set-front-right-copy.png",
stock: 8,
},
{
id: 3,
descripcion: "Apple MacBook Pro",
categoria: "Ultrabook",
precio: 1499,
href: "https://www.apple.com/newsroom/images/product/mac/standard/Apple_16-inch-MacBook-Pro_111319_big.jpg.small.jpg",
stock: 5,
},
{
id: 4,
descripcion: "Lenovo ThinkPad X1",
categoria: "Business",
precio: 1299,
href: "https://p1-ofp.static.pub/medias/bWFzdGVyfHJvb3R8NDQ1NTc2fGltYWdlL3BuZ3xoNTgvaDg4LzE0MzMyMDQzMjY0MDMwLnBuZ3w1ZDJjODlkNWQ5YmYxYThmYmQzOGVhMDUxNGNhYWEyMWM5YmMzZDVhYmYxNDRkNjJiOTc2NGE3Njk4ZjM4ZTc4/lenovo-laptops-thinkpad-x1-nano-gen-2-hero.png",
stock: 10,
},
{
id: 5,
descripcion: "Asus ROG Zephyrus",
categoria: "Gaming",
precio: 1599,
href: "https://acdn.mitiendanube.com/stores/001/907/418/products/2-7cc4d3178ccc22e7a217134577757328-1024-1024.webp",
stock: 12,
},
{
id: 6,
descripcion: "Acer Swift 3",
categoria: "Ultrabook",
precio: 799,
href: "https://static2-ecemea.acer.com/media/catalog/product/_/_/___s__swift-3-sf314-43-fpbl-sv_1000main_nx.ab1eb.00a.png?quality=80&bg-color=255,255,255&fit=bounds&height=500&width=500&canvas=500:500&format=jpeg",
stock: 20,
},
{
id: 7,
descripcion: "MSI Prestige 14",
categoria: "Business",
precio: 1199,
href: "https://m.media-amazon.com/images/I/81cQmQm7wWL._AC_SX425_.jpg",
stock: 6,
},
{
id: 8,
descripcion: "Razer Blade 15",
categoria: "Gaming",
precio: 1999,
href: "https://i5.walmartimages.com/seo/Razer-Blade-15-Advanced-RZ09-0367BEC3-R3U1-Intel-Core-i7-11800H-16GB-1TB-15-6-Gaming-Laptop_9a5f39ae-f1b3-4725-b0ba-71d540fd5daa.cebb40345bf9523121079ec11f17b003.jpeg",
stock: 4,
},
{
id: 9,
descripcion: "Microsoft Surface Laptop",
categoria: "Ultrabook",
precio: 999,
href: "https://pisces.bbystatic.com/image2/BestBuy_US/images/products/6582/6582848_sd.jpg;maxHeight=640;maxWidth=550;format=webp",
stock: 9,
},
{
id: 10,
descripcion: "LG Gram 17",
categoria: "Ultrabook",
precio: 1699,
href: "https://www.lg.com/us/images/business/laptops/md07502492/gallery/medium01.jpg",
stock: 11,
},
{
id: 11,
descripcion: "Huawei MateBook X",
categoria: "Business",
precio: 1199,
href: "https://http2.mlstatic.com/D_NQ_NP_679686-MNI71289221414_082023-O.webp",
stock: 13,
},
{
id: 12,
descripcion: "Google Pixelbook Go",
categoria: "Ultrabook",
precio: 649,
href: "https://i.blogs.es/197337/pixelbook-go-chrome/1024_2000.jpg",
stock: 7,
},
];