-
Notifications
You must be signed in to change notification settings - Fork 6
/
products.js
92 lines (91 loc) · 1.73 KB
/
products.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
const products = [
{
id: 'price_1NyG5TBVp8j6hztqyh4VsGlN',
name: 'Kentiapalm (L)',
price: 3995,
currency: 'USD',
image: '/plants/kentiapalm.png',
rating: {
count: 85,
rate: 4.5,
},
},
{
id: 'price_1NyG6qBVp8j6hztqq0XQgMmJ',
name: 'Monstera Deliciosa (L)',
price: 5995,
currency: 'USD',
image: '/plants/monstera-deliciosa.png',
rating: {
count: 137,
rate: 4.5,
},
},
{
id: 'price_1NyG7pBVp8j6hztq0LUyB9t1',
name: 'Alocasia Zebrina',
price: 2995,
currency: 'USD',
image: '/plants/alocasia-zebrina.png',
rating: {
count: 104,
rate: 4,
},
},
{
id: 'price_1NyG8iBVp8j6hztqLsqF0qkj',
name: 'Cactus Euphorbia (L)',
price: 4995,
currency: 'USD',
image: '/plants/euphorbia.png',
rating: {
count: 213,
rate: 5,
},
},
{
id: 'price_1NyG9NBVp8j6hztqnzRSpXDm',
name: 'Calathea Orbifolia',
price: 2995,
currency: 'USD',
image: '/plants/calathea-orbifolia.png',
rating: {
count: 78,
rate: 4,
},
},
{
id: 'price_1NyG9uBVp8j6hztqqgkB61RK',
name: 'Calathea Medallion',
price: 2995,
currency: 'USD',
image: '/plants/calathea-medallion.png',
rating: {
count: 89,
rate: 5,
},
},
{
id: 'price_1NyGANBVp8j6hztq1m7uVtAY',
name: 'Calathea Ornata',
price: 2995,
currency: 'USD',
image: '/plants/calathea-ornata.png',
rating: {
count: 271,
rate: 5,
},
},
{
id: 'price_1NyGAyBVp8j6hztqPpD1ETp4',
name: 'Zamioculcas (L)',
price: 3995,
currency: 'USD',
image: '/plants/zamioculcas.png',
rating: {
count: 78,
rate: 4,
},
},
];
export default products;