-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample-fishes.js
74 lines (66 loc) · 2.74 KB
/
sample-fishes.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
// This is just some sample data so you don't have to think of your own!
module.exports = {
fish1: {
name: 'Pacific Halibut',
image: 'http://i.istockimg.com/file_thumbview_approve/36248396/5/stock-photo-36248396-blackened-cajun-sea-bass.jpg',
desc: 'Everyones favorite white fish. We will cut it to the size you need and ship it.',
price: 1724,
status: 'available'
},
fish2: {
name: 'Lobster',
image: 'http://i.istockimg.com/file_thumbview_approve/32135274/5/stock-photo-32135274-cooked-lobster.jpg',
desc: 'These tender, mouth-watering beauties are a fantastic hit at any dinner party.',
price: 3200,
status: 'available'
},
fish3: {
name: 'Sea Scallops',
image: 'http://i.istockimg.com/file_thumbview_approve/58624176/5/stock-photo-58624176-scallops-on-black-stone-plate.jpg',
desc: 'Big, sweet and tender. True dry-pack scallops from the icey waters of Alaska. About 8-10 per pound',
price: 1684,
status: 'unavailable'
},
fish4: {
name: 'Mahi Mahi',
image: 'http://i.istockimg.com/file_thumbview_approve/12556651/5/stock-photo-12556651-mahimahi.jpg',
desc: 'Lean flesh with a mild, sweet flavor profile, moderately firm texture and large, moist flakes. ',
price: 1129,
status: 'available'
},
fish5: {
name: 'King Crab',
image: 'http://i.istockimg.com/file_thumbview_approve/18294110/5/stock-photo-18294110-king-crab-legs.jpg',
desc: 'Crack these open and enjoy them plain or with one of our cocktail sauces',
price: 4234,
status: 'available'
},
fish6: {
name: 'Atlantic Salmon',
image: 'http://i.istockimg.com/file_thumbview_approve/56241842/5/stock-photo-56241842-salmon-fish.jpg',
desc: 'This flaky, oily salmon is truly the king of the sea. Bake it, grill it, broil it...as good as it gets!',
price: 1453,
status: 'available'
},
fish7: {
name: 'Oysters',
image: 'http://i.istockimg.com/file_thumbview_approve/58626682/5/stock-photo-58626682-fresh-oysters-on-a-black-stone-plate-top-view.jpg',
desc: 'A soft plump oyster with a sweet salty flavor and a clean finish.',
price: 2543,
status: 'available'
},
fish8: {
name: 'Mussels',
image: 'http://i.istockimg.com/file_thumbview_approve/40450406/5/stock-photo-40450406-steamed-mussels.jpg',
desc: 'The best mussels from the Pacific Northwest with a full-flavored and complex taste.',
price: 425,
status: 'available'
},
fish9: {
name: 'Jumbo Prawns',
image: 'http://i.istockimg.com/file_thumbview_approve/67121439/5/stock-photo-67121439-fresh-tiger-shrimp-on-ice-on-a-black-stone-table.jpg',
desc: 'With 21-25 two bite prawns in each pound, these sweet morsels are perfect for shish-kabobs.',
price: 2250,
status: 'available'
}
};