Reorganise adding recipe to plan
Some checks failed
Build and Deploy / build-and-push (push) Failing after 21s
Some checks failed
Build and Deploy / build-and-push (push) Failing after 21s
This commit is contained in:
@@ -187,6 +187,34 @@ export const INGREDIENTS = {
|
||||
pantryUnit: 'g',
|
||||
nutritionPer100g: { kcal: 654, protein: 15, fat: 65, carbs: 14 },
|
||||
},
|
||||
orzechy_laskowe: {
|
||||
id: 'orzechy_laskowe',
|
||||
name: 'Orzechy laskowe',
|
||||
category: 'suche',
|
||||
pantryUnit: 'g',
|
||||
nutritionPer100g: { kcal: 628, protein: 15, fat: 61, carbs: 17 },
|
||||
},
|
||||
orzechy_nerkowca: {
|
||||
id: 'orzechy_nerkowca',
|
||||
name: 'Orzechy nerkowca',
|
||||
category: 'suche',
|
||||
pantryUnit: 'g',
|
||||
nutritionPer100g: { kcal: 553, protein: 18, fat: 44, carbs: 30 },
|
||||
},
|
||||
migdaly: {
|
||||
id: 'migdaly',
|
||||
name: 'Migdały',
|
||||
category: 'suche',
|
||||
pantryUnit: 'g',
|
||||
nutritionPer100g: { kcal: 579, protein: 21, fat: 50, carbs: 22 },
|
||||
},
|
||||
orzechy_pekan: {
|
||||
id: 'orzechy_pekan',
|
||||
name: 'Orzechy pekan',
|
||||
category: 'suche',
|
||||
pantryUnit: 'g',
|
||||
nutritionPer100g: { kcal: 691, protein: 9, fat: 72, carbs: 14 },
|
||||
},
|
||||
truskawki: {
|
||||
id: 'truskawki',
|
||||
name: 'Truskawki',
|
||||
@@ -201,6 +229,20 @@ export const INGREDIENTS = {
|
||||
pantryUnit: 'g',
|
||||
nutritionPer100g: { kcal: 57, protein: 0.7, fat: 0.3, carbs: 14 },
|
||||
},
|
||||
banany: {
|
||||
id: 'banany',
|
||||
name: 'Banany',
|
||||
category: 'owoce',
|
||||
pantryUnit: 'g',
|
||||
nutritionPer100g: { kcal: 89, protein: 1.1, fat: 0.3, carbs: 23 },
|
||||
},
|
||||
jagody: {
|
||||
id: 'jagody',
|
||||
name: 'Jagody',
|
||||
category: 'owoce',
|
||||
pantryUnit: 'g',
|
||||
nutritionPer100g: { kcal: 44, protein: 0.7, fat: 0.4, carbs: 10 },
|
||||
},
|
||||
};
|
||||
|
||||
/** Porcja bazowa = 1; składniki przez ingredientId */
|
||||
@@ -383,9 +425,9 @@ export const RECIPES = {
|
||||
ingredients: [
|
||||
{ ingredientId: 'serek_wiejski', amount: 200, unit: 'g' },
|
||||
{ ingredientId: 'miod', amount: 10, unit: 'g' },
|
||||
{ ingredientId: 'orzechy_wloskie', amount: 50, unit: 'g' },
|
||||
{ ingredientId: 'truskawki', amount: 100, unit: 'g' },
|
||||
{ ingredientId: 'borowki_amerykanskie', amount: 80, unit: 'g' },
|
||||
{ ingredientId: 'orzechy_wloskie', amount: 50, unit: 'g', alternatives: ['orzechy_laskowe', 'orzechy_nerkowca', 'migdaly', 'orzechy_pekan'] },
|
||||
{ ingredientId: 'truskawki', amount: 100, unit: 'g', alternatives: ['banany'] },
|
||||
{ ingredientId: 'borowki_amerykanskie', amount: 80, unit: 'g', alternatives: ['jagody'] },
|
||||
],
|
||||
steps: [
|
||||
'Przełóż serek wiejski do miseczki.',
|
||||
|
||||
Reference in New Issue
Block a user