|
| 1 | +const fruits = [ |
| 2 | + { |
| 3 | + name: 'bananas', |
| 4 | + image: '/images/anastasia-eremina-VI2rIoZUrks-unsplash.jpg', |
| 5 | + amountPer: '100 grams', |
| 6 | + nutrition: { |
| 7 | + Calories: 89, |
| 8 | + 'Total Fat': '0.3 g', |
| 9 | + Cholesterol: '0 mg', |
| 10 | + Sodium: '1 mg', |
| 11 | + Potassium: '358 mg', |
| 12 | + 'Total Carbohydrate': '23 g', |
| 13 | + Protein: '1.1 g' |
| 14 | + } |
| 15 | + }, |
| 16 | + { |
| 17 | + name: 'apples', |
| 18 | + image: '/images/tuqa-nabi-71JHj_t-kS0-unsplash.jpg', |
| 19 | + amountPer: '100 grams', |
| 20 | + nutrition: { |
| 21 | + Calories: 52, |
| 22 | + 'Total Fat': '0.2 g', |
| 23 | + Cholesterol: '0 mg', |
| 24 | + Sodium: '1 mg', |
| 25 | + Potassium: '107 mg', |
| 26 | + 'Total Carbohydrate': '14 g', |
| 27 | + Protein: '0.3 g' |
| 28 | + } |
| 29 | + }, |
| 30 | + { |
| 31 | + name: 'strawberries', |
| 32 | + image: '/images/olga-kudriavtseva-CL26_lT3Ygg-unsplash.jpg', |
| 33 | + amountPer: '100 grams', |
| 34 | + nutrition: { |
| 35 | + Calories: 33, |
| 36 | + 'Total Fat': '0.3 g', |
| 37 | + Cholesterol: '0 mg', |
| 38 | + Sodium: '1 mg', |
| 39 | + Potassium: '153 mg', |
| 40 | + 'Total Carbohydrate': '8 g', |
| 41 | + Protein: '0.7 g' |
| 42 | + } |
| 43 | + }, |
| 44 | + { |
| 45 | + name: 'grapes', |
| 46 | + image: '/images/gunter-hoffmann-LYaW8eq3mjs-unsplash.jpg', |
| 47 | + amountPer: '100 grams', |
| 48 | + nutrition: { |
| 49 | + Calories: 67, |
| 50 | + 'Total Fat': '0.4 g', |
| 51 | + Cholesterol: '0 mg', |
| 52 | + Sodium: '2 mg', |
| 53 | + Potassium: '191 mg', |
| 54 | + 'Total Carbohydrate': '17 g', |
| 55 | + Protein: '0.6 g' |
| 56 | + } |
| 57 | + }, |
| 58 | + { |
| 59 | + name: 'oranges', |
| 60 | + image: '/images/mae-mu-9002s2VnOAY-unsplash.jpg', |
| 61 | + amountPer: '100 grams', |
| 62 | + nutrition: { |
| 63 | + Calories: 47, |
| 64 | + 'Total Fat': '0.1 g', |
| 65 | + Cholesterol: '0 mg', |
| 66 | + Sodium: '0 mg', |
| 67 | + Potassium: '181 mg', |
| 68 | + 'Total Carbohydrate': '12 g', |
| 69 | + Protein: '0.9 g' |
| 70 | + } |
| 71 | + }, |
| 72 | + { |
| 73 | + name: 'watermelon', |
| 74 | + image: '/images/floh-maier-aFUHu9WNO3Q-unsplash.jpg', |
| 75 | + amountPer: '100 grams', |
| 76 | + nutrition: { |
| 77 | + Calories: 30, |
| 78 | + 'Total Fat': '0.2 g', |
| 79 | + Cholesterol: '0 mg', |
| 80 | + Sodium: '1 mg', |
| 81 | + Potassium: '112 mg', |
| 82 | + 'Total Carbohydrate': '8 g', |
| 83 | + Protein: '0.6 g' |
| 84 | + } |
| 85 | + }, |
| 86 | + { |
| 87 | + name: 'blueberries', |
| 88 | + image: '/images/davies-designs-studio-34lgO8_OO-o-unsplash.jpg', |
| 89 | + amountPer: '100 grams', |
| 90 | + nutrition: { |
| 91 | + Calories: 57, |
| 92 | + 'Total Fat': '0.3 g', |
| 93 | + Cholesterol: '0 mg', |
| 94 | + Sodium: '1 mg', |
| 95 | + Potassium: '77 mg', |
| 96 | + 'Total Carbohydrate': '14 g', |
| 97 | + Protein: '0,7 g' |
| 98 | + } |
| 99 | + } |
| 100 | +]; |
| 101 | + |
| 102 | +export const get = function () { |
| 103 | + return { |
| 104 | + body: { |
| 105 | + items: fruits |
| 106 | + } |
| 107 | + }; |
| 108 | +}; |
| 109 | + |
| 110 | +export { fruits }; |
0 commit comments