-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathproduct.js
More file actions
222 lines (212 loc) · 5.1 KB
/
Copy pathproduct.js
File metadata and controls
222 lines (212 loc) · 5.1 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
var items = [
{
title:"MaroSnacks",
image: "/product images/dogfood1.jpg.png",
price:480,
background: "#93b4a7",
},
{
title:"Dog Food",
image: "/product images/dogfood2.jpg.png",
price:3540,
background: "#f7d8bb"
},
{
title:"Dog Food",
image: "/product images/dogfood3.jpg.png",
price:1480,
background: "#f1c3b6"
},
{
title:"Cat Food",
image: "/product images/catfood1.png",
price:1200,
background: "#c7e1d3"
},
{
title:"Cat Food",
image: "/product images/catfood2.png",
price:900,
background: "#f1c3b6"
},
{
title:"Rabbit Food",
image: "/product images/rabbitfood1.png",
price:1200,
background:"#c7e1d3"
},
{
title:"Rabbit Food",
image: "/product images/rabbitfood2.png",
price:750,
background: "#93b4a7"
},
{
title:"Bird Food",
image: "/product images/birdfood1.png",
price:1000,
background: "#f7d8bb"
},
{
title:"Bedding",
image: "/product images/bedding1.jpg.png",
price:2700,
background: "#93b4a7"
},
{
title:"Bedding",
image: "/product images/bedding2.jpg.png",
price:4200,
background:"#f1c3b6"
},
{
title:"Bedding",
image: "/product images/bedding3.jpg.png",
price:1200,
background: "#f7d8bb"
},
{
title:"Bedding",
image: "/product images/bedding4.jpg.png",
price:3100,
background: "#c7e1d3"
},
{
title:"Bedding",
image: "/product images/bedding5.png",
price:800,
background: "#f1c3b6"
},
{
title:"Bedding",
image: "/product images/bedding6.png",
price:700,
background: "#c7e1d3"
},
{
title:"Bedding",
image: "/product images/bedding7.png",
price:900,
background: "#93b4a7"
},
{
title:"Bedding",
image: "/product images/bedding8.png",
price:800,
background: "#f7d8bb"
},
{
title:"Feeder",
image: "/product images/feeder.png",
price:1000,
background:"#93b4a7"
},
{
title:"Food Bowl",
image: "/product images/bowl1.jpg.png",
price:300,
background: "#f7d8bb"
},
{
title:"Food Bowl",
image: "/product images/bowl2.jpg.png",
price:300,
background: "#f1c3b6"
},
{
title:"Food Bowl",
image: "/product images/bowl3.jpg.png",
price:200,
background: "#c7e1d3"
},
{
title:"Food Bowl",
image: "/product images/bowl4.png",
price:200,
background: "#f1c3b6"
},
{
title:"Collar",
image: "/product images/collar1.jpg.png",
price:200,
background: "#c7e1d3"
},
{
title:"Collar",
image: "/product images/collar2.jpg.png",
price:100,
background: "#93b4a7"
},
{
title:"Collar",
image: "/product images/collar3.jpg.png",
price:300,
background: "#f7d8bb"
},
{
title:"Grooming Brush",
image: "/product images/groomingbrush1.jpg.png",
price:500,
background: "#93b4a7"
},
{
title:"Grooming Brush",
image: "/product images/groomingbrush2.jpg.png",
price:100,
background:"#f7d8bb"
},
{
title:"Cat Shampoo",
image: "/product images/catshampoo.png",
price:350,
background:"#f1c3b6"
},
{
title:"Dog Shampoo",
image: "/product images/dogshampoo.png",
price:400,
background:"#c7e1d3"
},
{
title:"Dog Soap",
image: "/product images/dogsoap1.png",
price:100,
background:"#f1c3b6"
},
{
title:"Dog Soap",
image: "/product images/dogsoap2.png",
price:100,
background:"#c7e1d3"
},
{
title:"Balls",
image: "/product images/toy1.jpg.png",
price:100,
background: "#93b4a7"
},
{
title:"Crocheted Toy",
image: "/product images/toy2.jpg.png",
price:100,
background: "#f7d8bb"
},
{
title:"Twisted Cotton Rope",
image: "/product images/toy3.jpg.png",
price:100,
background:"#93b4a7"
},
{
title:"Bird Ladder",
image: "/product images/toy4.jpg",
price:80,
background:"#f7d8bb"
},
{
title:"Bunny Fun Tree",
image: "/product images/toy5.png",
price:150,
background:"#f1c3b6"
}
];