-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.js
2795 lines (2791 loc) · 129 KB
/
data.js
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
// OutDoor Data
const plantsData = [{
"id": 1,
"name": "Lime",
"species": "Citrus aurantiifolia",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "South Asia",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Lime is a small, green citrus fruit known for its tangy, acidic flavor. It's commonly used in cooking, beverages, and as a garnish. The plant is adapted to full sun and well-draining soil.",
"image": ['./img/lime.png', './img/lime1.png', './img/lime2.png'],
"price": "Rs: 6,150"
},
{
"id": 2,
"name": "Orange",
"species": "Citrus sinensis",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate to Fast",
"origin": "Southeast Asia",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Orange is a popular citrus fruit known for its sweet and tangy flavor. It is widely consumed fresh or as juice. The orange tree requires full sun and well-draining soil to thrive.",
"image": ['./img/orange.png', './img/orange2.png', './img/orange1.png'],
"price": "Rs: 4,480"
},
{
"id": 3,
"name": "Grapefruit",
"species": "Citrus paradisi",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "Barbados",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Grapefruit is a citrus fruit known for its tangy, slightly bitter flavor and high vitamin C content. It grows best in full sun and requires well-draining soil.",
"image": ['./img/Grapefruit.png', './img/Grapefruit1.png', './img/Grapefruit2.png'],
"price": "Rs: 4,000"
},
{
"id": 4,
"name": "Mandarin Oranges",
"species": "Citrus reticulata",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "China",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Mandarin is a small, sweet citrus fruit known for its easy-to-peel skin and juicy segments. It thrives in full sun and well-draining soil.",
"image": ['./img/Mandarin.png', './img/Mandarin1.png', './img/Mandarin2.png'],
"price": "Rs: 4,000"
},
{
"id": 5,
"name": "Tangerine",
"species": "Citrus tangerina",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "Japan",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Tangerine is a small citrus fruit known for its bright orange color and sweet, tangy flavor. It is easy to peel and segments are juicy. The plant prefers full sun and well-draining soil.",
"image": ['./img/Tangerine.png', './img/Tangerine1.png', './img/Tangerine2.png'],
"price": "Rs: 4,410"
}, {
"id": 6,
"name": "Pomelo",
"species": "Citrus maxima",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Slow to Moderate",
"origin": "Southeast Asia",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Pomelo is the largest citrus fruit known for its thick, green or yellow skin and sweet, mildly tangy flesh. It grows best in full sun and well-draining soil.",
"image": ['./img/Pomelo.png', './img/Pomelo1.png', './img/Pomelo2.png'],
"price": "Rs: 3,390"
}, {
"id": 7,
"name": "Bergamot Orange",
"species": "Citrus bergamia",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Slow to Moderate",
"origin": "Italy",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Bergamot orange is a citrus fruit known for its distinct, aromatic flavor and essential oils used in perfumes and Earl Grey tea. It requires full sun and well-draining soil to thrive.",
"image": ['./img/Bergamot.png', './img/Bergamot1.png', './img/Pomelo2.png'],
"price": "Rs: 4,100"
}, {
"id": 8,
"name": "Kumquat",
"species": "Fortunella margarita",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Slow to Moderate",
"origin": "China",
"generation": "Genus: Fortunella, Family: Rutaceae",
"description": "Kumquat is a small citrus fruit known for its sweet and tangy flavor, and edible skin. It thrives in full sun and well-draining soil.",
"image": ['./img/Kumquat.png', './img/Kumquat1.png', './img/Kumquat2.png'],
"price": "Rs: 7,500"
}, {
"id": 9,
"name": "Citron",
"species": "Citrus medica",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Slow to Moderate",
"origin": "India and China",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Citron is a large, yellow citrus fruit with a thick, rough skin and a lemon-like aroma. It is often used in preserves and as a flavoring. The plant requires full sun and well-draining soil.",
"image": ['./img/Citron.png', './img/Citron1.png', './img/Citron2.png'],
"price": "Rs: 2,000"
}, {
"id": 10,
"name": "Bitter Orange",
"species": "Citrus aurantium",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "Southeast Asia",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Bitter orange is a citrus fruit known for its sharp, tangy flavor and bitter taste. It is used in marmalade, liqueurs, and traditional medicine. The plant thrives in full sun and well-draining soil.",
"image": ['./img/Bitter.png', './img/Bitter1.png', './img/bitter2.png'],
"price": "Rs: 4,410"
}, {
"id": 11,
"name": "Calamondin",
"species": "Citrus microcarpa",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "Philippines",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Calamondin is a small citrus fruit with a tart flavor and thin, orange skin. It is often used in Filipino cuisine and as a decorative plant. It grows best in full sun and well-draining soil.",
"image": ['./img/Calamondin.png', './img/Calamondin1.png', './img/Calamondin2.png'],
"price": "Rs: 4,830"
}, {
"id": 12,
"name": "Kaffir Lime",
"species": "Citrus hystrix",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "Southeast Asia",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Kaffir lime is known for its aromatic leaves and distinct, bumpy fruit. The zest and leaves are commonly used in Southeast Asian cuisine for their unique flavor. The plant prefers full sun and well-draining soil.",
"image": ['./img/Kaffir.png', './img/Kaffir1.png', './img/Kaffir2.png'],
"price": "Rs: 2,000"
}, {
"id": 13,
"name": "Yuzu",
"species": "Citrus junos",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Slow to Moderate",
"origin": "East Asia",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Yuzu is a citrus fruit with a distinct tart and aromatic flavor, often used in Japanese cuisine and as a flavoring in various dishes and beverages. The plant thrives in full sun and well-draining soil.",
"image": ['./img/Yuzu.png', './img/Yuzu1.png', './img/Yuzu2.png'],
"price": "Rs: 7,000"
}, {
"id": 14,
"name": "Sudachi",
"species": "Citrus sudachi",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Slow to Moderate",
"origin": "Japan",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Sudachi is a small, green citrus fruit known for its tart flavor and aromatic zest. It is often used in Japanese cuisine, particularly in sauces and dressings. The plant grows best in full sun and well-draining soil.",
"image": ['./img/Sudachi.png', './img/Sudachi1.png', './img/Sudachi2.png'],
"price": "Rs: 22,500"
}, {
"id": 15,
"name": "Kinkan",
"species": "Fortunella japonica",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Slow to Moderate",
"origin": "Japan",
"generation": "Genus: Fortunella, Family: Rutaceae",
"description": "Kinkan, also known as kumquat, is a small citrus fruit with a sweet and tangy flavor. The fruit's skin is edible and contributes to its unique taste. It prefers full sun and well-draining soil.",
"image": ['./img/Kumquat.png', './img/Kumquat1.png', './img/Kumquat2.png'],
"price": "Rs: 2,500"
}, {
"id": 16,
"name": "Clementine",
"species": "Citrus clementina",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "Algeria",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Clementine is a small, sweet citrus fruit known for its easy-to-peel skin and juicy segments. It is often enjoyed fresh or as a snack. The plant thrives in full sun and well-draining soil.",
"image": ['./img/Clementine.png', './img/Clementine1.png', './img/Clementine2.png'],
"price": "Rs: 7,500"
}, {
"id": 17,
"name": "Seville Orange",
"species": "Citrus aurantium",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "Spain",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Seville orange, also known as bitter orange, is renowned for its tart flavor and is commonly used in marmalade and as a flavoring. It prefers full sun and well-draining soil.",
"image": ['./img/Bitter.png', './img/Bitter1.png', './img/bitter2.png'],
"price": "Rs: 4,410"
}, {
"id": 18,
"name": "Mandarins",
"species": "Citrus reticulata",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "China",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Mandarins are small, sweet citrus fruits known for their easy-to-peel skin and juicy segments. They are often enjoyed fresh or used in cooking and desserts. The plant thrives in full sun and well-draining soil.",
"image": ['./img/Mandarin.png', './img/Mandarin1.png', './img/Mandarin2.png'],
"price": "Rs: 4,000"
}, {
"id": 19,
"name": "Finger Lime",
"species": "Citrus australasica",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Slow to Moderate",
"origin": "Australia",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Finger lime is a unique citrus fruit known for its elongated shape and caviar-like vesicles that burst with tangy juice. It is used in gourmet dishes and as a garnish. The plant thrives in full sun and well-draining soil.",
"image": ['./img/Finger.png', './img/Finger1.png', './img/Finger2.png'],
"price": "Rs: 5,000"
}, {
"id": 20,
"name": "Rangpur Lime",
"species": "Citrus limonia",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "India",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Rangpur lime is a citrus fruit known for its orange skin and acidic, tangy flavor. It is often used in cooking and as a flavoring agent. The plant requires full sun and well-draining soil to thrive.",
"image": ['./img/Rangpur.png', './img/Rangpur1.png', './img/Rangpur2.png'],
"price": "Rs: 4,450"
}, {
"id": 21,
"name": "Sweet Lemon",
"species": "Citrus limetta",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "India",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Sweet lemon, also known as sweet lime, is a citrus fruit with a mild, sweet flavor and low acidity. It is often consumed fresh or as juice. The plant prefers full sun and well-draining soil.",
"image": ['./img/Sweet.png', './img/Sweet1.png', './img/Sweet2.png'],
"price": "Rs: 3,450"
}, {
"id": 22,
"name": "Limequat",
"species": "Fortunella Citrus",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "Hybrid (Citrus and Fortunella species)",
"generation": "Genus: Fortunella Citrus, Family: Rutaceae",
"description": "Limequat is a hybrid citrus fruit combining lime and kumquat traits. It is small, tart, and has an edible skin. It is used in various culinary applications. The plant requires full sun and well-draining soil.",
"image": ['./img/Limequat.png', './img/Limequat1.png', './img/Limequat2.png'],
"price": "Rs: 2,990"
}, {
"id": 23,
"name": "Ichang Papeda",
"species": "Citrus ichangensis",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Slow to Moderate",
"origin": "China",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Ichang papeda is a citrus fruit known for its hardy nature and distinctive, tart flavor. It is used in breeding programs to develop more cold-tolerant citrus varieties. The plant prefers full sun and well-draining soil.",
"image": ['./img/Ichang.png', './img/Ichang1.png', './img/Ichang2.png'],
"price": "Rs: 10,100"
}, {
"id": 24,
"name": "Oroblanco",
"species": "Citrus × grandis",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "United States (Hybrid)",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Oroblanco, also known as sweetie, is a hybrid citrus fruit with a sweet and mildly tangy flavor. It has a thick, pale green skin and is often enjoyed fresh. The plant thrives in full sun and well-draining soil.",
"image": ['./img/Oroblanco.png', './img/Oroblanco1.png', './img/Oroblanco2.png'],
"price": "Rs: 15,500"
}, {
"id": 25,
"name": "Sweetie",
"species": "Citrus × grandis",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "United States (Hybrid)",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Sweetie, also known as oroblanco, is a hybrid citrus fruit with a sweet and mildly tangy flavor. It features a thick, pale green skin and is often enjoyed fresh. The plant prefers full sun and well-draining soil.",
"image": ['./img/Oroblanco.png', './img/Oroblanco1.png', './img/Oroblanco2.png'],
"price": "Rs: 15,500"
}, {
"id": 26,
"name": "Djeruk Limau",
"species": "Citrus limau",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "Southeast Asia",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Djeruk Limau, also known as lime or calamansi, is a small citrus fruit with a tart flavor, commonly used in Southeast Asian cuisine. It thrives in full sun and well-draining soil.",
"image": ['./img/calamansi.png', './img/calamansi1.png', './img/calamansi2.png'],
"price": "Rs: 5,500"
}, {
"id": 27,
"name": "Sweet Orange",
"species": "Citrus sinensis",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "China",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Sweet orange is a popular citrus fruit known for its juicy, sweet segments and vibrant color. It is commonly enjoyed fresh or as juice. The plant thrives in full sun and well-draining soil.",
"image": ['./img/SweetO.png', './img/SweetO1.png', './img/SweetO2.png'],
"price": "Rs: 2,500"
}, {
"id": 28,
"name": "Trifoliate Orange",
"species": "Poncirus trifoliata",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Slow to Moderate",
"origin": "China",
"generation": "Genus: Poncirus, Family: Rutaceae",
"description": "Trifoliate orange is a hardy citrus fruit known for its trifoliate leaves and small, sour fruit. It is often used as a rootstock for other citrus trees due to its cold tolerance. The plant prefers full sun and well-draining soil.",
"image": ['./img/TrifoliateO.png', './img/TrifoliateO1.png', './img/TrifoliateO2.png'],
"price": "Rs: 4,500"
}, {
"id": 29,
"name": "Meyer Lemon",
"species": "Citrus × meyeri",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "China",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Meyer lemon is a sweet and aromatic lemon variety with a thin, bright yellow skin and a milder flavor compared to standard lemons. It is commonly used in cooking and baking. The plant prefers full sun and well-draining soil.",
"image": ['./img/MeyerL.png', './img/MeyerL1.png', './img/MeyerL2.png'],
"price": "Rs: 4,680"
}, {
"id": 30,
"name": "Citrange",
"species": "Citrus × sinensis × Poncirus trifoliata",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "Hybrid (United States)",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Citrange is a hybrid citrus fruit resulting from the cross between sweet orange and trifoliate orange. It combines the sweetness of oranges with the hardiness of trifoliate orange. The plant thrives in full sun and well-draining soil.",
"image": ['./img/TrifoliateO.png', './img/TrifoliateO1.png', './img/TrifoliateO2.png'],
"price": "Rs: 4,500"
}, {
"id": 31,
"name": "Kaffir Lime",
"species": "Citrus hystrix",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "Southeast Asia",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Kaffir lime is known for its aromatic leaves and distinct, bumpy fruit. The zest and leaves are commonly used in Southeast Asian cuisine for their unique flavor. The plant prefers full sun and well-draining soil.",
"image": ['./img/Kaffir.png', './img/Kaffir1.png', './img/Kaffir2.png'],
"price": "Rs: 2,000"
}, {
"id": 32,
"name": "Buddha's Hand",
"species": "Citrus medica",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Slow to Moderate",
"origin": "China",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Buddha's Hand is a unique citrus fruit known for its finger-like segments resembling a hand in prayer. It is highly aromatic and used primarily for its zest and as a decorative element. The plant thrives in full sun and well-draining soil.",
"image": ['./img/Buddha.png', './img/Buddha1.png', './img/Buddha2.png'],
"price": "Rs: 25,000"
}, {
"id": 33,
"name": "Sweet Orange",
"species": "Citrus sinensis",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "China",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Sweet orange is a popular citrus fruit known for its juicy, sweet segments and vibrant color. It is commonly enjoyed fresh or as juice. The plant thrives in full sun and well-draining soil.",
"image": ['./img/SweetO.png', './img/SweetO1.png', './img/SweetO2.png'],
"price": "Rs: 2,500"
}, {
"id": 34,
"name": "Navel Orange",
"species": "Citrus sinensis",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "Brazil",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Navel orange is a seedless variety of sweet orange, known for its large size and easy-to-peel skin. It has a sweet, juicy flavor and is commonly eaten fresh or used in juices. The plant thrives in full sun and well-draining soil.",
"image": ['./img/orange.png', './img/orange2.png', './img/orange1.png'],
"price": "Rs: 3,480"
}, {
"id": 35,
"name": "Bergamot Lime",
"species": "Citrus bergamia",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "Italy",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Bergamot lime is known for its distinctive, aromatic flavor and is primarily used in flavoring tea and perfumes. It has a tart taste and a greenish-yellow skin. The plant thrives in full sun and well-draining soil.",
"image": ['./img/BergamotL.png', './img/BergamotL2.png', './img/BergamotL.png'],
"price": "Rs: 7,480"
}, {
"id": 36,
"name": "Pomelo Grapefruit",
"species": "Citrus × grandis",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "Hybrid (United States)",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Pomelo grapefruit, also known as oroblanco, is a hybrid citrus fruit that combines the characteristics of pomelo and grapefruit. It has a sweet and mildly tangy flavor, with a thick, pale rind. The plant prefers full sun and well-draining soil.",
"image": ['./img/Pomelo.png', './img/Pomelo1.png', './img/Pomelo2.png'],
"price": "Rs: 6,900"
}, {
"id": 37,
"name": "Yuzu",
"species": "Citrus junos",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Slow to Moderate",
"origin": "Japan",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Yuzu is a citrus fruit known for its unique, aromatic flavor that combines tartness with floral notes. It is widely used in Japanese cuisine and beverages. The plant requires full sun and well-draining soil to thrive.",
"image": ['./img/Yuzu.png', './img/Yuzu1.png', './img/Yuzu2.png'],
"price": "Rs: 15,000"
}, {
"id": 38,
"name": "Rangpur Lime",
"species": "Citrus × limonia",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "India",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Rangpur lime is a hybrid citrus fruit known for its sour taste and vibrant orange skin. It is used in cooking and beverages, and is valued for its high acidity and distinctive flavor. The plant thrives in full sun and well-draining soil.",
"image": ['./img/Rangpur.png', './img/Rangpur1.png', './img/Rangpur2.png'],
"price": "Rs: 4,450"
}, {
"id": 39,
"name": "Kumquat Orange",
"species": "Fortunella",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "China",
"generation": "Genus: Fortunella, Family: Rutaceae",
"description": "Kumquat orange is a small citrus fruit with a sweet and tart flavor. It has a thin, edible skin and is often eaten whole. The plant is hardy and thrives in full sun and well-draining soil.",
"image": ['./img/Kumquat.png', './img/Kumquat1.png', './img/Kumquat2.png'],
"price": "Rs: 7,500"
}, {
"id": 40,
"name": "Tangelo",
"species": "Citrus × tangelo",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "United States (Hybrid)",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Tangelo is a hybrid citrus fruit that combines the sweet flavor of tangerines with the tangy zest of grapefruits. It has a juicy, aromatic flavor and is easy to peel. The plant thrives in full sun and well-draining soil.",
"image": ['./img/Tangelo.png', './img/Tangelo1.png', './img/Tangelo2.png'],
"price": "Rs: 7,500"
}, {
"id": 41,
"name": "Clementine",
"species": "Citrus clementina",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "Algeria",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Clementine is a small, sweet citrus fruit known for its easy-to-peel skin and juicy segments. It is a popular snack and is used in various recipes. The plant thrives in full sun and well-draining soil.",
"image": ['./img/Clementine.png', './img/Clementine1.png', './img/Clementine2.png'],
"price": "Rs: 7,500"
}, {
"id": 42,
"name": "Noble Mandarin",
"species": "Citrus nobilis",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "China",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Citrus nobilis, commonly known as the noble mandarin, is a citrus fruit valued for its sweet, easy-to-peel segments. It is commonly eaten fresh or used in cooking. The plant requires full sun and well-draining soil to thrive.",
"image": ['./img/Mandarin.png', './img/Mandarin1.png', './img/Mandarin2.png'],
"price": "Rs: 4,000"
}, {
"id": 43,
"name": "Citron",
"species": "Citrus medica",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Slow to Moderate",
"origin": "India",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Citron is a large, yellow citrus fruit with a thick, bumpy rind and a tart flavor. It is used in cooking, as a flavoring, and in religious rituals. The plant thrives in full sun and well-draining soil.",
"image": ['./img/Citron.png', './img/Citron1.png', './img/Citron2.png'],
"price": "Rs: 2,000"
}, {
"id": 44,
"name": "Kumquat",
"species": "Citrus japonica",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "China",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Kumquat, also known as Citrus japonica, is a small citrus fruit with a sweet and tart flavor. It has a thin, edible skin and is often eaten whole or used in preserves and cooking. The plant prefers full sun and well-draining soil.",
"image": ['./img/Kumquat.png', './img/Kumquat1.png', './img/Kumquat2.png'],
"price": "Rs: 7,500"
}, {
"id": 45,
"name": "Grapefruit Orange",
"species": "Citrus × paradisi",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "Barbados",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Grapefruit orange is a citrus fruit known for its tart flavor and large size. It has a thick, yellow to pink rind and is commonly enjoyed fresh or as juice. The plant thrives in full sun and well-draining soil.",
"image": ['./img/GrapefruitO.png', './img/GrapefruitO1.png', './img/GrapefruitO2.png'],
"price": "Rs: 7,500"
}, {
"id": 46,
"name": "Lime Orange",
"species": "Citrus × latifolia",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "Hybrid (United States)",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Lime orange, also known as Persian lime, is a hybrid citrus fruit that combines the tangy flavor of limes with the size of oranges. It has a green rind and is commonly used in cooking and beverages. The plant requires full sun and well-draining soil.",
"image": ['./img/LimeO.png', './img/LimeO1.png', './img/LimeO2.png'],
"price": "Rs: 7,500"
}, {
"id": 47,
"name": "Mandarin Orange",
"species": "Citrus reticulata",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "China",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Mandarin orange, known scientifically as Citrus reticulata, is a small citrus fruit prized for its sweet, easy-to-peel segments. It is commonly enjoyed fresh or used in a variety of dishes. The plant thrives in full sun and well-draining soil.",
"image": ['./img/Mandarin.png', './img/Mandarin1.png', './img/Mandarin2.png'],
"price": "Rs: 4,000"
}, {
"id": 48,
"name": "Kaffir Lime",
"species": "Citrus hystrix",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "Southeast Asia",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Kaffir lime is valued for its aromatic leaves and distinctive, bumpy fruit. It is widely used in Southeast Asian cuisine for its unique flavor. The plant thrives in full sun and well-draining soil.",
"image": ['./img/Kaffir.png', './img/Kaffir1.png', './img/Kaffir2.png'],
"price": "Rs: 2,000"
}, {
"id": 49,
"name": "Rough Lemon",
"species": "Citrus × tomentosa",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "Hybrid (India)",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Rough lemon, also known as Citrus × tomentosa, is a hybrid citrus fruit known for its rough, bumpy skin and sour flavor. It is often used as a rootstock for other citrus plants and occasionally in culinary applications. The plant prefers full sun and well-draining soil.",
"image": ['./img/Rough.png', './img/Rough1.png', './img/Rough2.png'],
"price": "Rs: 4,350"
}, {
"id": 50,
"name": "Bitter Orange",
"species": "Citrus × aurantium",
"type": "Citrus Fruit",
"category": "Fruit",
"main": 'limeData',
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "Asia",
"generation": "Genus: Citrus, Family: Rutaceae",
"description": "Bitter orange, also known as Seville orange, is a citrus fruit known for its tart and bitter flavor. It is often used in marmalades, liqueurs, and as a flavoring in various culinary dishes. The plant thrives in full sun and well-draining soil.",
"image": ['./img/Bitter.png', './img/Bitter1.png', './img/bitter2.png'],
"price": "Rs: 4,410"
},
{
"id": 51,
"name": "Sindhri Mango",
"species": "Mangifera indica",
"type": "Fruit",
"category": "Tropical Fruit",
"main": "mangoData",
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "Pakistan",
"generation": "Genus: Mangifera, Family: Anacardiaceae",
"description": "Sindhri mango is celebrated for its large size, sweet flavor, and juicy, fiberless flesh. It has a golden-yellow skin when ripe and is highly valued for its aromatic and rich taste. The plant thrives in full sun and well-draining soil.",
"image": ['./img/Sindhri.png', './img/Sindhri1.png', './img/Sindhri2.png'],
"price": "Rs: 4,400"
}, {
"id": 52,
"name": "Chaunsa Mango",
"species": "Mangifera indica",
"type": "Fruit",
"category": "Tropical Fruit",
"main": "mangoData",
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "India",
"generation": "Genus: Mangifera, Family: Anacardiaceae",
"description": "Chaunsa mango is highly prized for its exceptionally sweet, rich flavor and smooth, juicy texture. It has a golden-yellow skin with a slight blush when ripe and is considered one of the best mango varieties. The plant requires full sun and well-draining soil to thrive.",
"image": ['./img/Chaunsa.png', './img/Chaunsa1.png', './img/Chaunsa2.png'],
"price": "Rs: 7,000"
}, {
"id": 53,
"name": "Langra Mango",
"species": "Mangifera indica",
"type": "Fruit",
"category": "Tropical Fruit",
"main": "mangoData",
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "India",
"generation": "Genus: Mangifera, Family: Anacardiaceae",
"description": "Langra mango is known for its distinctive flavor and smooth, fiberless texture. It has a green skin that turns yellow when ripe and is highly valued for its sweet, tangy taste. The plant thrives in full sun and well-draining soil.",
"image": ['./img/Langra.png', './img/Langra1.png', './img/Langra2.png'],
"price": "Rs: 7,000"
}, {
"id": 54,
"name": "Dusheri Mango",
"species": "Mangifera indica",
"type": "Fruit",
"category": "Tropical Fruit",
"main": "mangoData",
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "India",
"generation": "Genus: Mangifera, Family: Anacardiaceae",
"description": "Dusheri mango is celebrated for its sweet, tangy flavor and rich, creamy texture. It has a vibrant yellow skin with a hint of red when ripe and is highly valued for its aromatic taste. The plant thrives in full sun and well-draining soil.",
"image": ['./img/Dusheri.png', './img/Chaunsa1.png', './img/Chaunsa2.png'],
"price": "Rs: 6,000"
}, {
"id": 55,
"name": "Anwar Ratol Mango",
"species": "Mangifera indica",
"type": "Fruit",
"category": "Tropical Fruit",
"main": "mangoData",
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "Pakistan",
"generation": "Genus: Mangifera, Family: Anacardiaceae",
"description": "Anwar Ratol mango is known for its small size, exceptional sweetness, and aromatic flavor. It has a yellow skin when ripe and is highly prized for its rich taste and minimal fiber. The plant thrives in full sun and well-draining soil.",
"image": ['./img/Anwar.png', './img/Anwar1.png', './img/Anwar2.png'],
"price": "Rs: 6,500"
}, {
"id": 56,
"name": "Sindhri Chaunsa Mango",
"species": "Mangifera indica",
"type": "Fruit",
"category": "Tropical Fruit",
"main": "mangoData",
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "Pakistan/India",
"generation": "Genus: Mangifera, Family: Anacardiaceae",
"description": "Sindhri Chaunsa mango combines the sweetness and rich flavor of Chaunsa with the large size and juicy texture of Sindhri. It has a golden-yellow skin and is highly prized for its aromatic, fiberless flesh. The plant requires full sun and well-draining soil to thrive.",
"image": ['./img/SindhriC.png', './img/SindhriC1.png', './img/SindhriC2.png'],
"price": "Rs: 6,500"
}, {
"id": 57,
"name": "White Chaunsa Mango",
"species": "Mangifera indica",
"type": "Fruit",
"category": "Tropical Fruit",
"main": "mangoData",
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "Pakistan/India",
"generation": "Genus: Mangifera, Family: Anacardiaceae",
"description": "White Chaunsa mango is a variant of the Chaunsa mango, known for its distinctive creamy, pale yellow flesh. It has a sweet, rich flavor with minimal fiber and is highly valued for its smooth, juicy texture. The plant thrives in full sun and well-draining soil.",
"image": ['./img/WhiteC.png', './img/WhiteC1.png', './img/WhiteC2.png'],
"price": "Rs: 6,500"
}, {
"id": 58,
"name": "Kesar Mango",
"species": "Mangifera indica",
"type": "Fruit",
"category": "Tropical Fruit",
"main": "mangoData",
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "India",
"generation": "Genus: Mangifera, Family: Anacardiaceae",
"description": "Kesar mango, also known as 'Saffron Mango,' is famous for its vibrant orange color, sweet flavor, and rich, creamy texture. It is highly prized in India for its aromatic taste and juicy flesh. The plant thrives in full sun and well-draining soil.",
"image": ['./img/Kesar.png', './img/Kesar1.png', './img/Kesar2.png'],
"price": "Rs: 6,500"
}, {
"id": 59,
"name": "Banganapalli Mango",
"species": "Mangifera indica",
"type": "Fruit",
"category": "Tropical Fruit",
"main": "mangoData",
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "India",
"generation": "Genus: Mangifera, Family: Anacardiaceae",
"description": "Banganapalli mango, also known as 'Banana Mango,' is renowned for its large size, sweet flavor, and smooth, fiberless flesh. It has a golden-yellow skin when ripe and is valued for its juicy, aromatic taste. The plant prefers full sun and well-draining soil.",
"image": ['./img/Banganapalli.png', './img/Banganapalli1.png', './img/Banganapalli2.png'],
"price": "Rs: 7,900"
}, {
"id": 60,
"name": "Dusheri Chaunsa Mango",
"species": "Mangifera indica",
"type": "Fruit",
"category": "Tropical Fruit",
"main": "mangoData",
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "Pakistan/India",
"generation": "Genus: Mangifera, Family: Anacardiaceae",
"description": "Dusheri Chaunsa mango is a delightful combination of the sweet, tangy flavor of Dusheri with the rich, creamy texture of Chaunsa. It has a vibrant yellow skin with a hint of red when ripe and is highly valued for its aromatic, fiberless flesh. The plant thrives in full sun and well-draining soil.",
"image": ['./img/Dusheri.png', './img/Dusheri1.png', './img/Chaunsa2.png'],
"price": "Rs: 6,000"
}, {
"id": 61,
"name": "Langra Chaunsa Mango",
"species": "Mangifera indica",
"type": "Fruit",
"category": "Tropical Fruit",
"main": "mangoData",
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "Pakistan/India",
"generation": "Genus: Mangifera, Family: Anacardiaceae",
"description": "Langra Chaunsa mango combines the unique tanginess of Langra with the rich sweetness of Chaunsa. It features a greenish-yellow skin and a smooth, fiberless texture. This mango variety is highly valued for its aromatic flavor and juicy flesh. The plant requires full sun and well-draining soil to thrive.",
"image": ['./img/LangraC.png', './img/Langra1.png', './img/Langra2.png'],
"price": "Rs: 7,000"
}, {
"id": 62,
"name": "Banganapalli Chaunsa Mango",
"species": "Mangifera indica",
"type": "Fruit",
"category": "Tropical Fruit",
"main": "mangoData",
"sunlight": "Full Sun",
"water": "Moderate",
"soil": "Well-draining",
"growthRate": "Moderate",
"origin": "Pakistan/India",
"generation": "Genus: Mangifera, Family: Anacardiaceae",
"description": "Banganapalli Chaunsa mango is a hybrid variety that combines the large size and sweetness of Banganapalli with the rich, creamy texture of Chaunsa. It features a golden-yellow skin with a smooth, fiberless texture and is prized for its aromatic flavor. The plant thrives in full sun and well-draining soil.",
"image": ['./img/Banganapalli.png', './img/Banganapalli1.png', './img/Banganapalli2.png'],
"price": "Rs: 7,900"