-
Notifications
You must be signed in to change notification settings - Fork 0
/
charms.js
103 lines (102 loc) · 1.78 KB
/
charms.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
93
94
95
96
97
98
99
100
101
102
103
const charms = [
{
id: 'price_1MFSePAfVNgIAFWktuhsiT5W',
name: 'Bottled Water',
price: 150,
currency: 'USD',
image: '/items/8.png',
rating: {
count: 78,
rate: 4,
},
},
{
id: 'price_1MFSerAfVNgIAFWkMk6pyiSx',
name: 'Coca-Cola Zero Sugar',
price: 225,
currency: 'USD',
image: '/items/1.png',
rating: {
count: 85,
rate: 4.5,
},
},
{
id: 'price_1MFSfZAfVNgIAFWkQtRnRFrb',
name: 'Houjicha Japanese Roasted Tea',
price: 225,
currency: 'USD',
image: '/items/3.png',
rating: {
count: 78,
rate: 4,
},
},
{
id: 'price_1MFSg2AfVNgIAFWkG5tfe9et',
name: 'Canned Beer',
price: 375,
currency: 'USD',
image: '/items/7.png',
rating: {
count: 213,
rate: 5,
},
},
{
id: 'price_1MFSgjAfVNgIAFWkvxj4VZ0T',
name: 'Hot Coffee',
price: 225,
currency: 'USD',
image: '/items/5.png',
rating: {
count: 104,
rate: 4,
},
},
{
id: 'price_1MFShAAfVNgIAFWkHsfCcRTC',
name: 'Hot Tea',
price: 150,
currency: 'USD',
image: '/items/9.png',
rating: {
count: 213,
rate: 5,
},
},
{
id: 'price_1MFShgAfVNgIAFWkZXhsYoof',
name: 'Seaweed Chicken',
price: 750,
currency: 'USD',
image: '/items/2.png',
rating: {
count: 271,
rate: 5,
},
},
{
id: 'price_1MFSi7AfVNgIAFWkbF8rENUz',
name: 'Chicken Karage',
price: 750,
currency: 'USD',
image: '/items/6.png',
rating: {
count: 85,
rate: 4.5,
},
},
{
id: 'price_1MFSiUAfVNgIAFWkqipmVVsw',
name: 'French Fries',
price: 600,
currency: 'USD',
image: '/items/4.png',
rating: {
count: 78,
rate: 4,
},
},
];
export default charms;