-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.ts
More file actions
58 lines (58 loc) · 1.77 KB
/
data.ts
File metadata and controls
58 lines (58 loc) · 1.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
import arecanutLeaf from "./src/asset/arecanut_leaf.webp";
import arecanutPlant from "./src/asset/arecanut_plant.webp";
import dryArecanut from "./src/asset/arecanut_dry.webp";
import freshArecanut from "./src/asset/arecanut_fresh.webp";
import lemon from "./src/asset/lemon.jpg";
import pumkin from "./src/asset/pumkin2.jpeg";
import ginger from "./src/asset/ginger.jpg"
export const ProductData = [
{
productId: 1,
productImg: freshArecanut,
productTitle: "Fresh Arecanut",
productDesc:
"Get Fresh Arecanut from different parts of the NorthEast India such as Arunachal, Assam, Megalya and more. Best season for Fresh Arecanut is March - May.",
},
{
productId: 2,
productImg: dryArecanut,
productTitle: "Dry Arecanut",
productDesc:
"Dry Arecanut can be found mostly in Assam and some other parts ot NorthEast.It's available whole year.",
},
{
productId: 3,
productImg: arecanutPlant,
productTitle: "Arecanut Plants",
productDesc:
"Do you want to grow Arecanut? Then get best Areanut Plant now.",
},
{
productId: 4,
productImg: arecanutLeaf,
productTitle: "Arecanut Dry Leaf",
productDesc:
"Arecanut Dry leaf can used to make nature friendly plates and more items.",
},
{
productId: 5,
productImg: pumkin,
productTitle: "Pumkin",
productDesc:
"Pumkins are grown in the foot of the mountains.Get the best quality Pumkin.",
},
{
productId: 6,
productImg: lemon,
productTitle: "Northeast Lemon",
productDesc:
"Lemon that you will find only in NorthEast India.",
},
{
productId: 7,
productImg: ginger,
productTitle: "Ginger",
productDesc:
"Ginger can be used to make different kinds of products.Get best Ginger for your needs.",
}
];