-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
466 lines (372 loc) · 16.3 KB
/
App.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
import React from 'react';
import logo from './logo.svg';
import './App.css';
import SubHeader from './components/Sub_Header'
import avatar from './assets/danish.jpg'
import {AiOutlineMail,AiOutlinePhone ,AiFillLinkedin} from 'react-icons/ai'
import {GrLocation} from 'react-icons/gr'
import {FiTwitter} from 'react-icons/fi'
import {BiFootball} from 'react-icons/bi'
import {SiYoutubegaming} from 'react-icons/si'
import {ImBooks} from 'react-icons/im'
import {VscSymbolNamespace} from 'react-icons/vsc'
import {BsArrowRightShort} from 'react-icons/bs'
function App() {
return (
<div className='container'>
<div className="App">
{/* this is the top most section of the resume */}
<div className="introduction">
<div className="name__image__wrapper">
<div className="name">
<h1>Danish Mehmood</h1>
</div>
<div className="my_image">
<img height='100px' width='100px' src={avatar} alt=""/>
<div className="my_image__overlay"></div>
</div>
</div>
<div className="professional_description">
<h2>web developer / javascript developer</h2>
</div>
</div>
<div className="profile__section__wrapper">
<div className="profile__section">
<SubHeader font='20px' text='Profile' />
<div className="social_contacts">
<div className="email">
<AiOutlineMail size='35' color='#1411a6'/>
<div className="specifics">
<h3>Email</h3>
<h3>[email protected]</h3>
</div>
</div>
<div className="phone">
<AiOutlinePhone size='35' color='#1411a6'/>
<div className="specifics">
<h3>Phone</h3>
<h3>03345600371</h3>
</div>
</div>
<div className="location">
<GrLocation size='35' color='#1411a6'/>
<div className="specifics">
<h3>Location</h3>
<h3>Pakistan, Islamabad</h3>
</div>
</div>
<div className="linkedin">
<AiFillLinkedin size='35' color='#1411a6'/>
<div className="specifics">
<h3>linkedIn</h3>
<h3>@danish-mehmood</h3>
</div>
</div>
<div className="twitter">
<FiTwitter size='35' color='#1411a6'/>
<div className="specifics">
<h3>Twitter</h3>
<h3>@FkDanish</h3>
</div>
</div>
</div>
</div>
<div className="skills__stuff">
<div className="left__most__skills">
<div className="left__div__one">
<SubHeader text='Education' font='14px'/>
<p className='skills__paragraph'>
Fauji Foundation university rawalpindi campus
Bachelors in Sofware Engineering
batch 2015-2019 with <strong>3.4/4.0</strong> cgpa
</p>
</div>
<div className="left__div__two">
<SubHeader text='Languages' font='14px'/>
<p className="skills__paragraph">
fluent in written/verbal urdu and
english
</p>
</div>
</div>
<div className="center__skills">
<SubHeader text='Software Skills' font='14px'/>
<p className="skills__paragraph">
ReactJS <br/>
NodeJS <br/>
HTML <br/>
JS <br/>
MongoDB <br/>
Postgres <br/>
Mysql <br/>
Git <br/>
Redis <br/>
Animations <br/>
CSS <br/>
Postman <br/>
Typescript <br/>
GraphQL <br/>
</p>
</div>
<div className="right__most__skills">
<div className="right__div__one">
<SubHeader text='Expertise' font='14px'/>
<p className="skills__paragraph">
API Development <br/>
API Testing <br/>
Front/Backend state management <br/>
Frontend Testing <br/>
BackendTesting <br/>
Best Security Practices <br/>
Database Designing <br/>
ERDs <br/>
Deployments <br/>
</p>
</div>
<div className="right__div__two">
<SubHeader text='Interests' font='14px'/>
<div className="interests">
<VscSymbolNamespace size='20' color='#1411a6'/>
<BiFootball size='20' color='#1411a6'/>
<ImBooks size='20' color='#1411a6'/>
<SiYoutubegaming size='20' color='#1411a6'/>
</div>
</div>
</div>
</div>
<div className="experiences">
<div className="sub__wrapper">
<SubHeader text = 'work experience' font='20px'/>
</div>
<div className="first__experience">
<div className="place__of__experience">
<h3>Aspire Logics (contractual)</h3>
</div>
<div className="experience__right__section">
<div className="designation__experience">
<h3>PHP and JS Developer</h3>
<p>worked at Aspire Logics as a PHP and JS developer
it was a contractual 3 months job and it was overall
good experience during this time i learnt alot
</p>
</div>
<div className="duties__projects__wrapper__designation">
<div className="duties__designation">
<h3>Duties and Resposibilities</h3>
<p> <BsArrowRightShort size='10'color='#1411a6'/> i was responsible for gathering all the requirements
from my project manager </p>
<p><BsArrowRightShort size='10' color='#1411a6'/> i was responsible for sometimes gathering the requirements from
the client</p>
<p><BsArrowRightShort size='10' color='#1411a6'/> i was responsible for developing the full-stack applications from front to back
</p>
<p><BsArrowRightShort size='10' color='#1411a6'/> i was responsible to work in coordination with my collegues </p>
<p><BsArrowRightShort size='10' color='#1411a6'/> i was responsible to communicate the everyday development to the client
</p>
<p><BsArrowRightShort size='10' color='#1411a6'/> i was responsible to push the code to github everyday</p>
<p><BsArrowRightShort size='10' color='#1411a6'/> i also had to manage multiple projects at a time aswell</p>
</div>
<div className="notable__projects__designation">
<h3>Notable Projects</h3>
<p>
<BsArrowRightShort size='10' color='#1411a6'/> shopandshout.com
</p>
<p>
<BsArrowRightShort size='10' color='#1411a6'/> gateway2fb.com
</p>
<p>
<BsArrowRightShort size='10' color='#1411a6'/> health
</p>
</div>
</div>
</div>
</div>
</div>
<div className="experiences experience2 ">
<div className="placeholder">
</div>
<div className="first__experience">
<div className="place__of__experience">
<h3>Relicsol (contractual)</h3>
</div>
<div className="experience__right__section">
<div className="designation__experience">
<h3>PHP and JS Developer</h3>
<p>worked at relicsol as a PHP and JS developer
it was a contractual 1 months job and it was overall
good experience during this time i learnt tones of new things
and technologies it was a small company where i had to manage
many things at a time which played a huge role in my development as
a software engineer
</p>
</div>
<div className="duties__projects__wrapper__designation">
<div className="duties__designation">
<h3>Duties and Resposibilities</h3>
<p> <BsArrowRightShort size='10'color='#1411a6'/> i had to manage big applications of bigger and smaller size </p>
<p><BsArrowRightShort size='10' color='#1411a6'/>i was also leading the team of two whom i had to guide </p>
<p><BsArrowRightShort size='10' color='#1411a6'/> i was responsible for making the new APIs
</p>
<p><BsArrowRightShort size='10' color='#1411a6'/>i used laravel and node js at the backend and blade engine and react js at the frontend</p>
<p><BsArrowRightShort size='10' color='#1411a6'/> i was also responsible to talk to clients and gather the requirements
</p>
<p><BsArrowRightShort size='10' color='#1411a6'/> i was responsible for making the changes as the client requested</p>
</div>
<div className="notable__projects__designation">
<h3>Notable Projects</h3>
<p>
<BsArrowRightShort size='10' color='#1411a6'/>thelife.pk
</p>
<p>
<BsArrowRightShort size='10' color='#1411a6'/> relicsol.com
</p>
<p>
<BsArrowRightShort size='10' color='#1411a6'/> emiratesmarketing.pk
</p>
<p>
<BsArrowRightShort size='10' color='#1411a6'/> phdec.gov.pk
</p>
<p>
<BsArrowRightShort size='10' color='#1411a6'/> propertytime.pk
</p>
</div>
</div>
</div>
</div>
</div>
<div className="spacer"></div>
</div>
</div>
<div className="App2">
<div className="experiences experience2 ">
<div className="placeholder">
</div>
<div className="first__experience">
<div className="place__of__experience">
<h3>Qubitsol</h3>
</div>
<div className="experience__right__section">
<div className="designation__experience">
<h3>PHP and JS Developer</h3>
<p>worked at Qubitsol as a PHP and JS developer
worked on various projects and some big ones as well
like oxford universities web application. But my growth was
hindered because i was doing those things which i already knew
and there was nothing challenging to work on
</p>
</div>
<div className="duties__projects__wrapper__designation">
<div className="duties__designation">
<h3>Duties and Resposibilities</h3>
<p> <BsArrowRightShort size='10'color='#1411a6'/> i had to make minor and major changes to the frontend </p>
<p><BsArrowRightShort size='10' color='#1411a6'/> i was responsible for making changes to the backend</p>
<p><BsArrowRightShort size='10' color='#1411a6'/> i was responsible for maintaining large applications
</p>
<p><BsArrowRightShort size='10' color='#1411a6'/> i was using either React js or simple html css and js at the frontend </p>
<p><BsArrowRightShort size='10' color='#1411a6'/> i was using opencart ,wordpress , laravel and node js at the backend
</p>
<p><BsArrowRightShort size='10' color='#1411a6'/> i was responsible for API development as well </p>
</div>
<div className="notable__projects__designation">
<h3>Notable Projects</h3>
<p>
<BsArrowRightShort size='10' color='#1411a6'/> culturalexpertise.net
</p>
<p>
<BsArrowRightShort size='10' color='#1411a6'/> www.amdetails.co.uk
</p>
<p>
<BsArrowRightShort size='10' color='#1411a6'/> ahbrass.co.uk
</p>
<p>
<BsArrowRightShort size='10' color='#1411a6'/> zarela.co.uk
</p>
</div>
</div>
</div>
</div>
</div>
<div className="experiences ">
<div className="placeholder">
</div>
<div className="first__experience">
<div className="place__of__experience">
<h3>Freelancing</h3>
</div>
<div className="experience__right__section">
<div className="designation__experience">
<h3>Fullstack JS and PHP developer</h3>
<p>i have been doing freelancing since the days of university
i have learnt the most while doing freelancing as you have to work
on everything yourself google becomes your best friend . i have solved
many problems and found many ways to make things work
</p>
</div>
<div className="duties__projects__wrapper__designation">
<div className="duties__designation">
<h3>Duties and Resposibilities</h3>
<p> <BsArrowRightShort size='10'color='#1411a6'/> i was able to create projects front to back using JS stack </p>
<p><BsArrowRightShort size='10' color='#1411a6'/> i was responsible to gather all the requirements</p>
<p><BsArrowRightShort size='10' color='#1411a6'/> i have also migrated or maintained the legacy code bases
</p>
<p><BsArrowRightShort size='10' color='#1411a6'/> i was also sometimes responsible for deployment of applications </p>
<p><BsArrowRightShort size='10' color='#1411a6'/> i also did code reviews to patch the security threats
</p>
</div>
<div className="notable__projects__designation">
<h3>Notable Projects</h3>
<p>
<BsArrowRightShort size='10' color='#1411a6'/> intranet system
</p>
<p>
<BsArrowRightShort size='10' color='#1411a6'/> dropbox like file sharing
</p>
<p>
<BsArrowRightShort size='10' color='#1411a6'/>social media post sharer like buffer
</p>
<p>
<BsArrowRightShort size='10' color='#1411a6'/> death certificate generator and sharing
</p>
</div>
</div>
</div>
</div>
</div>
<div className="interships">
<SubHeader text='Intership' font='20px'/>
<div className="inner__wrapper__internships">
<div className="place__date">
<h3>Fauji foundation sona towers IT department</h3>
</div>
<div className="role">
<h3>Software Developer</h3>
<p>worked at fauji foundation sona tower IT department
which was a brilliant experience got to work with my fellow
internees and some very experienced developers
we were given a task that we needed to accomplish in less than 2 months
and task was to make the whole IT department paperless by making a Document
management system and we accomplished that using the laravel and react js tech stack
</p>
</div>
</div>
</div>
</div>
</div>
);
}
export default App;
/** <div className="skills__stuff">
<div className="left__most__skills">
<div className="left__div__one">
</div>
<div className="left__div__two">
</div>
</div>
<div className="center__skills">
</div>
<div className="right__most__skills">
<div className="right__div__one">
</div>
<div className="right__div__two">
</div>
</div>
</div> */