Skip to content

Commit 67990c8

Browse files
committed
Add mexican bowls recipe
1 parent be0dfaf commit 67990c8

2 files changed

Lines changed: 55 additions & 6 deletions

File tree

data/recipes.ts

Lines changed: 55 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { StaticImageData } from "next/image"
22
import blackBean from "../public/images/recipes/blackBean.png"
33
import peanutCouscous from "../public/images/recipes/peanutCouscous.png"
44
import poke from "../public/images/recipes/poke.png"
5+
import mexicanBowl from "../public/images/recipes/mexicanBowl.png"
56

67
export type Recipe = {
78
title: string
@@ -18,6 +19,7 @@ export const recipeData: Recipe[] = [
1819
title: "Black bean eggplant & tofu",
1920
sections: [
2021
{
22+
title: "Shop",
2123
lines: [
2224
"Makes 4 portions.",
2325
"- 1 large eggplant\n" +
@@ -43,12 +45,12 @@ export const recipeData: Recipe[] = [
4345
lines: [
4446
"Press/dry tofu.",
4547
"Chop tofu, eggplant & broccoli.",
46-
"Drain & prepare rice.",
48+
"Rinse & prepare rice.",
4749
"Prepare sauce in a medium sized bowl.",
4850
],
4951
},
5052
{
51-
title: "Cooking",
53+
title: "Cook",
5254
lines: [
5355
"Heat oil in a large pan over medium-high heat until hot.",
5456
"Add tofu to the pan and fry for 3-5 minutes until tofu crisps a bit, then remove it to a separate plate.",
@@ -66,6 +68,7 @@ export const recipeData: Recipe[] = [
6668
title: "Thai peanut couscous",
6769
sections: [
6870
{
71+
title: "Shop",
6972
lines: [
7073
"Makes 4 portions.",
7174
"- 1.5 cups pearl couscous\n" +
@@ -95,7 +98,7 @@ export const recipeData: Recipe[] = [
9598
],
9699
},
97100
{
98-
title: "Cooking",
101+
title: "Cook",
99102
lines: [
100103
"Heat oil in a large pan over high heat until hot.",
101104
"Fry chicken 5 minutes until mostly cooked (it'll finish cooking in the sauce). Remove it to a separate bowl.",
@@ -113,6 +116,7 @@ export const recipeData: Recipe[] = [
113116
title: "Poke",
114117
sections: [
115118
{
119+
title: "Shop",
116120
lines: [
117121
"Makes 4 portions.",
118122
"- 2 lbs fresh sushi-grade salmon\n" +
@@ -134,12 +138,13 @@ export const recipeData: Recipe[] = [
134138
lines: [
135139
"Remove salmon skin & chop into bite-sized cubes.",
136140
"Dice red onion.",
137-
"Combine fish, sugar, garlic, ginger, sesame oil, rice vinegar, and in large bowl and put in the fridge for 30 minutes.",
138-
"Drain & prepare rice.",
141+
"Combine fish, red onion, sugar, garlic, ginger, sesame oil, and rice vinegar in large bowl.",
142+
"Add enough soy sauce to cover fish. Put in the fridge for 30 minutes.",
143+
"Rinse & prepare rice.",
139144
],
140145
},
141146
{
142-
title: "Cooking",
147+
title: "Cook",
143148
lines: [
144149
"When rice is done cooking and fish is done marinating:",
145150
"Chop avocado and green onion.",
@@ -149,4 +154,48 @@ export const recipeData: Recipe[] = [
149154
],
150155
image: poke,
151156
},
157+
{
158+
title: "Mexican bowls",
159+
sections: [
160+
{
161+
title: "Shop",
162+
lines: [
163+
"Makes 4 portions.",
164+
"- 1 15oz can of black beans\n" + "- 1 onion\n" + "- 1 cup dry rice\n" + "- 1 sweet potato",
165+
"Any of:\n" +
166+
"- 2 avocados\n" +
167+
"- 1 red pepper\n" +
168+
"- Cheese \n" +
169+
"- Salsa \n" +
170+
"- Sour cream \n" +
171+
"- Jalapeno (fresh or pickled)\n",
172+
"Bean spice:",
173+
"- 1 tbsp cumin\n" + "- 1 tsp paprika\n" + "- 1 clove garlic or 1 tsp garlic powder\n" + "- 1 tbsp salt\n",
174+
],
175+
},
176+
{
177+
title: "Prep",
178+
lines: [
179+
"Peel & chop sweet potato into small cubes.",
180+
"Chop onion & red pepper.",
181+
"Open & drain beans.",
182+
"Rinse & prepare rice.",
183+
],
184+
},
185+
{
186+
title: "Cook",
187+
lines: [
188+
"Preheat oven to 425F.",
189+
"Spread sweet potatoes on a large baking sheet & coat with olive oil & salt. Put in oven for 15 minutes, then toss/flip the potato cubes, then do 15 more minutes.",
190+
"Heat oil in a pan over medium-high heat until hot.",
191+
"Fry onions 5 minutes until softened.",
192+
"Add peppers & fry until softened.",
193+
"Add beans & bean spice. Fry for a bit until beans are hot.",
194+
"Chop avocado. Grate cheese.",
195+
"Combine everything into bowls!. Finish with cheese, sour ceam, and salsa.",
196+
],
197+
},
198+
],
199+
image: mexicanBowl,
200+
},
152201
]
628 KB
Loading

0 commit comments

Comments
 (0)