-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.jsx
More file actions
120 lines (120 loc) · 2.71 KB
/
data.jsx
File metadata and controls
120 lines (120 loc) · 2.71 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
export const productos = [
{
id: 1,
name: "Remera roja",
price: 100,
offert: true,
offert_price: 80,
firstProduct: true,
available: true,
salient: true,
available: true,
category: "Remeras",
image: "https://source.unsplash.com/400x300/?shirt"
},
{
id: 2,
name: "Zapatos negros",
price: 200,
offert: false,
offert_price: null,
firstProduct: true,
salient: true,
available: true,
category: "Zapatos",
image: "https://source.unsplash.com/400x300/?shoes"
},
{
id: 3,
name: "Anillo de plata",
price: 150,
offert: true,
offert_price: 120,
firstProduct: true,
salient: false,
category: "Accesorios",
image: "https://source.unsplash.com/400x300/?ring"
},
{
id: 4,
name: "Laptop Asus",
price: 300,
offert: false,
offert_price: null,
firstProduct: true,
salient: true,
available: true,
category: "Tecnología",
image: "https://source.unsplash.com/400x300/?laptop"
},
{
id: 5,
name: "Remera azul",
price: 250,
offert: true,
offert_price: 200,
firstProduct: true,
salient: false,
category: "Remeras",
image: "https://source.unsplash.com/400x300/?blue+shirt"
},
{
id: 6,
name: "Reloj de cuero",
price: 175,
offert: false,
offert_price: null,
firstProduct: true,
salient: false,
category: "Accesorios",
image: "https://source.unsplash.com/400x300/?watch"
},
{
id: 7,
name: "Auriculares Sony",
price: 225,
offert: true,
offert_price: 180,
firstProduct: true,
salient: true,
available: true,
category: "Tecnología",
image: "https://source.unsplash.com/400x300/?headphones"
},
{
id: 8,
name: "Zapatillas Nike",
price: 275,
offert: false,
offert_price: null,
firstProduct: true,
salient: true,
available: true,
category: "Zapatos",
image: "https://source.unsplash.com/400x300/?nike"
},
{
id: 9,
name: "Remera verde",
price: 120,
offert: true,
offert_price: 100,
firstProduct: true,
salient: false,
available: true,
category: "Remeras",
image: "https://source.unsplash.com/400x300/?green+shirt"
},
{
id: 10,
name: "Smartphone Samsung",
price: 350,
offert: false,
offert_price: null,
firstProduct: true,
salient: false,
available: true,
category: "Tecnología",
image: "https://source.unsplash.com/400x300/?samsung+phone"
}
];