-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathproducts.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_1JAE9cEy9j6mAC9ettoD2R0D',
name: 'Kentiapalm (L)',
price: 3995,
currency: 'USD',
image: '/plants/kentiapalm.png',
rating: {
count: 85,
rate: 4.5,
},
},
{
id: 'price_1JAEABEy9j6mAC9eYTnD6Rv7',
name: 'Monstera Deliciosa (L)',
price: 5995,
currency: 'USD',
image: '/plants/monstera-deliciosa.png',
rating: {
count: 137,
rate: 4.5,
},
},
{
id: 'price_1JAEAjEy9j6mAC9e1jK4nxds',
name: 'Alocasia Zebrina',
price: 2995,
currency: 'USD',
image: '/plants/alocasia-zebrina.png',
rating: {
count: 104,
rate: 4,
},
},
{
id: 'price_1JAEBeEy9j6mAC9ewOgehqP6',
name: 'Cactus Euphorbia (L)',
price: 4995,
currency: 'USD',
image: '/plants/euphorbia.png',
rating: {
count: 213,
rate: 5,
},
},
{
id: 'price_1JAEBxEy9j6mAC9eJFypGxjc',
name: 'Calathea Orbifolia',
price: 2995,
currency: 'USD',
image: '/plants/calathea-orbifolia.png',
rating: {
count: 78,
rate: 4,
},
},
{
id: 'price_1JAECJEy9j6mAC9epK9RoNwV',
name: 'Calathea Medallion',
price: 2995,
currency: 'USD',
image: '/plants/calathea-medallion.png',
rating: {
count: 89,
rate: 5,
},
},
{
id: 'price_1JAECWEy9j6mAC9eapjaRm9M',
name: 'Calathea Ornata',
price: 2995,
currency: 'USD',
image: '/plants/calathea-ornata.png',
rating: {
count: 271,
rate: 5,
},
},
{
id: 'price_1JAECpEy9j6mAC9etXk35nRL',
name: 'Zamioculcas (L)',
price: 3995,
currency: 'USD',
image: '/plants/zamioculcas.png',
rating: {
count: 78,
rate: 4,
},
},
];
export default products;