-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrecipes.json
More file actions
1897 lines (1871 loc) · 77 KB
/
Copy pathrecipes.json
File metadata and controls
1897 lines (1871 loc) · 77 KB
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"id": "Keto-Waffles",
"title": "Keto Waffles",
"image": "images/breakfast/keto/start.webp",
"prepTime": "10 mins",
"cookTime": "10 mins",
"servings": "2 - 4",
"description": "Crispy on the outside, fluffy inside — these easy Keto Waffles are made with almond flour and eggs for a low-carb, gluten-free breakfast ready in 20 minutes.",
"ingredients": [
"1 cup almond flour",
"1 tsp baking powder",
"1/4 tsp salt",
"1 tbsp erythritol or monk fruit sweetener (optional)",
"2 large eggs",
"2 tbsp melted butter or coconut oil",
"1/4 cup unsweetened almond milk",
"1/2 tsp vanilla extract",
"Nonstick spray or oil for waffle iron",
"Optional toppings: keto syrup, nut butter, berries"
],
"instructions": [
{
"step": 1,
"title": "Preheat Waffle Iron",
"description": "Preheat your waffle iron to medium heat and lightly grease with oil or nonstick spray.",
"name": "Nonstick Waffle Maker",
"affiliate_link": "https://amzn.to/4nLTIDa"
},
{
"step": 2,
"title": "Mix Dry Ingredients",
"description": "In a bowl, mix almond flour, baking powder, salt, and optional sweetener.",
"image": "images/breakfast/keto/inc.webp",
"name": "Measuring Spoons",
"affiliate_link": "https://amzn.to/44LRmM8",
"name1": "Set of Mixing Bowl & many more items",
"affiliate_link1": "https://amzn.to/4eMTFTt"
},
{
"step": 3,
"title": "Add Wet Ingredients",
"description": "Whisk in eggs, melted butter, almond milk, and vanilla until a smooth batter forms.",
"name": "Pack of 3 Silicon whisk",
"image": "images/breakfast/keto/mixing.webp",
"affiliate_link": "https://amzn.to/44qUfTy"
},
{
"step": 4,
"title": "Cook the Waffles",
"description": "Pour batter into waffle iron and cook for 3–4 minutes or until golden brown and firm.",
"image": "images/breakfast/keto/better.webp",
"name": "Waffle Iron",
"affiliate_link": "https://amzn.to/3TENJ5r"
},
{
"step": 5,
"title": "Serve and Top",
"description": "Let waffles cool slightly and serve with keto-friendly toppings like berries or syrup.",
"image": "images/breakfast/keto/s1.webp",
"name": "Pack of 3 Silicone Tongs ",
"affiliate_link": "https://amzn.to/44LRyLm",
"name1": "SET of Serving Plate",
"affiliate_link1": "https://amzn.to/44IQDuR"
}
],
"serving_and_storage": {
"serve": "Serve hot with keto syrup, nut butter, or berries.",
"store": "Store in the fridge for 3–4 days or freeze for 2 months. Reheat in toaster or oven.",
"image": "images/breakfast/keto/serve.webp"
},
"pro_tips": [
"Use a silicone spatula or tongs to avoid scratching the waffle iron.",
"Let cooked waffles rest on a wire rack to stay crisp.",
"Add a dash of cinnamon or cocoa powder for flavor."
],
"source": "ClickToCook.com",
"category": "breakfast"
},
{
"id": "Chocolate-Chip-Avocado-Muffins",
"title": "Chocolate Chip Avocado Muffins – Healthy Breakfast or Snack",
"image": "images/breakfast/choco/start.jpg",
"prepTime": "10 minutes",
"cookTime": "20–22 minutes",
"servings": "12 muffins",
"description": "Moist, fluffy, and made with heart-healthy avocado, these chocolate chip muffins are a delicious and nutritious choice for breakfast or a snack.",
"ingredients": [
"1 ripe avocado (mashed)",
"1/2 cup honey or maple syrup",
"2 large eggs",
"1/3 cup unsweetened almond milk (or milk of choice)",
"1 tsp vanilla extract",
"1 cup whole wheat flour",
"1/2 cup all-purpose flour (or use all whole wheat)",
"1/2 cup rolled oats (optional for texture)",
"1 tsp baking soda",
"1/2 tsp baking powder",
"1/4 tsp salt",
"1/2 tsp cinnamon (optional)",
"1/2 cup mini or regular dark chocolate chips",
"Optional: chopped walnuts or pecans"
],
"instructions": [
{
"step": 1,
"title": "Mash the Avocado",
"description": "Peel and pit the avocado. Mash it until smooth using a fork or a food processor to remove lumps.",
"image": "images/breakfast/choco/inc.jpg",
"name": "Potato Masher or Mini Food Processor",
"affiliate_link": "https://amzn.to/3H1w6df"
},
{
"step": 2,
"title": "Mix Wet Ingredients",
"description": "In a large bowl, whisk together the mashed avocado, honey (or maple syrup), eggs, almond milk, and vanilla extract until smooth.",
"image": "images/breakfast/choco/mixiii.jpg",
"name": "Set of 3 Balloon Whisk",
"affiliate_link": "https://amzn.to/4f2OgYJ"
},
{
"step": 3,
"title": "Mix Dry Ingredients",
"description": "In a separate bowl, combine the flours, oats, baking soda, baking powder, salt, and cinnamon (if using).",
"image": "images/breakfast/choco/mixinbowl.jpg",
"name": "SET of 3 Mixing Bowl ",
"affiliate_link": "https://amzn.to/4lEQiR7"
},
{
"step": 4,
"title": "Combine Wet and Dry",
"description": "Gradually stir the dry ingredients into the wet mixture until just combined. Don’t overmix or muffins will be dense.",
"name": "Silicone Spatula",
"affiliate_link": "https://amzn.to/44HxQ4u"
},
{
"step": 5,
"title": "Add Chocolate Chips",
"description": "Gently fold in the chocolate chips and optional nuts. Save a few chips to sprinkle on top before baking.",
"name": "Mixing Spoon",
"affiliate_link": "https://amzn.to/450ydGm"
},
{
"step": 6,
"title": "Fill Muffin Tin",
"description": "Line a muffin tin with paper liners or grease it lightly. Fill each cup 3/4 of the way with batter.",
"name": "12-Cup Muffin Tin",
"affiliate_link": "https://amzn.to/3IEJRix",
"name1": " Ice Cream Scoop",
"affiliate_link1": "https://amzn.to/3GZLPcH"
},
{
"step": 7,
"title": "Bake",
"description": "Bake at 350°F (175°C) for 20–22 minutes, or until a toothpick inserted comes out clean.",
"image": "images/breakfast/choco/bake.jpg",
"name": "Oven Thermometer (Optional)",
"affiliate_link": "https://amzn.to/46jjB7b"
},
{
"step": 8,
"title": "Cool and Serve",
"description": "Let muffins cool in the pan for 5 minutes, then transfer to a wire rack to cool completely before serving or storing.",
"image": "images/breakfast/choco/srv.jpg",
"name": "Cooling Rack",
"affiliate_link": "https://amzn.to/455aPY9"
}
],
"serving_and_storage": {
"serve": "Enjoy warm or at room temperature with a cup of coffee or smoothie.",
"store": "Store in an airtight container at room temperature for 2 days or refrigerate for up to 5 days. Freezer-friendly for 2 months.",
"image": "images/breakfast/choco/srv1.jpg"
},
"pro_tips": [
"Use a very ripe avocado for smoother texture and better sweetness balance.",
"Add a few chocolate chips on top of the batter for a bakery-style look.",
"For extra protein, add a tablespoon of chia seeds or flaxseed to the batter."
],
"source": "ClickToCook.com",
"category": "breakfast"
},
{
"id": "strawberry-muffins",
"title": "Strawberry Muffins",
"image": "images/b1 (1).png",
"prepTime": "10 mins",
"cookTime": "25 mins",
"servings": "6",
"description": "Delicious and fluffy muffins loaded with fresh strawberries.",
"ingredients": [
"2 cups all-purpose flour",
"2/3 cup organic cane sugar or coconut sugar",
"2 tsp baking powder",
"1/2 tsp baking soda",
"1/2 tsp salt",
"1 cup unsweetened almond milk",
"1 tbsp apple cider vinegar (or lemon juice)",
"1/3 cup vegetable oil or melted coconut oil",
"1 tsp pure vanilla extract",
"1 1/2 cups fresh strawberries, diced"
],
"instructions": [
{
"step": 1,
"title": "Prep the Oven & Muffin Pan",
"description": "Preheat oven to 375°F (190°C). Lightly grease muffin pan or line with silicone baking cups.",
"image": "images/breakfast/muffins/final.jpg",
"name": "Nonstick Muffin Pan – 12 Cup",
"affiliate_link": "https://amzn.to/4ltOIkA"
},
{
"step": 2,
"title": "Make Vegan Buttermilk",
"description": "Combine almond milk and apple cider vinegar in a bowl. Stir and let sit for 5 minutes to curdle slightly.",
"image": "images/breakfast/muffins/mixing.jpg",
"name": "Mixing Bowls – Nested Set",
"affiliate_link": "https://amzn.to/45Mgswq"
},
{
"step": 3,
"title": "Mix the Dry Ingredients",
"description": "In a large mixing bowl, sift and whisk together flour, sugar, baking powder, baking soda, and salt.",
"image": "images/breakfast/muffins/final.jpg",
"name": "Silicone Spatula Set",
"affiliate_link": "https://amzn.to/4lu060B"
},
{
"step": 4,
"title": "Mix the Wet Ingredients",
"description": "In another bowl, mix prepared vegan buttermilk, oil, and vanilla extract.",
"image": "images/breakfast/muffins/final1.jpg",
"name": "Fine Mesh Sifter",
"affiliate_link": "https://amzn.to/44tDllN"
},
{
"step": 5,
"title": "Combine Wet & Dry",
"description": "Pour the wet ingredients into the dry ingredients. Mix gently until just combined. Do not overmix."
},
{
"step": 6,
"title": "Fold in the Strawberries",
"description": "Fold in the diced strawberries using a spatula. Make sure they are dry before adding."
},
{
"step": 7,
"title": "Fill the Muffin Cups",
"description": "Scoop batter into muffin cups, filling each about 3/4 full."
},
{
"step": 8,
"title": "Bake",
"description": "Bake for 22–25 minutes until a toothpick inserted in the center comes out clean."
},
{
"step": 9,
"title": "Cool",
"description": "Let muffins cool in the pan for 5 minutes, then transfer to a cooling rack.",
"name": "Strawberry Huller & Dicer Tool",
"affiliate_link": "https://amzn.to/4exeiD1"
}
],
"serving_and_storage": {
"serve": "Serve warm or at room temperature.",
"store": "Store in an airtight container at room temperature for 2–3 days, or refrigerate up to 5 days. Freeze up to 2 months.",
"image": "images/breakfast/muffins/serving1.jpg"
},
"pro_tips": [
"Sprinkle sugar on top before baking for a crisp top.",
"Swap strawberries for blueberries or raspberries for variation.",
"Use frozen berries straight from the freezer, dusted in flour."
],
"source": "ClickToCook.com",
"category": "breakfast"
},
{
"id": "Baked-Pumpkin-Oatmeal-Cups",
"title": "Baked Pumpkin Oatmeal Cups",
"image": "images/lunch/rolls/1.jpg",
"prepTime": "10 mins",
"cookTime": "25 mins",
"servings": "10 - 12",
"description": "Soft, spiced, and naturally sweet baked pumpkin oatmeal cups that are perfect for meal prep and on-the-go breakfasts. Vegan and gluten-free.",
"ingredients": [
"2 cups rolled oats (gluten-free if needed)",
"1 tsp baking powder",
"1 tsp cinnamon",
"1/2 tsp pumpkin pie spice (or 1/4 tsp each nutmeg & cloves)",
"1/4 tsp salt",
"1 cup pumpkin puree",
"1/4 cup maple syrup",
"1 cup plant milk (like almond or oat)",
"1 tsp vanilla extract",
"2 tbsp oil or nut butter (optional)",
"Optional: 1/4 cup chocolate chips or chopped nuts"
],
"instructions": [
{
"step": 1,
"title": "Preheat Oven and Prepare Pan",
"description": "Preheat oven to 350°F (175°C). Grease or line a 12-cup muffin pan with liners.",
"name": "12-Cup Muffin Pan",
"affiliate_link": "https://amzn.to/4nH4k6j",
"name1": "24 Pieces of Silicone Liners",
"affiliate_link1": "https://amzn.to/3GGBQJh"
},
{
"step": 2,
"title": "Mix Dry Ingredients",
"description": "In a large bowl, whisk together oats, baking powder, cinnamon, pumpkin spice, and salt.",
"name": "Set of 12 items with Mixing Bowl",
"affiliate_link": "https://amzn.to/3GvQN0M",
"name1": "Set of 6 Measuring Spoons",
"affiliate_link1": "https://amzn.to/4lGs3Sq"
},
{
"step": 3,
"title": "Add Wet Ingredients",
"description": "Stir in pumpkin puree, maple syrup, plant milk, vanilla, and oil or nut butter. Mix until combined.",
"name": "4 pieces of Silicone Spatula",
"affiliate_link": "https://amzn.to/4lmxwxQ"
},
{
"step": 4,
"title": "Fill the Muffin Cups",
"description": "Scoop batter into muffin cups, filling each about 3/4 full. Add optional toppings if desired.",
"name": "Set of 3 Cookie Scoop",
"affiliate_link": "https://amzn.to/40azHwa"
},
{
"step": 5,
"title": "Bake and Cool",
"description": "Bake for 25–28 minutes until tops are set and edges are golden. Cool in pan before transferring to rack.",
"image": "images/lunch/rolls/2.jpg",
"name": "Set of 2 Cooling Rack",
"affiliate_link": "https://amzn.to/46EmH5N"
}
],
"serving_and_storage": {
"serve": "Enjoy warm or chilled with a drizzle of nut butter or maple syrup.",
"store": "Store in fridge up to 5 days or freeze for 2 months in airtight containers.",
"image": "images/lunch/rolls/serve.jpg"
},
"pro_tips": [
"Use silicone muffin liners for easy release.",
"Add chopped apples or raisins for variation.",
"Drizzle almond butter or vegan yogurt on top for extra richness."
],
"source": "ClickToCook.com",
"category": "breakfast"
},
{
"id": "Banana-pancakes",
"title": " Banana Oatmeal Pancakes",
"image": "images/b1 (2).png",
"prepTime": "10 mins",
"cookTime": "5 mins",
"servings": "2",
"description": " These Banana Oatmeal Pancakes are a delicious and healthy breakfast option. Made with simple ingredients, they are vegan, gluten-free, and packed with flavor.",
"ingredients": [
"1 cup rolled oats (gluten-free if needed)",
"1 medium ripe banana",
"3/4 cup unsweetened almond milk (or any plant milk)",
"1 tbsp maple syrup (optional)",
"1 tbsp ground flaxseed",
"1 tsp baking powder",
"1/2 tsp cinnamon",
"1/2 tsp vanilla extract",
"Pinch of salt",
"Coconut oil or vegan butter for cooking"
],
"instructions": [
{
"step": 1,
"title": "Blend the Dry Base",
"description": "Add 1 cup of rolled oats to a high-speed blender or food processor and blend until it becomes a fine flour.",
"image": "images/breakfast/vegetable-sandwich/mkix.png",
"name": "High-Speed Blender or Food Processor",
"affiliate_link": "https://amzn.to/3TUNdQK"
},
{
"step": 2,
"title": "Prepare the Batter",
"description": "Add banana, almond milk, flaxseed, maple syrup, baking powder, cinnamon, vanilla, and salt to the oat flour in the blender. Blend until smooth. Let batter rest 5 minutes to thicken.",
"name": "Masher or Fork",
"affiliate_link": "https://amzn.to/4lHpDmF"
},
{
"step": 3,
"title": "Heat the Pan",
"description": "Heat a nonstick skillet or griddle over medium heat. Lightly brush with coconut oil or vegan butter.",
"image": "images/breakfast/vegetable-sandwich/mix1.png",
"name": "Oil Brush or Dispenser",
"affiliate_link": "https://amzn.to/40DaCdd"
},
{
"step": 4,
"title": "Cook the Pancakes",
"description": "Pour 1/4 cup of batter per pancake onto the skillet. Cook for 2–3 minutes until bubbles form and edges firm. Flip and cook for 1–2 minutes more.",
"name": "Nonstick Skillet or Griddle",
"affiliate_link": "https://amzn.to/3TmA5Uo"
},
{
"step": 5,
"title": "Repeat and Serve",
"description": "Repeat until all batter is used. Serve pancakes warm with banana slices, maple syrup, nut butter, or berries.",
"image": "images/breakfast/vegetable-sandwich/show.jpg",
"name": "Measuring Cups & Spoons Set",
"affiliate_link": "https://amzn.to/4lu0FHc"
}
],
"serving_and_storage": {
"serve": "Serve warm with your favorite toppings.",
"store": "Refrigerate up to 3 days in an airtight container or freeze with parchment between layers.",
"image": "images/breakfast/vegetable-sandwich/showing.jpg"
},
"pro_tips": [
"Add vegan chocolate chips to the batter for a treat.",
"Mix in a scoop of vegan protein powder for a protein boost.",
"Thin the batter slightly with more milk for thinner pancakes."
],
"source": "ClickToCook.com",
"category": "breakfast"
},
{
"id": "Avocado-Toast",
"title": "Avocado Toast with Egg ",
"image": "images/b1 (3).png",
"prepTime": "10 mins",
"cookTime": " 5 mins",
"servings": "1",
"description": " Creamy avocado spread on toasted bread, topped with a perfectly poached egg.",
"ingredients": [
"2 slices of whole grain or sourdough bread",
"1 ripe avocado",
"2 large eggs",
"1 tsp fresh lemon juice",
"Salt and black pepper to taste",
"Red pepper flakes",
"Everything bagel seasoning",
"Feta cheese",
"Microgreens",
"Cherry tomatoes",
"Olive oil drizzle"
],
"instructions": [
{
"step": 1,
"title": "Toast the Bread",
"description": "Toast the bread slices in a toaster or toaster oven until golden brown and crispy.",
"image": "images/breakfast/Avocado-Toast/process.png",
"name": "4-Slot Toaster or Toaster Oven",
"affiliate_link": "https://amzn.to/3Ic5JBv"
},
{
"step": 2,
"title": "Mash the Avocado",
"description": "Scoop the avocado into a bowl, add lemon juice, salt, and pepper. Mash with a fork until creamy but slightly chunky.",
"image": "images/breakfast/Avocado-Toast/garnishing.png",
"name": "Serrated Bread Knife",
"affiliate_link": "https://amzn.to/3I88y6J"
},
{
"step": 3,
"title": "Cook the Eggs",
"description": "Cook the eggs to your preference (fried, poached, or boiled) and season with salt and pepper.",
"image": "images/breakfast/Avocado-Toast/garni3.png",
"name": "Nonstick Frying Pan or Skillet",
"affiliate_link": "https://amzn.to/4l54Fy1"
},
{
"step": 4,
"title": "Assemble the Toast",
"description": "Spread mashed avocado on toasted bread. Top with cooked egg and optional toppings like red pepper flakes or feta.",
"image": "images/breakfast/Avocado-Toast/garni1.png",
"name": "Silicone Spatula",
"affiliate_link": "https://amzn.to/40ypTfn"
}
],
"serving_and_storage": {
"serve": "Best fresh, but cooked eggs can be made ahead and gently reheated.",
"store": " Store mashed avocado with lemon juice in the fridge for 1 day.",
"image": "images/breakfast/Avocado-Toast/last.jpg"
},
"pro_tips": [
"Use ripe avocados for best texture and flavor.",
"Add cucumber or radish slices for extra crunch.",
"Top with smoked salmon or sautéed greens to make it more filling."
],
"source": "ClickToCook.com",
"category": "breakfast"
},
{
"id": "Italian-Sandwich",
"title": "Italian Sandwich with Basil Pesto ",
"image": "images/breakfast/italian-sandwich/start.jpg",
"prepTime": " 15 mins",
"cookTime": " 5 mins",
"servings": " 2",
"description": " A classic Italian sandwich with fresh mozzarella, tomatoes, and basil pesto on ciabatta bread.",
"ingredients": [
"1 small ciabatta loaf or 2 pieces of baguette",
"2–3 tbsp basil pesto",
"1 medium ripe tomato, sliced",
"4–6 slices fresh mozzarella cheese",
"A handful of fresh basil leaves",
"Balsamic glaze",
"Olive oil",
"Salt and pepper to taste",
"Arugula (for peppery flavor)"
],
"instructions": [
{
"step": 1,
"title": "Slice the Bread",
"description": "Slice the ciabatta or baguette horizontally to make a sandwich base. Toast lightly if desired.",
"name": "Serrated Bread Knife",
"affiliate_link": "https://amzn.to/4lu0PhM"
},
{
"step": 2,
"title": "Spread the Pesto",
"description": "Spread basil pesto evenly on the cut sides of the bread using a spatula or spreader.",
"image": "images/breakfast/italian-sandwich//pest.jpg",
"name": "Tomato Slicer or Sharp Chef’s Knife",
"affiliate_link": "https://amzn.to/3IclAjC"
},
{
"step": 3,
"title": "Layer the Ingredients",
"description": "Layer with mozzarella slices, tomato slices (seasoned with salt and pepper), basil leaves, and optional arugula or drizzle of balsamic.",
"image": "images/breakfast/italian-sandwich/garnishing.jpg",
"name": "Tomato Slicer or Sharp Chef’s Knife",
"affiliate_link": "https://amzn.to/3IclAjC"
},
{
"step": 4,
"title": "Close & Toast (Optional)",
"description": "Close the sandwich and toast it in a panini press or skillet for 2–3 minutes per side until golden and melty.",
"image": "images/breakfast/italian-sandwich/last.jpg",
"name": "Pesto Spreader or Silicone Spatula",
"affiliate_link": "https://amzn.to/4kkZKYq"
},
{
"step": 5,
"title": "Serve",
"description": "Slice in half and serve immediately with a side of chips or salad.",
"image": "images/breakfast/italian-sandwich/last1.jpg",
"name": "Cheese Slicer or Mozzarella Knife",
"affiliate_link": "https://amzn.to/4eAid2f"
}
],
"serving_and_storage": {
"serve": "Best when fresh. If prepping ahead, add tomatoes just before eating to avoid sogginess.",
"store": "Wrap tightly and store up to 24 hours in the refrigerator.",
"image": "images/breakfast/italian-sandwich/last.jpg"
},
"pro_tips": [
"Use heirloom or vine-ripened tomatoes for best flavor.",
"Sprinkle flaky salt on the tomato slices to enhance sweetness.",
"Add grilled veggies or avocado to make it more filling."
],
"source": "ClickToCook.com",
"category": "breakfast"
},
{
"id": "Cottage-Cheese-Egg-Salad",
"title": "Cottage Cheese Egg Salad",
"image": "images/lunch/egg/start.jpg",
"prepTime": "10 mins",
"cookTime": "10 mins",
"servings": "2 - 3",
"description": "A creamy, protein-packed twist on classic egg salad made with cottage cheese instead of mayo. Light, satisfying, and perfect for sandwiches, wraps, or bowls.",
"ingredients": [
"4 large eggs",
"1/2 cup cottage cheese (full-fat or low-fat)",
"1/4 tsp salt",
"1/4 tsp black pepper",
"1 tsp mustard (Dijon or yellow)",
"Optional: 1/4 tsp paprika",
"Optional: 1 tsp lemon juice or pickle juice",
"Optional: chopped celery, green onions, herbs (dill, parsley), or everything bagel seasoning"
],
"instructions": [
{
"step": 1,
"title": "Boil the Eggs",
"description": "Place eggs in a saucepan, cover with water, and bring to a boil. Once boiling, cover and remove from heat. Let sit for 10–12 minutes.",
"image": "images/lunch/egg/inc.jpg",
"name": "Saucepan with Lid",
"affiliate_link": "https://amzn.to/4lp5phA"
},
{
"step": 2,
"title": "Cool and Peel",
"description": "Transfer eggs to a bowl of ice water to cool for 5 minutes. Then peel and set aside.",
"name": "Mixing Bowl",
"affiliate_link": "https://amzn.to/40liiRk"
},
{
"step": 3,
"title": "Chop the Eggs",
"description": "Chop the boiled eggs to your desired texture and add to a mixing bowl.",
"image": "images/lunch/egg/cuttingeggs.jpg",
"name": "Egg Slicer or Knife",
"affiliate_link": "https://amzn.to/4nTaTCK"
},
{
"step": 4,
"title": "Add Cottage Cheese",
"description": "Add 1/2 cup cottage cheese to the chopped eggs.",
"image": "images/lunch/egg/mix1.jpg",
"name": "Measuring Cup",
"affiliate_link": "https://amzn.to/44M6rgw"
},
{
"step": 5,
"title": "Season the Mixture",
"description": "Add salt, pepper, mustard, and any optional ingredients like paprika or lemon juice. Stir gently to combine.",
"image": "images/lunch/egg/garnish.jpg",
"name": "Silicone Spatula",
"affiliate_link": "https://amzn.to/3GHrqcw"
},
{
"step": 6,
"title": "Serve and Enjoy",
"description": "Serve in lettuce wraps, on toast, or in a sandwich. Store leftovers in the fridge up to 3 days.",
"image": "images/lunch/egg/serve.jpg",
"name": "Serving Plate or Container",
"affiliate_link": "https://amzn.to/3GNoSJK"
}
],
"serving_and_storage": {
"serve": "Best served cold on toast, crackers, in lettuce wraps, or with veggies.",
"store": "Refrigerate in an airtight container for up to 3 days.",
"image": "images/lunch/egg/serv1.jpg"
},
"pro_tips": [
"Use full-fat cottage cheese for the creamiest texture.",
"Egg slicers make chopping super quick and even.",
"For extra flavor, mix in chopped pickles or herbs."
],
"source": "ClickToCook.com",
"category": "lunch"
},
{
"id": "Buffalo Tofu Wrap",
"title": "Buffalo Tofu Wrap –Totally Vegan!",
"image": "images/lunch/buffalo/buffalo-tofu-wrap-2.jpg",
"prepTime": "10 mins",
"cookTime": "25 mins",
"servings": "6",
"description": "If you're craving something spicy, protein-packed, and satisfying, Perfect for lunch, dinner.",
"ingredients": [
"1 block (14 oz) extra-firm tofu,pressed",
"1 tbsp olive oil",
"1 tbsp cornstarch (for extra crispiness)",
"½ tsp garlic powder",
"½ tsp smoked paprika",
"Salt and pepper to taste",
"¼ cup buffalo sauce (use vegan-friendly)",
"FOR WRAP:-",
" 2–3 large flour tortillas (or whole wheat wraps)",
"1 cup shredded lettuce",
"½ cup diced tomatoes",
" ½ cup shredded carrots",
"¼ cup thinly sliced red onions",
" 1 avocado, sliced (optional)",
" 2–3 tbsp vegan ranch dressing"
],
"instructions": [
{
"step": 1,
"title": "Press the Tofu",
"description": "Why press tofu? \n Tofu is packed in water, and before cooking, it’s essential to remove as much moisture as possible. Pressing helps the tofu become firmer, allowing it to absorb flavors better and crisp up when cooked. \n How to press it: \n Tofu press method: Place the tofu block in a tofu press, tighten, and let it sit for 15–20 minutes. \n Manual method: Wrap tofu in a clean kitchen towel or a few paper towels. Place it on a plate and set something heavy on top (like a skillet or a book). Let it press for 15–20 minutes.Pro tip: The longer you press, the better the texture—especially for stir-fries or pan-frying",
"image": "images/lunch/buffalo/chopped-tofu.jpg",
"name": "Tofu Press",
"affiliate_link": "https://amzn.to/4eG7V0w"
},
{
"step": 2,
"title": "Cook the Tofu",
"description": "Pan-fry tofu in a nonstick skillet for 2–3 minutes per side until golden and crispy, or air fry at 375°F for 12–15 minutes",
"name": "Chef’s Knife & Cutting Board",
"affiliate_link": "https://amzn.to/3I94qU6"
},
{
"step": 3,
"title": "Make the Buffalo Sauce",
"description": "Whisk together hot sauce, vegan butter, and garlic powder. Toss cooked tofu in the sauce until fully coated.",
"image": "images/lunch/buffalo/baked-buffalo1-tofu.jpg",
"name": "Mixing Bowl Set",
"affiliate_link": "https://amzn.to/45TQJSU"
},
{
"step": 4,
"title": "Assemble the Wrap",
"description": "On a tortilla, layer lettuce, carrots, avocado, buffalo tofu, and other desired toppings. Drizzle with vegan ranch.",
"image": "images/lunch/buffalo/buffalo-tofu-wrap-2.jpg",
"name": "Nonstick Skillet or Air Fryer",
"affiliate_link": "https://amzn.to/3G9yAGd"
},
{
"step": 5,
"title": "Roll It Up",
"description": "Fold in the sides and roll into a tight wrap. Slice in half and serve.",
"image": "images/lunch/buffalo/buffalo-tofu-wrap-1.jpg",
"name": "Oil Sprayer or Silicone Brush",
"affiliate_link": "https://amzn.to/4kqClFh",
"name1": "Wrap Roller or Silicone Mat",
"affiliate_link1": "https://amzn.to/3TTEkHa"
}
],
"serving_and_storage": {
"serve": "Serve with sweet potato fries, celery sticks, or a side salad.",
"store": "Store tofu and veggies separately up to 3 days,Reheat tofu in skillet or air fryer before assembling wrap,Assemble wrap just before eating to avoid sogginess.",
"image": "images/lunch/buffalo/start.jpg"
},
"pro_tips": [
"Mix buffalo sauce with vegan mayo for a milder version.",
"Add chickpeas or quinoa for extra texture and protein.",
"Use gluten-free or spinach tortillas for variation."
],
"source": "ClickToCook.com",
"category": "lunch"
},
{
"id": "Cheesy Chili Mac",
"title": "Cheesy Chili Mac– Comfort Food",
"image": "images/lunch/chili-mac/last1.jpg",
"prepTime": "10 mins",
"cookTime": "20 mins",
"servings": "4 to 6 servings",
"description": "a comfort food classic that’s a cross between hearty chili and cheesy macaroni. It’s perfect for weeknight dinners and a big hit with families.",
"ingredients": [
"1 tbsp olive oil",
"1 medium onion, diced",
"2 cloves garlic, minced",
"1 lb ground beef (or plant-based)",
"1 tbsp chili powder",
"1 tsp cumin",
"1/2 tsp paprika",
"1/4 tsp black pepper",
"1/2 tsp salt",
"1 can (15 oz) tomato sauce",
"1 can (15 oz) kidney beans, rinsed",
"1.5 cups beef or vegetable broth",
"2 cups elbow macaroni, uncooked",
"1.5 cups shredded cheddar cheese"
],
"instructions": [
{
"step": 1,
"title": "Sauté Aromatics",
"description": "Heat oil in a large skillet. Cook onion until softened, then add garlic and cook 1 more minute.",
"image": "images/lunch/chili-mac/mixHow-to-make-Chili-Mac-5..jpg",
"name": "Non stick skillet",
"affiliate_link": "https://amzn.to/45Nx8nh"
},
{
"step": 2,
"title": "Brown the Meat",
"description": "Add ground beef and cook until browned, breaking it up as it cooks.",
"image": "images/lunch/chili-mac/mixmake-Chili-Mac-1_1..jpg",
"name": "Sillicone Spatula",
"affiliate_link": "https://amzn.to/3TUNuDg"
},
{
"step": 3,
"title": "Add Seasonings",
"description": "Stir in chili powder, cumin, paprika, salt, and pepper. Cook 1 minute.",
"name": "Measuring Cups & Spoons Set",
"affiliate_link": "https://amzn.to/3TVnEyY"
},
{
"step": 4,
"title": "Add Sauce and Beans",
"description": "Stir in tomato sauce, beans, and broth. Mix well.",
"image": "images/lunch/chili-mac/step4.jpg"
},
{
"step": 5,
"title": "Add Macaroni",
"description": "Add uncooked macaroni. Cover and simmer 10–12 minutes until pasta is cooked.",
"image": "images/lunch/chili-mac/step5.jpg"
},
{
"step": 6,
"title": "Stir in Cheese",
"description": "Turn off heat and stir in shredded cheese until melted.",
"image": "images/lunch/chili-mac/mixHow-to-make-Chili-Mac-4..jpg",
"name": "Box grater",
"affiliate_link": "https://amzn.to/3I9qaPy"
},
{
"step": 7,
"title": "Serve",
"description": "Scoop into bowls and garnish with more cheese or toppings.",
"image": "images/lunch/chili-mac/last.jpg"
}
],
"serving_and_storage": {
"serve": "Serve hot in bowls with extra shredded cheese, sour cream, or jalapeños if desired.",
"store": "Store leftovers in an airtight container in the fridge for up to 4 days. Reheat on the stove with a splash of broth.",
"image": "images/lunch/chili-mac/last1.jpg"
},
"pro_tips": [
"Substitute ground beef with plant-based crumbles for a vegetarian version.",
"Add a dash of hot sauce for extra spice.",
"Shred your own cheddar for best melting quality."
],
"source": "ClickToCook.com",
"category": "lunch"
},
{
"id": "Stuffed Sweet Potatoes",
"title": "Stuffed Sweet Potatoes ",
"image": "images/lunch/potatoes/last.jpg",
"prepTime": "15 mins",
"cookTime": " 45 mins",
"servings": "2 - 3",
"description": " These roasted sweet potatoes are loaded with a flavorful mix of black beans, corn, avocado, and cheese. ",
"ingredients": [
"2 large sweet potatoes",
"1 tbsp olive oil",
"Salt and pepper to taste",
"1 cup cooked black beans",
"1/2 cup corn kernels",
"1/2 cup diced red bell pepper",
"1/4 cup chopped red onion",
"1 small avocado, diced",
"1 tbsp lime juice",
"1/4 tsp ground cumin",
"Greek yogurt or sour cream (optional)",
"Chopped cilantro (optional)",
"Hot sauce (optional)"
],
"instructions": [
{
"step": 1,
"title": "Bake the Sweet Potatoes",
"description": "Preheat oven to 400°F (200°C). Prick sweet potatoes with a fork, place on parchment-lined baking sheet, drizzle with olive oil, and bake for 45–50 minutes until tender.",
"image": "images/lunch/potatoes/roast-stp1.jpg",
"name": "Baking tray",
"affiliate_link": "https://amzn.to/44fmTqJ"
},
{
"step": 2,
"title": "Prepare the Filling",
"description": "Mix black beans, corn, bell pepper, onion, avocado, lime juice, and cumin in a bowl. Season with salt to taste.",
"image": "images/lunch/potatoes/stp2.jpg",
"name": "Mixing bowl",
"affiliate_link": "https://amzn.to/40yqcqx"
},
{
"step": 3,
"title": "Slice and Stuff",
"description": "Slice baked sweet potatoes lengthwise, mash the inside slightly, and stuff with the bean mixture.",
"image": "images/lunch/potatoes/stp3.jpg",
"name": "Potato masher or fork",
"affiliate_link": "https://amzn.to/46s5Bbd"
},
{
"step": 4,
"title": "Add Toppings and Serve",
"description": "Top with Greek yogurt, cilantro, and hot sauce. Serve warm.",
"image": "images/lunch/potatoes/last1.jpg",
"name": "Chef’s knife",
"affiliate_link": "https://amzn.to/3ToRM5L"
}
],
"serving_and_storage": {
"serve": "Serve warm topped with yogurt, herbs, or hot sauce as desired.",
"store": "Store in an airtight container in the fridge for up to 3 days. Reheat in oven or microwave.",
"image": "images/lunch/potatoes/start or last.jpg"
},
"pro_tips": [
"Use canned black beans to save time.",
"Add chopped jalapeños for extra heat.",
"For meal prep, bake potatoes ahead of time and store the filling separately."
],
"source": "ClickToCook.com",
"category": "lunch"
},
{
"id": "Jackfruit-Wings",
"title": "Jackfruit Wings: The Plant-Based Powerhouse",
"image": "images/lunch/jackfruit/stp5.webp",
"prepTime": "20 mins",
"cookTime": "30 mins",
"servings": "2 - 4",
"description": "These smoky, crispy, and saucy Jackfruit Wings are baked to perfection and tossed in your favorite BBQ or buffalo sauce — making you forget all about chicken. 100% plant-powered and crowd-approved!",
"ingredients": [
"1 can (20 oz) young green jackfruit in brine or water",
"1/2 cup chickpea flour (or all-purpose)",
"1/4 cup cornstarch",
"1 tsp garlic powder",
"1 tsp smoked paprika",
"1/2 tsp onion powder",
"1/8 tsp cayenne pepper (optional)",
"Salt and pepper to taste",
"1/2 cup plant-based milk (almond, soy, etc.)",
"1 tbsp neutral oil (avocado or canola)",
"1/2 cup BBQ or buffalo sauce",
"1 tsp maple syrup (optional)"
],
"instructions": [
{
"step": 1,
"title": "Prepare the Jackfruit",
"description": "Drain and rinse the jackfruit. Pat dry and shred it with hands or forks. Remove tough core bits if desired.",
"image": "images/lunch/jackfruit/stp1.webp",
"name": "Shredding forks",
"affiliate_link": "https://amzn.to/4ey0GHU"
},
{
"step": 2,
"title": "Make the Batter",
"description": "In a bowl, mix chickpea flour, cornstarch, spices, plant milk, and oil until smooth. Toss the jackfruit in this batter and coat well.",
"image": "images/lunch/jackfruit/stp2.webp",
"name": "Mixing bowls",
"affiliate_link": "https://amzn.to/4lENenZ"
},
{
"step": 3,
"title": "Bake the Jackfruit",
"description": "Preheat oven to 425°F. Place coated jackfruit on a parchment-lined tray. Bake for 20 minutes, flipping halfway, until golden and crispy.",
"image": "images/lunch/jackfruit/stp3.webp",
"name": "Baking tray",
"affiliate_link": "https://amzn.to/4nvCObV"
},
{
"step": 4,
"title": "Toss in Sauce",
"description": "Warm the BBQ or buffalo sauce with maple syrup. Toss baked jackfruit in sauce until fully coated.",
"image": "images/lunch/jackfruit/stp4.webp",
"name": "Silicone basting brush",
"affiliate_link": "https://amzn.to/3TTEuyg"
},
{
"step": 5,
"title": "Bake Again & Serve",
"description": "Return coated jackfruit to the tray and bake for 10 more minutes. Serve hot with vegan ranch and veggies.",
"image": "images/lunch/jackfruit/stp5.webp"
}
],
"serving_and_storage": {
"serve": "Serve hot with vegan ranch, celery, and carrot sticks. Great for parties or weeknight comfort meals.",
"store": "Store leftovers in an airtight container in the fridge for 3 days. Reheat in oven or air fryer for crispiness.",
"image": "images/lunch/jackfruit/stp5.webp"
},
"pro_tips": [
"Use parchment paper or a silicone mat to prevent sticking and ease cleanup.",
"Toss jackfruit in sauce only after the first bake for best texture.",
"Try it with Korean gochujang sauce for a spicy twist!"
],
"source": "ClickToCook.com",
"category": "lunch"
},
{
"id": "Easy-Vegan-Mexican-Rice",
"title": "Easy Vegan Mexican Rice",
"image": "images/lunch/rice/first.webp",
"prepTime": "10 mins",
"cookTime": "25 mins",
"servings": "4 - 6",
"description": "A quick and flavorful one-pot Mexican rice made with simple ingredients. Perfect as a side dish or light vegan main.",
"ingredients": [
"1 cup long-grain white rice",
"2 tablespoons oil",
"1 small onion, finely chopped",
"2 garlic cloves, minced",
"1/2 cup tomato puree or sauce",
"1/2 teaspoon cumin",
"1/2 teaspoon chili powder",
"Salt to taste",
"Pinch of turmeric (optional)",
"2 cups water or vegetable broth",
"Fresh cilantro and lime juice for garnish"
],
"instructions": [
{
"step": 1,
"title": "Rinse the Rice",
"description": "Rinse rice under cold water until water runs clear. Drain thoroughly.",