-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdb.json
3648 lines (3648 loc) · 123 KB
/
db.json
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
{
"cats": [
{
"id": 1,
"name": "Kristoffer",
"cost": 47.82,
"likes": 633,
"image": "/images/cat/cat-unsplash-1.jpg",
"thumb": "/images/cat/cat-unsplash-1-thumb.jpg",
"description": "Eveniet sed accusantium doloribus atque. Perferendis accusamus nemo accusamus debitis deserunt. Consequuntur animi nobis veniam. Nemo enim ratione odio soluta tempora placeat veritatis.",
"breed": "Peterbald",
"createdAt": 1670165980567
},
{
"id": 2,
"name": "Destiny",
"cost": 86.57,
"likes": 368,
"image": "/images/cat/cat-unsplash-2.jpg",
"thumb": "/images/cat/cat-unsplash-2-thumb.jpg",
"description": "Earum natus saepe. Deserunt dolorem totam voluptates enim dolorum hic. Sequi atque illo quae distinctio. Repellat et nam sapiente facilis.",
"breed": "Nebelung",
"createdAt": 1670165980567
},
{
"id": 3,
"name": "Emmalee",
"cost": 32.4,
"likes": 713,
"image": "/images/cat/cat-unsplash-3.jpg",
"thumb": "/images/cat/cat-unsplash-3-thumb.jpg",
"description": "Veritatis repellendus dolore eius. Quibusdam voluptates vero doloribus repellat nisi sit perferendis. Quod ad itaque. Ducimus aliquam corporis minus nemo est molestias. Nesciunt quis incidunt explicabo animi cupiditate quia rem occaecati eos.",
"breed": "Persian",
"createdAt": 1670165980567
},
{
"id": 4,
"name": "Rahul",
"cost": 57.37,
"likes": 634,
"image": "/images/cat/cat-unsplash-4.jpg",
"thumb": "/images/cat/cat-unsplash-4-thumb.jpg",
"description": "Incidunt at natus. Dignissimos a quas similique molestiae eligendi. Quasi placeat aperiam. Illum soluta eos ipsa dolorum natus ex molestias eaque accusantium. Unde nesciunt nihil sint. Expedita quis ut similique natus excepturi.",
"breed": "Birman",
"createdAt": 1670165980567
},
{
"id": 5,
"name": "Mercedes",
"cost": 53.08,
"likes": 37,
"image": "/images/cat/cat-unsplash-5.jpg",
"thumb": "/images/cat/cat-unsplash-5-thumb.jpg",
"description": "Accusantium non quidem quisquam vero eveniet. Consequuntur recusandae repudiandae velit accusamus. Voluptatibus alias quia vel inventore eius ducimus atque odit accusamus. Veritatis voluptatibus accusantium voluptatibus cumque tenetur.",
"breed": "Peterbald",
"createdAt": 1670165980568
},
{
"id": 6,
"name": "Eloy",
"cost": 52.47,
"likes": 429,
"image": "/images/cat/cat-unsplash-6.jpg",
"thumb": "/images/cat/cat-unsplash-6-thumb.jpg",
"description": "A illum fugiat dolores voluptatum non possimus libero impedit. Deleniti ipsa porro laborum natus error. Non deleniti in inventore maiores fuga repudiandae ea quam nulla.",
"breed": "Kurilian Bobtail",
"createdAt": 1670165980568
},
{
"id": 7,
"name": "Derrick",
"cost": 88.6,
"likes": 535,
"image": "/images/cat/cat-unsplash-7.jpg",
"thumb": "/images/cat/cat-unsplash-7-thumb.jpg",
"description": "Cum ducimus quis possimus. Temporibus commodi esse. Accusantium asperiores dolor assumenda.",
"breed": "Oriental",
"createdAt": 1670165980568
},
{
"id": 8,
"name": "Roosevelt",
"cost": 33.85,
"likes": 238,
"image": "/images/cat/cat-unsplash-8.jpg",
"thumb": "/images/cat/cat-unsplash-8-thumb.jpg",
"description": "Voluptas quae aspernatur assumenda distinctio harum. Rem id molestiae quas quas rerum animi. Expedita dolor a debitis vitae culpa neque blanditiis inventore assumenda. Quasi magnam necessitatibus debitis aperiam suscipit consequatur deserunt. Quibusdam aliquam blanditiis expedita aliquid suscipit voluptatum doloribus amet. Quam voluptas nulla earum laboriosam.",
"breed": "British Shorthair",
"createdAt": 1670165980568
},
{
"id": 9,
"name": "Roxane",
"cost": 27.67,
"likes": 118,
"image": "/images/cat/cat-unsplash-9.jpg",
"thumb": "/images/cat/cat-unsplash-9-thumb.jpg",
"description": "Debitis aliquam recusandae id quos aliquam ad et inventore unde. Ratione corrupti dolore. Deserunt rerum aspernatur dolor quia sit voluptatem. Vero inventore architecto quibusdam doloremque earum. Facilis debitis reprehenderit nesciunt natus hic harum. Officiis vitae libero aspernatur sit porro aliquid recusandae.",
"breed": "Ocicat",
"createdAt": 1670165980568
},
{
"id": 10,
"name": "Judah",
"cost": 61.95,
"likes": 249,
"image": "/images/cat/cat-unsplash-10.jpg",
"thumb": "/images/cat/cat-unsplash-10-thumb.jpg",
"description": "Corporis dicta nam fugiat perspiciatis necessitatibus error aut facilis. Maiores laudantium eos at aliquam enim vero quasi accusamus. Ad inventore beatae nobis repudiandae. Unde tempora illum ab laboriosam voluptatem blanditiis alias.",
"breed": "Chausie",
"createdAt": 1670165980568
},
{
"id": 11,
"name": "Braxton",
"cost": 41.65,
"likes": 773,
"image": "/images/cat/cat-unsplash-11.jpg",
"thumb": "/images/cat/cat-unsplash-11-thumb.jpg",
"description": "Deleniti rem quisquam praesentium a ipsum dolores recusandae atque. Non molestias tenetur. Consequatur sed deserunt doloribus eligendi animi reprehenderit. Quisquam vero facere vel cum provident sed dolorem aperiam. Unde animi neque recusandae sint quibusdam. Cum quidem repellendus eaque repellendus iure voluptatibus asperiores voluptatum.",
"breed": "Cornish Rex",
"createdAt": 1670165980568
},
{
"id": 12,
"name": "Vincenza",
"cost": 37.29,
"likes": 582,
"image": "/images/cat/cat-unsplash-12.jpg",
"thumb": "/images/cat/cat-unsplash-12-thumb.jpg",
"description": "Soluta vitae officiis. Pariatur eius labore blanditiis quasi. Modi sint in voluptate reiciendis ad voluptatum expedita. Vero veniam possimus quidem numquam reiciendis autem assumenda nihil. Voluptatibus quis placeat dolorem vitae pariatur incidunt similique. Minus quaerat sapiente earum cupiditate facilis.",
"breed": "American Bobtail",
"createdAt": 1670165980568
},
{
"id": 13,
"name": "Rhea",
"cost": 39.25,
"likes": 864,
"image": "/images/cat/cat-unsplash-13.jpg",
"thumb": "/images/cat/cat-unsplash-13-thumb.jpg",
"description": "Id delectus sapiente facere perferendis maiores blanditiis. Quidem quasi iste adipisci ullam ipsa unde nam sunt porro. Minima tempora minima impedit laboriosam voluptates illo quibusdam nulla.",
"breed": "British Shorthair",
"createdAt": 1670165980568
},
{
"id": 14,
"name": "Axel",
"cost": 29.59,
"likes": 509,
"image": "/images/cat/cat-unsplash-14.jpg",
"thumb": "/images/cat/cat-unsplash-14-thumb.jpg",
"description": "Odio quidem veritatis possimus ex. Blanditiis dicta aut dolor consectetur nulla veritatis. Sunt quidem libero ea veniam incidunt placeat.",
"breed": "Somali",
"createdAt": 1670165980568
},
{
"id": 15,
"name": "Linwood",
"cost": 50.14,
"likes": 711,
"image": "/images/cat/cat-unsplash-15.jpg",
"thumb": "/images/cat/cat-unsplash-15-thumb.jpg",
"description": "Recusandae voluptatum illo atque temporibus. In alias aut quisquam error aliquam nihil sunt architecto et. Nemo culpa dolorum fugiat sit.",
"breed": "Persian",
"createdAt": 1670165980568
},
{
"id": 16,
"name": "Mathew",
"cost": 8.57,
"likes": 304,
"image": "/images/cat/cat-unsplash-16.jpg",
"thumb": "/images/cat/cat-unsplash-16-thumb.jpg",
"description": "Ratione dolore assumenda quaerat natus ex a vero. Eos fugiat harum accusantium maxime facilis quaerat officiis. Ex dolores quasi omnis possimus culpa. Itaque necessitatibus nostrum facilis occaecati sequi accusantium. Exercitationem exercitationem odit maxime quis. A beatae dolore illum distinctio tenetur quidem harum vitae.",
"breed": "Selkirk Rex",
"createdAt": 1670165980568
},
{
"id": 17,
"name": "Damion",
"cost": 97.05,
"likes": 317,
"image": "/images/cat/cat-unsplash-17.jpg",
"thumb": "/images/cat/cat-unsplash-17-thumb.jpg",
"description": "Ullam eum fugit. Adipisci quaerat modi nisi nostrum illo. Quam perferendis ab at harum iure alias. Sit nisi aperiam officiis laborum soluta veritatis placeat nesciunt. Vero expedita non impedit nisi in voluptatum. Ducimus beatae qui dignissimos id corporis aspernatur iusto maiores.",
"breed": "Bengal",
"createdAt": 1670165980568
},
{
"id": 18,
"name": "Tomasa",
"cost": 90.6,
"likes": 281,
"image": "/images/cat/cat-unsplash-18.jpg",
"thumb": "/images/cat/cat-unsplash-18-thumb.jpg",
"description": "Qui eos earum sit voluptatibus rerum voluptate. Occaecati dolores repellat harum minus libero. Nam similique provident similique non. Officia consectetur quod eius ipsum recusandae vero. Cum recusandae delectus. Saepe aliquid voluptatum est consectetur quo occaecati similique hic.",
"breed": "Savannah",
"createdAt": 1670165980568
},
{
"id": 19,
"name": "Daisha",
"cost": 41.47,
"likes": 578,
"image": "/images/cat/cat-unsplash-19.jpg",
"thumb": "/images/cat/cat-unsplash-19-thumb.jpg",
"description": "Inventore dolorem qui atque temporibus. Ea suscipit explicabo. Veritatis quis sed. Unde officiis recusandae veritatis amet perspiciatis repellat reprehenderit. Placeat autem ipsam a maiores vero dolorem non illo. Assumenda iste quos impedit consequuntur eos aut.",
"breed": "Norwegian Forest Cat",
"createdAt": 1670165980568
},
{
"id": 20,
"name": "Flossie",
"cost": 14.47,
"likes": 213,
"image": "/images/cat/cat-unsplash-20.jpg",
"thumb": "/images/cat/cat-unsplash-20-thumb.jpg",
"description": "Ratione earum odio illo nulla. Maxime ullam ipsa. Fuga aut consequatur repellendus laudantium nostrum commodi asperiores repellat. Rerum distinctio perferendis laboriosam qui veniam illo fugit. Repudiandae provident blanditiis est.",
"breed": "Maine Coon",
"createdAt": 1670165980568
},
{
"id": 21,
"name": "Giles",
"cost": 58.75,
"likes": 134,
"image": "/images/cat/cat-unsplash-21.jpg",
"thumb": "/images/cat/cat-unsplash-21-thumb.jpg",
"description": "Animi error inventore commodi dolor. Incidunt temporibus delectus beatae voluptatum id. Ipsam nisi fugit sunt doloremque ex distinctio ullam. Impedit mollitia labore. Saepe libero aliquid perferendis magni hic incidunt itaque. Exercitationem aperiam eos et neque nisi dolores.",
"breed": "Snowshoe",
"createdAt": 1670165980568
},
{
"id": 22,
"name": "Branson",
"cost": 66.56,
"likes": 154,
"image": "/images/cat/cat-unsplash-22.jpg",
"thumb": "/images/cat/cat-unsplash-22-thumb.jpg",
"description": "Magni molestias et fugiat maiores consequuntur. Nobis quod sit itaque praesentium enim tempora quos dolore consequuntur. Alias esse temporibus. Tempore ab esse soluta voluptate excepturi. Vero voluptates consequuntur animi optio facilis ea magnam recusandae.",
"breed": "Himalayan",
"createdAt": 1670165980569
},
{
"id": 23,
"name": "Dejah",
"cost": 77.32,
"likes": 550,
"image": "/images/cat/cat-unsplash-23.jpg",
"thumb": "/images/cat/cat-unsplash-23-thumb.jpg",
"description": "Quae rerum officiis doloribus ratione vero nulla dolore optio laboriosam. Culpa exercitationem odit facere laudantium. Quae nemo odit veritatis iste necessitatibus facilis officiis tempore explicabo. Impedit commodi exercitationem blanditiis provident tempora ipsum labore sint consequuntur. Perferendis cupiditate fugiat quaerat quas rerum placeat. Eaque veniam quaerat.",
"breed": "Peterbald",
"createdAt": 1670165980569
},
{
"id": 24,
"name": "Lolita",
"cost": 35.88,
"likes": 471,
"image": "/images/cat/cat-unsplash-24.jpg",
"thumb": "/images/cat/cat-unsplash-24-thumb.jpg",
"description": "Cupiditate maxime nihil commodi maxime enim fuga ad. Eum eveniet nemo voluptatum ullam harum sint illo. Excepturi et assumenda accusamus ab. Quo exercitationem dolor quidem expedita quidem similique at.",
"breed": "Serengeti",
"createdAt": 1670165980569
},
{
"id": 25,
"name": "Belle",
"cost": 31.27,
"likes": 147,
"image": "/images/cat/cat-unsplash-25.jpg",
"thumb": "/images/cat/cat-unsplash-25-thumb.jpg",
"description": "Inventore et nesciunt est cupiditate totam qui. Deleniti a numquam a quasi veritatis nemo numquam in. Eaque aperiam blanditiis voluptate ipsum sint dolore aspernatur.",
"breed": "Sokoke",
"createdAt": 1670165980569
}
],
"users": [
{
"firstname": "rahul",
"lasttname": "raman",
"email": "[email protected]",
"pass": "1234",
"confirm": "1234",
"id": 1
},
{
"firstname": "mayank",
"lasttname": "kumar",
"email": "[email protected]",
"pass": "1234",
"confirm": "1234",
"id": 2
},
{
"firstname": "nishant",
"lasttname": "kumar",
"email": "[email protected]",
"pass": "1234",
"confirm": "1234",
"id": 3
},
{
"firstname": "devnandan",
"lasttname": "kumar",
"email": "[email protected]",
"pass": "1234",
"confirm": "1234",
"id": 4
},
{
"firstname": "ankit",
"lasttname": "kumar",
"email": "[email protected]",
"pass": "1234",
"confirm": "1234",
"id": 5
},
{
"firstname": "rahul",
"lasttname": "fgrgrf",
"email": "[email protected]",
"pass": "1234",
"id": 6
},
{
"firstname": "raj",
"lasttname": "kumar",
"email": "[email protected]",
"pass": "1234",
"id": 7
},
{
"firstname": "Sebastian",
"lasttname": "M",
"email": "[email protected]",
"pass": "1234",
"id": 8
}
],
"comments": [],
"photos": [],
"todos": [],
"recipeCategories": [
{
"id": "3",
"name": "Dessert",
"image": "/images/recipe-category/dessert.png",
"description": "Dessert is a course that concludes a meal. The course usually consists of sweet foods, such as confections dishes or fruit, and possibly a beverage such as dessert wine or liqueur, however in the United States it may include coffee, cheeses, nuts, or other savory items regarded as a separate course elsewhere. In some parts of the world, such as much of central and western Africa, and most parts of China, there is no tradition of a dessert course to conclude a meal.\r\n\r\nThe term dessert can apply to many confections, such as biscuits, cakes, cookies, custards, gelatins, ice creams, pastries, pies, puddings, and sweet soups, and tarts. Fruit is also commonly found in dessert courses because of its naturally occurring sweetness. Some cultures sweeten foods that are more commonly savory to create desserts.",
"createdAt": 1670165983413
},
{
"id": "11",
"name": "Vegan",
"image": "/images/recipe-category/vegan.png",
"description": "Veganism is both the practice of abstaining from the use of animal products, particularly in diet, and an associated philosophy that rejects the commodity status of animals.[b] A follower of either the diet or the philosophy is known as a vegan (pronounced /ˈviːɡən/ VEE-gən). Distinctions are sometimes made between several categories of veganism. Dietary vegans (or strict vegetarians) refrain from consuming animal products, not only meat but also eggs, dairy products and other animal-derived substances.[c] The term ethical vegan is often applied to those who not only follow a vegan diet but extend the philosophy into other areas of their lives, and oppose the use of animals for any purpose.[d] Another term is environmental veganism, which refers to the avoidance of animal products on the premise that the harvesting or industrial farming of animals is environmentally damaging and unsustainable.",
"createdAt": 1670165983413
},
{
"id": "12",
"name": "Vegetarian",
"image": "/images/recipe-category/vegetarian.png",
"description": "Vegetarianism is the practice of abstaining from the consumption of meat (red meat, poultry, seafood, and the flesh of any other animal), and may also include abstention from by-products of animal slaughter.\r\n\r\nVegetarianism may be adopted for various reasons. Many people object to eating meat out of respect for sentient life. Such ethical motivations have been codified under various religious beliefs, as well as animal rights advocacy. Other motivations for vegetarianism are health-related, political, environmental, cultural, aesthetic, economic, or personal preference. There are variations of the diet as well: an ovo-lacto vegetarian diet includes both eggs and dairy products, an ovo-vegetarian diet includes eggs but not dairy products, and a lacto-vegetarian diet includes dairy products but not eggs. A vegan diet excludes all animal products, including eggs and dairy. Some vegans also avoid other animal products such as beeswax, leather or silk clothing, and goose-fat shoe polish.",
"createdAt": 1670165983413
}
],
"recipeIngredients": [
{
"id": "5",
"name": "Avocado",
"image": "/images/recipe-ingredient/Avocado.png",
"description": "The avocado, a tree with probable origin in South Central Mexico, is classified as a member of the flowering plant family Lauraceae. The fruit of the plant, also called an avocado (or avocado pear or alligator pear), is botanically a large berry containing a single large seed.\r\n\r\nAvocados are commercially valuable and are cultivated in tropical and Mediterranean climates throughout the world. They have a green-skinned, fleshy body that may be pear-shaped, egg-shaped, or spherical. Commercially, they ripen after harvesting. Avocado trees are partially self-pollinating, and are often propagated through grafting to maintain predictable fruit quality and quantity. In 2017, Mexico produced 34% of the world supply of avocados.",
"createdAt": 1667963546804
},
{
"id": "9",
"name": "Apple Cider Vinegar",
"image": "/images/recipe-ingredient/Apple%20Cider%20Vinegar.png",
"description": "Apple cider vinegar, or cider vinegar, is a vinegar made from fermented apple juice, and used in salad dressings, marinades, vinaigrettes, food preservatives, and chutneys. It is made by crushing apples, then squeezing out the juice. Bacteria and yeast are added to the liquid to start the alcoholic fermentation process, which converts the sugars to alcohol. In a second fermentation step, the alcohol is converted into vinegar by acetic acid-forming bacteria (Acetobacter species). Acetic acid and malic acid combine to give vinegar its sour taste. Apple cider vinegar has no medicinal or nutritional value. There is no high-quality clinical evidence that regular consumption of apple cider vinegar helps to maintain or lose body weight, or is effective to manage blood glucose and lipid levels.",
"createdAt": 1667963546804
},
{
"id": "11",
"name": "Aubergine",
"image": "/images/recipe-ingredient/Aubergine.png",
"description": "Eggplant (US, Australia), aubergine (UK), or brinjal (South Asia and South Africa) is a plant species in the nightshade family Solanaceae. Solanum melongena is grown worldwide for its edible fruit.\r\n\r\nMost commonly purple, the spongy, absorbent fruit is used in various cuisines. Although often considered a vegetable, it is a berry by botanical definition. As a member of the genus Solanum, it is related to tomato and potato. Like the tomato, its skin and seeds can be eaten, but, like the potato, it is usually eaten cooked. Eggplant is nutritionally low in macronutrient and micronutrient content, but the capability of the fruit to absorb oils and flavors into its flesh through cooking expands its use in the culinary arts.\r\n\r\nIt was originally domesticated from the wild nightshade species thorn or bitter apple, S. incanum, probably with two independent domestications: one in South Asia, and one in East Asia.",
"createdAt": 1667963546804
},
{
"id": "15",
"name": "Baking Powder",
"image": "/images/recipe-ingredient/Baking%20Powder.png",
"description": "Baking powder is a dry chemical leavening agent, a mixture of a carbonate or bicarbonate and a weak acid. The base and acid are prevented from reacting prematurely by the inclusion of a buffer such as cornstarch. Baking powder is used to increase the volume and lighten the texture of baked goods. It works by releasing carbon dioxide gas into a batter or dough through an acid-base reaction, causing bubbles in the wet mixture to expand and thus leavening the mixture. The first single-acting baking powder was developed by Birmingham based food manufacturer Alfred Bird in England in 1843. The first double-acting baking powder was developed by Eben Norton Horsford in America in the 1860s.",
"createdAt": 1667963546804
},
{
"id": "17",
"name": "Basil",
"image": "/images/recipe-ingredient/Basil.png",
"description": "Basil, also called great basil, is a culinary herb of the family Lamiaceae (mints).\r\n\r\nBasil is native to tropical regions from central Africa to Southeast Asia. It is a tender plant, and is used in cuisines worldwide. Depending on the species and cultivar, the leaves may taste somewhat like anise, with a strong, pungent, often sweet smell.",
"createdAt": 1667963546804
},
{
"id": "18",
"name": "Basil Leaves",
"image": "/images/recipe-ingredient/Basil%20Leaves.png",
"description": "Basil, also called great basil, is a culinary herb of the family Lamiaceae (mints).\r\n",
"createdAt": 1667963546804
},
{
"id": "19",
"name": "Basmati Rice",
"image": "/images/recipe-ingredient/Basmati%20Rice.png",
"description": "Basmati is a variety of long, slender-grained aromatic rice which is traditionally from the Indian subcontinent. As of 2018-19, India exported to over 90% of the overseas basmati rice market, while Pakistan accounted for the remainder, according to the Indian state-run Agricultural and Processed Food Products Export Development Authority and the Pakistan government-run Economic Survey of Pakistan. Many countries use domestically grown basmati rice crops; however, basmati is geographically exclusive to select districts of India, Pakistan, Nepal and Bangladesh.",
"createdAt": 1667963546804
},
{
"id": "20",
"name": "Bay Leaf",
"image": "/images/recipe-ingredient/Bay%20Leaf.png",
"description": "The bay leaf is an aromatic leaf commonly used in cooking. It can be used whole, or as dried and ground.",
"createdAt": 1667963546804
},
{
"id": "21",
"name": "Bay Leaves",
"image": "/images/recipe-ingredient/Bay%20Leaves.png",
"description": "The bay leaf is an aromatic leaf commonly used in cooking. It can be used whole, or as dried and ground.",
"createdAt": 1667963546804
},
{
"id": "27",
"name": "Bicarbonate Of Soda",
"image": "/images/recipe-ingredient/Bicarbonate%20Of%20Soda.png",
"description": "Sodium bicarbonate, commonly known as baking soda, is a chemical compound with the formula NaHCO3. It is a salt composed of a sodium cation (Na+) and a bicarbonate anion (HCO3−). Sodium bicarbonate is a white solid that is crystalline, but often appears as a fine powder. It has a slightly salty, alkaline taste resembling that of washing soda (sodium carbonate). The natural mineral form is nahcolite. It is a component of the mineral natron and is found dissolved in many mineral springs.",
"createdAt": 1667963546804
},
{
"id": "29",
"name": "Black Pepper",
"image": "/images/recipe-ingredient/Black%20Pepper.png",
"description": "Black pepper (Piper nigrum) is a flowering vine in the family Piperaceae, cultivated for its fruit, known as a peppercorn, which is usually dried and used as a spice and seasoning. When fresh and fully mature, it is about 5 mm (0.20 in) in diameter and dark red, and contains a single seed, like all drupes. Peppercorns and the ground pepper derived from them may be described simply as pepper, or more precisely as black pepper (cooked and dried unripe fruit), green pepper (dried unripe fruit), or white pepper (ripe fruit seeds).\r\n\r\nBlack pepper is native to present-day Kerala in Southwestern India, and is extensively cultivated there and elsewhere in tropical regions. Vietnam is the world's largest producer and exporter of pepper, producing 34% of the world's crop, as of 2013.",
"createdAt": 1667963546804
},
{
"id": "30",
"name": "Black Treacle",
"image": "/images/recipe-ingredient/Black%20Treacle.png",
"description": "Molasses (American English) or black treacle (British English) is a viscous product resulting from refining sugarcane or sugar beets into sugar. Molasses varies by amount of sugar, method of extraction, and age of plant. Sugarcane molasses is primarily used for sweetening and flavoring foods in the United States, Canada, and elsewhere. Molasses is a defining component of fine commercial brown sugar.\r\n\r\nSweet sorghum syrup may be colloquially called \"sorghum molasses\" in the southern United States.[2][3] Similar products include honey, maple syrup, corn syrup, and invert syrup. Most of these alternative syrups have milder flavors.",
"createdAt": 1667963546804
},
{
"id": "33",
"name": "Bramley Apples",
"image": "/images/recipe-ingredient/Bramley%20Apples.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "34",
"name": "Brandy",
"image": "/images/recipe-ingredient/Brandy.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "35",
"name": "Bread",
"image": "/images/recipe-ingredient/Bread.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "36",
"name": "Breadcrumbs",
"image": "/images/recipe-ingredient/Breadcrumbs.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "38",
"name": "Brown Lentils",
"image": "/images/recipe-ingredient/Brown%20Lentils.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "40",
"name": "Brown Sugar",
"image": "/images/recipe-ingredient/Brown%20Sugar.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "41",
"name": "Butter",
"image": "/images/recipe-ingredient/Butter.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "43",
"name": "Cacao",
"image": "/images/recipe-ingredient/Cacao.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "45",
"name": "Canned Tomatoes",
"image": "/images/recipe-ingredient/Canned%20Tomatoes.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "46",
"name": "Cannellini Beans",
"image": "/images/recipe-ingredient/Cannellini%20Beans.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "47",
"name": "Cardamom",
"image": "/images/recipe-ingredient/Cardamom.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "49",
"name": "Carrots",
"image": "/images/recipe-ingredient/Carrots.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "50",
"name": "Cashew Nuts",
"image": "/images/recipe-ingredient/Cashew%20Nuts.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "51",
"name": "Cashews",
"image": "/images/recipe-ingredient/Cashews.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "52",
"name": "Caster Sugar",
"image": "/images/recipe-ingredient/Caster%20Sugar.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "53",
"name": "Cayenne Pepper",
"image": "/images/recipe-ingredient/Cayenne%20Pepper.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "55",
"name": "Celery",
"image": "/images/recipe-ingredient/Celery.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "57",
"name": "Challots",
"image": "/images/recipe-ingredient/Challots.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "59",
"name": "Cheddar Cheese",
"image": "/images/recipe-ingredient/Cheddar%20Cheese.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "62",
"name": "Cherry Tomatoes",
"image": "/images/recipe-ingredient/Cherry%20Tomatoes.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "68",
"name": "Chicken Stock",
"image": "/images/recipe-ingredient/Chicken%20Stock.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "71",
"name": "Chickpeas",
"image": "/images/recipe-ingredient/Chickpeas.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "72",
"name": "Chili Powder",
"image": "/images/recipe-ingredient/Chili%20Powder.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "73",
"name": "Chilled Butter",
"image": "/images/recipe-ingredient/Chilled%20Butter.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "77",
"name": "Chocolate Chips",
"image": "/images/recipe-ingredient/Chocolate%20Chips.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "79",
"name": "Chopped Parsley",
"image": "/images/recipe-ingredient/Chopped%20Parsley.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "80",
"name": "Chopped Tomatoes",
"image": "/images/recipe-ingredient/Chopped%20Tomatoes.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "82",
"name": "Christmas Pudding",
"image": "/images/recipe-ingredient/Christmas%20Pudding.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "83",
"name": "Cilantro",
"image": "/images/recipe-ingredient/Cilantro.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "84",
"name": "Cinnamon",
"image": "/images/recipe-ingredient/Cinnamon.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "88",
"name": "Coco Sugar",
"image": "/images/recipe-ingredient/Coco%20Sugar.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "89",
"name": "Cocoa",
"image": "/images/recipe-ingredient/Cocoa.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "90",
"name": "Coconut Cream",
"image": "/images/recipe-ingredient/Coconut%20Cream.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "91",
"name": "Coconut Milk",
"image": "/images/recipe-ingredient/Coconut%20Milk.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "93",
"name": "Cold Water",
"image": "/images/recipe-ingredient/Cold%20Water.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "94",
"name": "Condensed Milk",
"image": "/images/recipe-ingredient/Condensed%20Milk.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "95",
"name": "Coriander",
"image": "/images/recipe-ingredient/Coriander.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "96",
"name": "Coriander Leaves",
"image": "/images/recipe-ingredient/Coriander%20Leaves.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "98",
"name": "Corn Tortillas",
"image": "/images/recipe-ingredient/Corn%20Tortillas.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "99",
"name": "Cornstarch",
"image": "/images/recipe-ingredient/Cornstarch.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "101",
"name": "Creme Fraiche",
"image": "/images/recipe-ingredient/Creme%20Fraiche.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "104",
"name": "Cumin",
"image": "/images/recipe-ingredient/Cumin.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "105",
"name": "Cumin Seeds",
"image": "/images/recipe-ingredient/Cumin%20Seeds.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "108",
"name": "Dark Soft Brown Sugar",
"image": "/images/recipe-ingredient/Dark%20Soft%20Brown%20Sugar.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "110",
"name": "Demerara Sugar",
"image": "/images/recipe-ingredient/Demerara%20Sugar.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "111",
"name": "Diced Tomatoes",
"image": "/images/recipe-ingredient/Diced%20Tomatoes.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "112",
"name": "Digestive Biscuits",
"image": "/images/recipe-ingredient/Digestive%20Biscuits.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "115",
"name": "Double Cream",
"image": "/images/recipe-ingredient/Double%20Cream.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "116",
"name": "Dried Oregano",
"image": "/images/recipe-ingredient/Dried%20Oregano.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "119",
"name": "Egg Plants",
"image": "/images/recipe-ingredient/Egg%20Plants.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "121",
"name": "Egg White",
"image": "/images/recipe-ingredient/Egg%20White.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "122",
"name": "Egg Yolks",
"image": "/images/recipe-ingredient/Egg%20Yolks.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "123",
"name": "Eggs",
"image": "/images/recipe-ingredient/Eggs.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "133",
"name": "Feta",
"image": "/images/recipe-ingredient/Feta.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "135",
"name": "Flaked Almonds",
"image": "/images/recipe-ingredient/Flaked%20Almonds.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "136",
"name": "Flax Eggs",
"image": "/images/recipe-ingredient/Flax%20Eggs.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "137",
"name": "Flour",
"image": "/images/recipe-ingredient/Flour.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "140",
"name": "Free-range Egg Beaten",
"image": "/images/recipe-ingredient/Free-range%20Egg%20Beaten.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "141",
"name": "Free-range Eggs Beaten",
"image": "/images/recipe-ingredient/Free-range%20Eggs%20Beaten.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "148",
"name": "Garam Masala",
"image": "/images/recipe-ingredient/Garam%20Masala.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "149",
"name": "Garlic",
"image": "/images/recipe-ingredient/Garlic.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "150",
"name": "Garlic Clove",
"image": "/images/recipe-ingredient/Garlic%20Clove.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "153",
"name": "Ghee",
"image": "/images/recipe-ingredient/Ghee.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "154",
"name": "Ginger",
"image": "/images/recipe-ingredient/Ginger.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "155",
"name": "Ginger Cordial",
"image": "/images/recipe-ingredient/Ginger%20Cordial.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "158",
"name": "Golden Syrup",
"image": "/images/recipe-ingredient/Golden%20Syrup.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "160",
"name": "Granulated Sugar",
"image": "/images/recipe-ingredient/Granulated%20Sugar.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "162",
"name": "Greek Yogurt",
"image": "/images/recipe-ingredient/Greek%20Yogurt.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "163",
"name": "Green Beans",
"image": "/images/recipe-ingredient/Green%20Beans.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "165",
"name": "Green Chilli",
"image": "/images/recipe-ingredient/Green%20Chilli.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "167",
"name": "Green Red Lentils",
"image": "/images/recipe-ingredient/Green%20Red%20Lentils.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "169",
"name": "Ground Almonds",
"image": "/images/recipe-ingredient/Ground%20Almonds.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "170",
"name": "Ground Cumin",
"image": "/images/recipe-ingredient/Ground%20Cumin.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "171",
"name": "Ground Ginger",
"image": "/images/recipe-ingredient/Ground%20Ginger.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "175",
"name": "Harissa Spice",
"image": "/images/recipe-ingredient/Harissa%20Spice.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "176",
"name": "Heavy Cream",
"image": "/images/recipe-ingredient/Heavy%20Cream.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "177",
"name": "Honey",
"image": "/images/recipe-ingredient/Honey.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "181",
"name": "Ice Cream",
"image": "/images/recipe-ingredient/Ice%20Cream.png",
"description": null,
"createdAt": 1667963546804
},
{
"id": "183",