-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproducts.js
More file actions
74 lines (74 loc) · 2.23 KB
/
products.js
File metadata and controls
74 lines (74 loc) · 2.23 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
const products = [
{
id: 1,
title: "Premium Dog Food",
description: "High-quality balanced nutrition for adult dogs",
price: 2500,
imageUrl: "https://images.unsplash.com/photo-1568640347023-a616a30bc3bd?w=400",
stock: 50,
category: "food"
},
{
id: 2,
title: "Cat Scratching Post",
description: "Multi-level cat tree with scratching posts and platforms",
price: 3500,
imageUrl: "https://images.unsplash.com/photo-1545249390-6bdfa286032f?w=400",
stock: 20,
category: "furniture"
},
{
id: 3,
title: "Interactive Dog Toy",
description: "Durable rubber toy that dispenses treats",
price: 1200,
imageUrl: "https://images.unsplash.com/photo-1576201836106-db1758fd1c97?w=400",
stock: 35,
category: "toys"
},
{
id: 4,
title: "Pet Carrier",
description: "Comfortable and secure carrier for small pets",
price: 4500,
imageUrl: "https://images.unsplash.com/photo-1549298240-0d8e60513026?w=400",
stock: 15,
category: "accessories"
},
{
id: 5,
title: "Cat Litter Box",
description: "Self-cleaning automatic litter box",
price: 8000,
imageUrl: "https://images.unsplash.com/photo-1571566882372-1598d88abd90?w=400",
stock: 10,
category: "accessories"
},
{
id: 6,
title: "Premium Cat Food",
description: "Grain-free nutrition for indoor cats",
price: 2800,
imageUrl: "https://images.unsplash.com/photo-1589924691995-400dc9ecc119?w=400",
stock: 45,
category: "food"
},
{
id: 7,
title: "Pet Bed",
description: "Orthopedic memory foam bed for dogs",
price: 5500,
imageUrl: "https://images.unsplash.com/photo-1601758228041-f3b2795255f1?w=400",
stock: 25,
category: "furniture"
},
{
id: 8,
title: "Cat Toys Set",
description: "Set of 5 interactive toys for cats",
price: 1800,
imageUrl: "https://images.unsplash.com/photo-1587300003388-59208cc962cb?w=400",
stock: 30,
category: "toys"
}
];