-
Notifications
You must be signed in to change notification settings - Fork 0
/
doctor.js
163 lines (163 loc) · 3.69 KB
/
doctor.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
export default doctorData = [
{
need: 'Tooth Problem',
name: 'Tooth, Teeth, Dental, Dentist, Cavity, Toothache',
info: 'Dr. Hema Jha',
post: 'Dentist',
contact: '9841815537',
},
{
need: 'Tooth Problem',
name: 'Tooth, Teeth, Dental, Dentist, Cavity, Toothache',
info: 'Dr. Sanjay P Gupta',
post: 'Dentist',
contact: '9860042395',
},
{
need: 'Tooth Problem',
name: 'Tooth, Teeth, Dental, Dentist, Cavity, Toothache',
info: 'Dr. Shrijana Shrestha',
post: 'Dentist',
contact: '9860305628',
},
{
need: 'Tooth Problem',
name: 'Tooth, Teeth, Dental, Dentist, Cavity, Toothache',
info: 'Dr. Bisnu Bastola',
post: 'Dentist',
contact: '9841380608',
},
{
need: 'Tooth Problem',
name: 'Tooth, Teeth, Dental, Dentist, Cavity, Toothache',
info: 'Dr. Sichan Shrestha',
post: 'Dentist',
contact: '9868910668',
},
{
need: 'Physiotherapy',
name: 'BackPain, NeckPain, BodyPain, Physiotherapy',
info: 'Dr. Birason Rajbhandari',
post: 'Physiotherapist',
contact: '9851133590',
},
{
need: 'Physiotherapy',
name: 'BackPain, NeckPain, BodyPain, Physiotherapy',
info: 'Dr. Bandana Acharya',
post: 'Physiotherapist',
contact: '9851243555',
},
{
need: 'Physiotherapy',
name: 'BackPain, NeckPain, BodyPain, Physiotherapy',
info: 'Dr. Vimal Prajapati',
post: 'Physiotherapist',
contact: '9818760573',
},
{
need: 'Eye Problem',
name: 'Eye, Eyes, Optometry',
info: 'Dr. Krishna Pokharel',
post: 'Optometrist',
contact: '9851061108',
},
{
need: 'Eye Problem',
name: 'Eye, Eyes, Optometry',
info: 'Dr. Shyam Vyas',
post: 'Ophthalmologist',
contact: '01-4445746',
},
{
need: 'Eye Problem',
name: 'Eye, Eyes, Optometry',
info: 'Dr. Apurva Ratna Tamrakar',
post: 'Eye Surgeon',
contact: '01-4269972',
},
{
need: 'Eye Problem',
name: 'Eye, Eyes, Optometry',
info: 'Dr. Reeta Limbu',
post: 'Optometrist',
contact: '9843393583',
},
{
need: 'Eye Problem',
name: 'Eye, Eyes, Optometry',
info: 'Dr. Ben Limbu',
post: 'Eye Surgeon',
contact: '9864592421',
},
{
need: 'Eye Problem',
name: 'Eye, Eyes, Optometry',
info: 'Dr. Rachana Singh Rana',
post: 'Cornea Specialist',
contact: '01-4228531',
},
{
need: 'Heart Problem',
name: 'Heart, Cardiologist',
info: 'Dr. Parag Karki',
post: 'Cardiologist',
contact: '9863393960',
},
{
need: 'Heart Problem',
name: 'Heart, Cardiologist',
info: 'Dr. Om Murti Anil',
post: 'Cardiologist',
contact: '9843118902',
},
{
need: 'Heart Problem',
name: 'Heart, Cardiologist',
info: 'Dr. Abhishek Thakur',
post: 'Cardiologist',
contact: '9801872311',
},
{
need: 'Heart Problem',
name: 'Heart, Cardiologist',
info: 'Dr. Shuva J. B. Rana',
post: 'MD Cardiologist',
contact: '9843110554',
},
{
need: 'Heart Problem',
name: 'Heart, Cardiologist',
info: 'Dr. Dipendra Singh',
post: 'Registrar Cardiology',
contact: '9841888956',
},
{
need: 'Heart Problem',
name: 'Heart, Cardiologist',
info: 'Dr. Bijay Khadka',
post: 'MD INTERNAL MEDICINE',
contact: '9843243816',
},
{
need: 'Skin Problem',
name: 'SkinCare, Skin',
info: 'Dr. Pramod Agarwal',
post: 'Dermatologist',
contact: '9851110443',
},
{
need: 'Skin Problem',
name: 'SkinCare, Skin',
info: 'Dr. Romphuanjit',
post: 'Dermatologist',
contact: '9851149709',
},
{
need: 'Skin Problem',
name: 'SkinCare, Skin',
info: 'Dr. Raj Bhandari',
post: 'Dermatologist',
contact: '9851037827',
},
];