-
Notifications
You must be signed in to change notification settings - Fork 0
/
constants.tsx
192 lines (191 loc) · 6.53 KB
/
constants.tsx
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
const list = [
{
id: "0",
title: "Diabetics",
description:
"Diabetes is a chronic (long-lasting) health condition that affects how your body turns food into energy. Your body breaks down most of the food you eat into sugar (glucose) and releases it into your bloodstream. When your blood sugar goes up, it signals your pancreas to release insulin.",
author: "Arnab Bhattacharya",
commentCount: 3,
category: ["liver"],
upvote: 10,
createdAt: new Date().getTime(),
updatedAt: new Date().getTime(),
views: "173k",
shares: "1.2k",
},
{
id: "1",
title: "Cancer",
description: "Cancer is a group of diseases characterized by the uncontrolled growth and spread of abnormal cells. If left untreated, cancer can cause serious illness and death.",
author: "Samantha Smith",
commentCount: 5,
category: ["sick"],
upvote: 15,
createdAt: new Date().getTime(),
updatedAt: new Date().getTime(),
views: "89k",
shares: "11k",
},
{
id: "2",
title: "Heart Disease",
description: "Heart disease is a broad term that refers to any type of disorder that affects the heart. It is a leading cause of death worldwide.",
author: "John Doe",
commentCount: 2,
category: ["heart"],
upvote: 8,
createdAt: new Date().getTime(),
updatedAt: new Date().getTime(),
views: "45k",
shares: "7.1k",
},
{
id: "3",
title: "Stroke",
description:
"A stroke is a serious, life-threatening medical condition that occurs when the blood supply to part of the brain is cut off. Symptoms of a stroke include weakness, numbness, and difficulty speaking or understanding speech.",
author: "Pinaki Bhattacharjee",
category: ["blood"],
commentCount: 4,
upvote: 12,
createdAt: new Date().getTime(),
updatedAt: new Date().getTime(),
views: "100k",
shares: "5k",
},
{
id: "4",
title: "Asthma",
description: "Asthma is a chronic respiratory disease characterized by inflammation of the airways and difficulty breathing. Symptoms include coughing, wheezing, and shortness of breath.",
author: "Mike Smith",
category: ["pulmonary"],
commentCount: 3,
upvote: 9,
createdAt: new Date().getTime(),
updatedAt: new Date().getTime(),
views: "70k",
shares: "3.1k",
},
{
id: "5",
title: "Influenza",
description: "Influenza, also known as the flu, is a highly contagious respiratory illness caused by the influenza virus. Symptoms include fever, cough, sore throat, and body aches.",
author: "Emma Watson",
category: ["virus"],
commentCount: 6,
upvote: -7,
createdAt: new Date().getTime(),
updatedAt: new Date().getTime(),
views: "120k",
shares: "1.3k",
},
{
id: "6",
title: "Chronic Obstructive Pulmonary Disease (COPD)",
description:
"Chronic obstructive pulmonary disease (COPD) is a chronic inflammatory lung disease that causes obstructed airflow from the lungs. Symptoms include breathing difficulty, cough, mucus (sputum) production and wheezing",
author: "Mike Smith",
commentCount: 3,
category: ["pulmonary"],
upvote: 9,
createdAt: new Date().getTime(),
updatedAt: new Date().getTime(),
views: "70k",
shares: "1.2k",
},
{
id: "7",
title: "Diabetics",
description:
"Diabetes is a chronic (long-lasting) health condition that affects how your body turns food into energy. Your body breaks down most of the food you eat into sugar (glucose) and releases it into your bloodstream. When your blood sugar goes up, it signals your pancreas to release insulin.",
author: "Arnab Bhattacharya",
commentCount: 3,
category: ["liver"],
upvote: 10,
createdAt: new Date().getTime(),
updatedAt: new Date().getTime(),
views: "173k",
shares: "1.2k",
},
{
id: " 8",
title: "Cancer",
description: "Cancer is a group of diseases characterized by the uncontrolled growth and spread of abnormal cells. If left untreated, cancer can cause serious illness and death.",
author: "Samantha Smith",
commentCount: 5,
category: ["sick"],
upvote: -15,
createdAt: new Date().getTime(),
updatedAt: new Date().getTime(),
views: "89k",
shares: "1.2k",
},
{
id: " 9",
title: "Heart Disease",
description: "Heart disease is a broad term that refers to any type of disorder that affects the heart. It is a leading cause of death worldwide.",
author: "John Doe",
category: ["cardiology"],
commentCount: 2,
upvote: 8,
createdAt: new Date().getTime(),
updatedAt: new Date().getTime(),
views: "45k",
shares: "1.2k",
},
{
id: "10",
title: "Stroke",
category: ["blood", "cardiology", "sick"],
description:
"A stroke is a serious, life-threatening medical condition that occurs when the blood supply to part of the brain is cut off. Symptoms of a stroke include weakness, numbness, and difficulty speaking or understanding speech.",
author: "Jane Doe",
commentCount: 4,
upvote: -12,
createdAt: new Date().getTime(),
updatedAt: new Date().getTime(),
views: "100k",
shares: "1.2k",
},
{
id: "11",
title: "Asthma",
description: "Asthma is a chronic respiratory disease characterized by inflammation of the airways and difficulty breathing. Symptoms include coughing, wheezing, and shortness of breath.",
author: "Mike Smith",
category: ["lungs", "pulmonary"],
commentCount: 3,
upvote: 9,
createdAt: new Date().getTime(),
updatedAt: new Date().getTime(),
views: "70k",
shares: "1.2k",
},
{
id: "12",
title: "Influenza",
description: "Influenza, also known as the flu, is a highly contagious respiratory illness caused by the influenza virus. Symptoms include fever, cough, sore throat, and body aches.",
author: "Emma Watson",
category: ["virus", "sick"],
commentCount: 6,
upvote: 17,
createdAt: new Date().getTime(),
updatedAt: new Date().getTime(),
views: "120k",
shares: "1.2k",
},
{
id: "13",
title: "Chronic Obstructive Pulmonary Disease (COPD)",
description:
"Chronic obstructive pulmonary disease (COPD) is a chronic inflammatory lung disease that causes obstructed airflow from the lungs. Symptoms include breathing difficulty, cough, mucus (sputum) production and wheezing",
author: "Mike Smith",
category: ["lungs", "pulmonary"],
commentCount: 3,
upvote: 9,
createdAt: new Date().getTime(),
updatedAt: new Date().getTime(),
views: "70k",
shares: "1.2k",
},
];
export { list };