-
Notifications
You must be signed in to change notification settings - Fork 142
/
constants.js
125 lines (124 loc) · 4.23 KB
/
constants.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
export const Category = [
{
name: "Tablet",
image: "https://ascendpkg.com/wp-content/uploads/2022/04/April-1-tablet-Sizes-and-Shapes-1500x430.jpg",
Url: "/Tablet"
},
{
name: "Syrup",
image: "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQsFEwYOlEU2hz6lF26jtoaSmx6W9N5ajGHI_QicZ4teQ&s",
Url: "/Syrup"
},
{
name: "Injection",
image: "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRZi8NSRsnP-gGFTqAygZGXs_IYylbWS0N1TlQy_nOYPA&s",
Url: "/Injection"
},
{
name: "Drops",
image: "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ7xqwt7Pfvs7su9BbBDz_el2sWehmBtRfUdEvmugcLsg&s",
Url: "/Drops"
},
{
name: "Cream",
image: "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTU9Vgb85O_F57EiAAhoaNABbo5a89P90iAmac5Fy5mdA&s",
Url: "/Cream"
},
{
name: "Powder",
image: "https://5.imimg.com/data5/XW/RN/LA/SELLER-12928269/clotrimazole-absorbent-dusting-powder-500x500.jpg",
Url: "/Powder"
},
{
name: "Lotion",
image: "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRAHwlSrhOjECTLacLwADs6EtAaUMtaoUc2NtqI78g_hQ&s",
Url: "/Lotion"
},
{
name: "Inhaler",
image: "https://images.ctfassets.net/yixw23k2v6vo/3TwswvThagKcemsqOAeuig/45faa747f59343d2d5cc09be6f798b6e/Asthma-medicine-iStock-862732624.jpg",
Url: "/Inhaler"
}
]
export const Products = [
{
id: 1,
name: "Amoxicillin",
category: "tablet",
image: "https://example.com/images/amoxicillin.jpg",
price: "$15.00",
description: "Amoxicillin is an antibiotic used to treat a variety of bacterial infections."
},
{
id: 2,
name: "Ibuprofen",
category: "injection",
image: "https://example.com/images/ibuprofen.jpg",
price: "$8.00",
description: "Ibuprofen is a nonsteroidal anti-inflammatory drug (NSAID) used for relieving pain and reducing fever."
},
{
id: 3,
name: "Vitamin C 500mg",
category: "syrup",
image: "https://example.com/images/vitamin-c.jpg",
price: "$12.00",
description: "Vitamin C 500mg tablets help support the immune system and provide antioxidant benefits."
},
{
id: 4,
name: "Blood Pressure Monitor",
category: "tablet",
image: "https://example.com/images/blood-pressure-monitor.jpg",
price: "$45.00",
description: "This Blood Pressure Monitor provides accurate blood pressure readings and is easy to use at home."
},
{
id: 5,
name: "Moisturizing Lotion",
category: "injection",
image: "https://example.com/images/moisturizing-lotion.jpg",
price: "$10.00",
description: "Moisturizing Lotion helps to keep your skin hydrated and smooth."
},
{
id: 6,
name: "Moisturizing Lotion",
category: "syrup",
image: "https://example.com/images/moisturizing-lotion.jpg",
price: "$10.00",
description: "Moisturizing Lotion helps to keep your skin hydrated and smooth."
},
{
id: 7,
name: "Moisturizing Lotion",
category: "drops",
image: "https://example.com/images/moisturizing-lotion.jpg",
price: "$10.00",
description: "Moisturizing Lotion helps to keep your skin hydrated and smooth."
},
{
id: 8,
name: "Moisturizing Lotion",
category: "drops",
image: "https://example.com/images/moisturizing-lotion.jpg",
price: "$10.00",
description: "Moisturizing Lotion helps to keep your skin hydrated and smooth."
},
{
id: 9,
name: "Moisturizing Lotion",
category: "lotion",
image: "https://example.com/images/moisturizing-lotion.jpg",
price: "$10.00",
description: "Moisturizing Lotion helps to keep your skin hydrated and smooth."
},
{
id: 10,
name: "Moisturizing Lotion",
category: "inhaler",
image: "https://example.com/images/moisturizing-lotion.jpg",
price: "$10.00",
description: "Moisturizing Lotion helps to keep your skin hydrated and smooth."
},
];