-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1177 lines (1128 loc) · 42.8 KB
/
index.html
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
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<script src="scripts/jquery.js"></script>
<!-- Google Tag Manager -->
<script>
(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({ "gtm.start": new Date().getTime(), event: "gtm.js" });
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != "dataLayer" ? "&l=" + l : "";
j.async = true;
j.src = "https://www.googletagmanager.com/gtm.js?id=" + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, "script", "dataLayer", "GTM-5BB8W2X");
</script>
<!-- End Google Tag Manager -->
<link rel="icon" type="image/png" href="/favicon.png" />
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>Mohamed Sultan</title>
<meta content="" name="descriptison" />
<meta content="" name="keywords" />
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet"
/>
<!-- Vendor CSS Files -->
<link
href="assets/vendor/bootstrap/css/bootstrap.min.css"
rel="stylesheet"
/>
<link href="assets/vendor/icofont/icofont.min.css" rel="stylesheet" />
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet" />
<link
href="assets/vendor/owl.carousel/assets/owl.carousel.min.css"
rel="stylesheet"
/>
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet" />
<link href="assets/vendor/venobox/venobox.css" rel="stylesheet" />
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-169007209-3"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-169007209-3");
</script>
<!-- =======================================================
* Template Name: Personal - v2.1.0
* Template URL: https://bootstrapmade.com/personal-free-resume-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript
><iframe
src="https://www.googletagmanager.com/ns.html?id=GTM-5BB8W2X"
height="0"
width="0"
style="display: none; visibility: hidden"
></iframe
></noscript>
<!-- End Google Tag Manager (noscript) -->
<!-- ======= Header ======= -->
<header id="header" class="header-tops">
<div class="container">
<h1><a href="index.html">Mohamed Sultan</a></h1>
<h2 style="color: #fff">
I'm <span class="typing" style="color: #12d640"></span>
</h2>
<nav class="nav-menu d-none d-lg-block">
<ul>
<li class="active">
<a href="#header"> <span>Home</span></a>
</li>
<li>
<a href="#about"><span>About</span></a>
</li>
<li>
<a href="#education"> <span>Education</span></a>
</li>
<li>
<a href="#experience"> <span>Experience</span></a>
</li>
<!-- <li><a href="#projects"> <span>Projects</span></a></li>-->
<li>
<a href="#portfolio"> <span>Projects</span></a>
</li>
<li>
<a href="#skills"> <span>Skills</span></a>
</li>
<li>
<a
href="https://drive.google.com/file/d/1OeW-6xNxyxIE8eB9AYQ-gEaqjfMbJuGU"
target="_blank"
>
<span>Resume</span></a
>
</li>
<!-- <li><a href="#links"> <span>Resume & Links</span></a></li> -->
<li>
<a href="#contacts"> <span>Contact</span></a>
</li>
</ul>
</nav>
<!-- .nav-menu -->
<div class="social-links">
<a
href="https://www.linkedin.com/in/mohamedhassansultan/"
target="_blank"
class="linkedin"
><i class="bx bxl-linkedin"></i
></a>
<a
href="https://github.com/mohamed-sultan"
target="_blank"
class="github"
><i class="bx bxl-github"></i
></a>
<a
href="mailto:[email protected]
"
target="_blank"
class="google"
><i class="bx bxl-google"></i
></a>
</div>
</div>
</header>
<!-- End Header -->
<!-- ======= About Section ======= -->
<section id="about" class="about">
<!-- ======= About Me ======= -->
<div class="about-me container">
<div class="section-title">
<h2>About</h2>
</div>
<div class="row">
<div class="col-lg-4" data-aos="fade-right">
<img src="assets/img/profile1.jpeg" class="img-fluid" alt="" />
</div>
<div class="col-lg-8 pt-4 pt-lg-0 content" data-aos="fade-left">
<p>
A Software engineer with +5 years of experience in building
software products with a scalable and distributed architecture
that are easy to evolve and maintain to serve millions of users
and make a significant impact on their daily life.
</p>
<div class="row">
<div class="col-lg-6">
<ul>
<li>
<i class="icofont-rounded-right"></i>
<strong>Birthday:</strong> 27 02 1993
</li>
<li>
<i class="icofont-rounded-right"></i>
<strong>Phone:</strong> +966 597059283
</li>
</ul>
</div>
<div class="col-lg-6">
<ul>
<li>
<i class="icofont-rounded-right"></i>
<strong>City:</strong> Riyadh, KSA
</li>
<li>
<i class="icofont-rounded-right"></i>
<strong>Email:</strong> [email protected]
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- End About Me -->
<!-- ======= Interests ======= -->
<div class="interests container">
<div class="section-title">
<h2>Interests</h2>
</div>
<div class="row">
<div class="col-lg-3 col-md-4">
<div class="icon-box">
<i class="ri-global-line" style="color: #ffbb2c"></i>
<h3>Software Development</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4 mt-md-0">
<div class="icon-box">
<i class="ri-database-2-line" style="color: #5578ff"></i>
<h3>Data bases</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4 mt-md-0">
<div class="icon-box">
<i class="ri-camera-3-line" style="color: #e80368"></i>
<h3>Frontend development</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4 mt-lg-0">
<div class="icon-box">
<i class="ri-english-input" style="color: #1c7d32"></i>
<h3>Backend Development</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class="ri-code-s-slash-fill" style="color: #28a745"></i>
<h3>Software Engineering</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class="ri-bar-chart-box-line" style="color: #f1081f"></i>
<h3>Ui Designs</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class="ri-file-list-3-line" style="color: #47aeff"></i>
<h3>Algorithms</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class="ri-image-line" style="color: #ffc107"></i>
<h3>Mobile app development</h3>
</div>
</div>
</div>
</div>
<!-- End Interests -->
</section>
<!-- End About Section -->
<!-- ======= Education Section ======= -->
<section id="education" class="services">
<div class="container">
<div class="section-title">
<h2>Education</h2>
</div>
<div class="row">
<div
class="col-lg-12"
data-aos="fade-up"
style="display: inline-block"
>
<div
class="col-md-4 mt-4 mt-md-0 icon-box"
data-aos="fade-up"
data-aos-delay="100"
style="
padding: 0px 0px;
padding-bottom: 5px;
display: inline-block;
"
>
<img
style="object-fit: cover; width: 100%"
src="./assets/img/certification/helwan.jpeg"
class="img-fluid"
alt=""
/>
<!-- <h4 style="text-align:left;"><a href="https://ahduni.edu.in/" target="_blank" style="color:#12d640">Ahmedabad University</a><br> </h4> -->
<p style="text-align: left; color: #fff; padding: 5px 10px">
<em>bachelor degree in computer science helwan university</em>
</p>
<h5 style="text-align: left; padding: 0px 10px">june 2016</h5>
</div>
</div>
</div>
</div>
<div class="portfolio">
<div class="container">
<div class="section-title">
<h2>Online Certification</h2>
</div>
<div
class="row portfolio-container"
style="position: relative; height: 437.75px"
>
<div
class="col-lg-4 col-md-6 portfolio-item filter-app"
style="position: absolute; left: 0px; top: 0px"
>
<div class="portfolio-wrap">
<img
src="./assets/img/certification/cluster.jpeg"
class="img-fluid"
alt=""
/>
<div class="portfolio-info">
<h4>Node JS Cluster with PM2, RabbitMQ</h4>
<div class="portfolio-links">
<a
href="https://www.udemy.com/certificate/UC-2521afc8-64af-4ffe-ab79-1eb395145f94/"
target="_blank"
title="Certificate"
><i class="bx bx-link"></i
></a>
</div>
</div>
</div>
</div>
<div
class="col-lg-4 col-md-6 portfolio-item filter-app"
style="position: absolute; left: 370px; top: 0px"
>
<div class="portfolio-wrap">
<img
src="./assets/img/certification/render.jpeg"
class="img-fluid"
alt=""
/>
<div class="portfolio-info">
<h4>
Advanced React (Render Performance Best Practices Patterns)
</h4>
<div class="portfolio-links">
<a
href="https://www.udemy.com/certificate/UC-9dbe261f-b9a4-4cb3-a6aa-b50941d79844/"
target="_blank"
title="Certificate"
><i class="bx bx-link"></i
></a>
</div>
</div>
</div>
</div>
<div
class="col-lg-4 col-md-6 portfolio-item filter-app"
style="position: absolute; left: 740px; top: 0px"
>
<div class="portfolio-wrap">
<img
src="./assets/img/certification/dart.jpeg"
class="img-fluid"
alt=""
/>
<div class="portfolio-info">
<h4>The Complete Flutter Development Bootcamp with Dart</h4>
<div class="portfolio-links">
<a
href="https://www.udemy.com/certificate/UC-61319b6e-d6e4-45f2-9caf-a6b2a0bfb884"
target="_blank"
title="Certificate"
><i class="bx bx-link"></i
></a>
</div>
</div>
</div>
</div>
<div
class="col-lg-4 col-md-6 portfolio-item filter-project"
style="position: absolute; left: 0px; top: 218.875px"
>
<div class="portfolio-wrap">
<img
src="./assets/img/certification/fastlane.jpeg"
class="img-fluid"
alt=""
/>
<div class="portfolio-info">
<h4>
Fastlane for React Native: Deploy your app autonomously!
</h4>
<div class="portfolio-links">
<a
href="https://www.udemy.com/certificate/UC-00eb059f-c0cb-456b-a393-edee5d442b30/"
target="_blank"
title="Certificate"
><i class="bx bx-link"></i
></a>
</div>
</div>
</div>
</div>
<div
class="col-lg-4 col-md-6 portfolio-item filter-project"
style="position: absolute; left: 370px; top: 218.875px"
>
<div class="portfolio-wrap">
<img
src="./assets/img/certification/ete.jpeg"
class="img-fluid"
alt=""
/>
<div class="portfolio-info">
<h4>React Native E2E Testing iOS Apps with Detox</h4>
<div class="portfolio-links">
<a
href="https://www.udemy.com/certificate/UC-ce4f4eba-3566-4c1b-8ca9-96c5a6c0146e/"
target="_blank"
title="Certificate"
><i class="bx bx-link"></i
></a>
</div>
</div>
</div>
</div>
<div
class="col-lg-4 col-md-6 portfolio-item filter-project"
style="position: absolute; left: 740px; top: 218.875px"
>
<div class="portfolio-wrap">
<img
src="./assets/img/certification/oreo.jpeg"
class="img-fluid"
alt=""
/>
<div class="portfolio-info">
<h4>
The Complete Android Oreo Developer Course - Build 23 Apps
</h4>
<div class="portfolio-links">
<a
href="https://www.udemy.com/certificate/UC-5e9dddf0-ede2-4252-9e6d-ef98284a2653/"
target="_blank"
title="Certificate"
><i class="bx bx-link"></i
></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Education Section -->
<!-- Start Experience Section -->
<section id="experience" class="services">
<div class="container">
<div class="section-title">
<h2>Experience</h2>
</div>
<div class="row">
<div class="col-lg-12" data-aos="fade-up">
<div
class="col-md-12 mt-4 mt-md-0 icon-box"
data-aos="fade-up"
data-aos-delay="100"
>
<h4 style="text-align: left">
<a href="https://yaqoot.sa/en" style="color: #12d640"
>Zain ksa</a
><br />
</h4>
<h5 style="text-align: left">march 2022 - Present</h5>
<p style="text-align: left; color: #fff">
<em>senior mobile application engineer </em>
</p>
<ul style="text-align: left">
<li>
doing react and react native for Yaqoot App with over 1Million
users which manage Sim and Esim data also package management.
</li>
<li>
refactor old codes and create reusable design system
components for the team that used across the app which is
fully tested and covered using jest and react testing library
providing unit , snapshot and integration testing
</li>
<li>
improve the render of the mobile application using react best
practice and render performance , collaborate with the ui ux
teams to enhance the user experience on the mobile application
monitoring and tracking apis response in Sentry Io improve
mobile application security best practice across the frontend
app
</li>
<li>
provide product support for the TIS hot fixes issues reported
by the product and QA team
</li>
</ul>
</div>
<div
class="col-md-12 mt-4 mt-md-0 icon-box"
data-aos="fade-up"
data-aos-delay="100"
>
<h4 style="text-align: left">
<a href="https://www.augmenify.com/" style="color: #12d640"
>Deloitte.</a
><br />
</h4>
<h5 style="text-align: left">march 2021 - march 2022</h5>
<p style="text-align: left; color: #fff">
<em>consultant</em>
</p>
<ul style="text-align: left">
<li>
frontend developer doing reactjs and react native for emkan
finance app for Al Rajhi Bank with over 500k user.
</li>
<li>
main role was doing the frontend web and mobile application
with typescript and jest also using redux for state management
</li>
<li>
doing code reviewing the frontend pull requests form other
team member and providing hot fixes and manage frontend
releases using the ci cid pipelines.
</li>
</ul>
</div>
<div
class="col-md-12 mt-4 mt-md-0 icon-box"
data-aos="fade-up"
data-aos-delay="100"
>
<h4 style="text-align: left">
<a
href="https://www.epitomesolutions.in/"
style="color: #12d640"
>labayh</a
><br />
</h4>
<h5 style="text-align: left">May 2019 - March 2020</h5>
<p style="text-align: left; color: #fff">
<em>senior react native nodejs developer</em>
</p>
<ul style="text-align: left">
<li>
leading labayh products for more than 300k user using react
and react native backed with nodejs and socket io using
mongodb with s3 deployed on digital ocean cluster integrated
</li>
<li>
integrate third party libraries like payfort , agora,
fcm,intercom,sentry,full story using appcenter and code push
for over the air updates
</li>
<li>
main role was viewing the merge requests from the team members
and mange releases and automate the build process and increase
the test coverage using jest as test runner
</li>
<li>
working on labayh and labyah consultant app with react native
and redux with socket io for real time chat , doing the next
js for the server side render of the labayh web aplication .
the main role was to rewrite the native application intro
react native app distribute the app into app store and google
play as initial release
</li>
</ul>
</div>
<div
class="col-md-12 mt-4 mt-md-0 icon-box"
data-aos="fade-up"
data-aos-delay="100"
>
<h4 style="text-align: left">
<a
href="https://www.meditab.com/"
target="_blank"
style="color: #12d640"
>new conecpt</a
><br />
</h4>
<h5 style="text-align: left">March 2018 - december 2019</h5>
<p style="text-align: left; color: #fff">
<em>full stack javascript developer</em>
</p>
<ul style="text-align: left">
<li>
building mobile and web apps using react and react native cli
with redux thunk and persist for state management
</li>
<li>
backed with nodejs express and mongodb with fastlane as ci cd
and bootstrap as the ui library for the frontend component
</li>
</ul>
</div>
<div
class="col-md-12 mt-4 mt-md-0 icon-box"
data-aos="fade-up"
data-aos-delay="100"
>
<h4 style="text-align: left">
<a
href="https://www.sac.gov.in/Vyom/index.jsp"
target="_blank"
style="color: #12d640"
>Roqay</a
><br />
</h4>
<h5 style="text-align: left">Jan 2018 - march 2018</h5>
<p style="text-align: left; color: #fff">
<em>react native developr</em>
</p>
<ul style="text-align: left">
<li>
building mobile apps using react native working closely with
the ui ux designer to improve the ui of the frontend mobile
application .
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- End Experience Section -->
<!-- Start Project Section -->
<section id="portfolio" class="portfolio">
<div class="container">
<div class="section-title">
<h2>Projects</h2>
</div>
<!-- <div class="row">
<div class="col-lg-12 d-flex justify-content-center">
<ul id="portfolio-flters">
<li data-filter="*" class="filter-active">All</li>
<li data-filter=".filter-app">Web-App</li>
<li data-filter=".filter-project">Project</li>
</ul>
</div>
</div> -->
<div class="row portfolio-container">
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<center><h4>Yaqoot</h4></center>
<div class="portfolio-wrap">
<img
src="https://play-lh.googleusercontent.com/LNx3zKk6AfKVQgvWIhsvRbGZpJY_MX8YIjPJs6kOIKwj3i-US85-fDSXMmEO9l_gJ5KY=w480-h960-rw"
class="img-fluid"
alt=""
width="300"
height="100"
/>
<div class="portfolio-info">
<div class="portfolio-links">
<a
href="projects/yaqoot.html"
data-gall="portfolioDetailsGallery"
data-vbtype="iframe"
class="venobox"
title="Project Details"
><i class="bx bx-info-circle"></i
></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<center><h4>Emkan Finance</h4></center>
<div class="portfolio-wrap">
<img
src="https://play-lh.googleusercontent.com/18izshAhK7AAYWnaPiMKR39MmSL03I9umuJeN-_pm-RH6WxSZ7X9TM7g5GgJfLavgdBy=w480-h960-rw"
class="img-fluid"
alt=""
width="300"
height="100"
/>
<div class="portfolio-info">
<div class="portfolio-links">
<a
href="projects/emkan.html"
data-gall="portfolioDetailsGallery"
data-vbtype="iframe"
class="venobox"
title="Project Details"
><i class="bx bx-info-circle"></i
></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-project">
<!-- <br> -->
<center><h4>Emkan Finance web</h4></center>
<div class="portfolio-wrap">
<img
src="https://play-lh.googleusercontent.com/18izshAhK7AAYWnaPiMKR39MmSL03I9umuJeN-_pm-RH6WxSZ7X9TM7g5GgJfLavgdBy=w480-h960-rw"
class="img-fluid"
alt=""
width="300"
height="100"
/>
<div class="portfolio-info">
<h4>Emkan Finance</h4>
<div class="portfolio-links">
<a
href="projects/emkanWeb.html"
data-gall="portfolioDetailsGallery"
data-vbtype="iframe"
class="venobox"
title="Project Details"
><i class="bx bx-info-circle"></i
></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<center><h4>Labayh</h4></center>
<div class="portfolio-wrap">
<img
src="https://play-lh.googleusercontent.com/Gybqn9Q5UZa4_1LWPuIImkPcHE2-BiboOpxD13i769fzqutyYIL7VegOkyElDtz-mGY=w480-h960-rw"
class="img-fluid"
alt=""
width="300"
height="100"
/>
<div class="portfolio-info">
<div class="portfolio-links">
<a
href="projects/labayh.html"
data-gall="portfolioDetailsGallery"
data-vbtype="iframe"
class="venobox"
title="Project Details"
><i class="bx bx-info-circle"></i
></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<center><h4>LabayhWeb</h4></center>
<div class="portfolio-wrap">
<img
src="https://play-lh.googleusercontent.com/Gybqn9Q5UZa4_1LWPuIImkPcHE2-BiboOpxD13i769fzqutyYIL7VegOkyElDtz-mGY=w480-h960-rw"
class="img-fluid"
alt=""
width="300"
height="100"
/>
<div class="portfolio-info">
<div class="portfolio-links">
<a
href="projects/labayhWeb.html"
data-gall="portfolioDetailsGallery"
data-vbtype="iframe"
class="venobox"
title="Project Details"
><i class="bx bx-info-circle"></i
></a>
</div>
</div>
</div>
</div>
<!-- <div class="col-lg-4 col-md-6 portfolio-item filter-app">
<center><h4>To-Do App</h4></center>
<div class="portfolio-wrap">
<img src="assets/img/project/todo.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<div class="portfolio-links">
<a href="projects/todo.html" data-gall="portfolioDetailsGallery" data-vbtype="iframe" class="venobox" title="Project Details"><i class="bx bx-info-circle"></i></a>
</div>
</div>
</div>
</div> -->
<!-- <div class="col-lg-4 col-md-6 portfolio-item filter-app">
<br>
<center><h4>Tech Blog</h4></center>
<div class="portfolio-wrap">
<img src="assets/img/project/blog.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<div class="portfolio-links">
<a href="projects/blog.html" data-gall="portfolioDetailsGallery" data-vbtype="iframe" class="venobox" title="Project Details"><i class="bx bx-info-circle"></i></a>
</div>
</div>
</div>
</div> -->
<div class="col-lg-4 col-md-6 portfolio-item filter-project">
<center><h4>telawa</h4></center>
<div class="portfolio-wrap">
<img
src="https://play-lh.googleusercontent.com/1LT924dNk3J-Fwg7SHoZtWC6if88Pi6R9kIOhGiPJyFJ1ax4oIereDE1tpl2JCJI7dY1=s96-rw"
class="img-fluid"
alt=""
width="300"
height="100"
/>
<div class="portfolio-info">
<div class="portfolio-links">
<a
href="projects/telawa.html"
data-gall="portfolioDetailsGallery"
data-vbtype="iframe"
class="venobox"
title="Project Details"
><i class="bx bx-info-circle"></i
></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<center><h4 class="text-center">Wklny</h4></center>
<div class="portfolio-wrap">
<img
src="https://play-lh.googleusercontent.com/OQo8_02IClS8jlnXFTUsuaF6XM3kVYA5Jon6pX5iFLEeRXNf5n76l_n7-0vmQsAmeNc3=w480-h960-rw"
class="img-fluid"
alt=""
width="300"
height="100"
/>
<div class="portfolio-info">
<div class="portfolio-links">
<a
href="projects/wklny.html"
data-gall="portfolioDetailsGallery"
data-vbtype="iframe"
class="venobox"
title="Project Details"
><i class="bx bx-info-circle"></i
></a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Project Section -->
<!-- Start Skills Section -->
<section id="skills" class="services">
<div class="container">
<div class="section-title">
<h2>Skills</h2>
</div>
<div class="row">
<div class="col-lg-12" data-aos="fade-up">
<div
class="col-md-12 mt-4 mt-md-0 icon-box"
data-aos="fade-up"
data-aos-delay="100"
style="background: #fff"
>
<h4 style="text-align: left; color: #09203a">
Languages and Databases
</h4>
<p style="text-align: left">
<img
src="https://www.vectorlogo.zone/logos/javascript/javascript-ar21.svg"
alt="vectorlogo.zone"
height="50"
width="150"
/>
<img
src="https://www.vectorlogo.zone/logos/typescriptlang/typescriptlang-ar21.svg"
alt="vectorlogo.zone"
height="50"
width="100"
/>
<img
src="https://www.vectorlogo.zone/logos/dartlang/dartlang-ar21.svg"
alt="vectorlogo.zone"
height="50"
width="120"
/>
<img
src="https://www.vectorlogo.zone/logos/w3_html5/w3_html5-ar21.svg"
alt="vectorlogo.zone"
/>
<img
src="https://upload.wikimedia.org/wikipedia/commons/d/d5/CSS3_logo_and_wordmark.svg"
alt="upload.wikimedia.org"
height="60"
width="90"
/>
<img
src="https://www.vectorlogo.zone/logos/mongodb/mongodb-ar21.svg"
alt="vectorlogo.zone"
height="70"
width="130"
/>
<img
src="https://www.vectorlogo.zone/logos/postgresql/postgresql-horizontal.svg"
alt="vectorlogo.zone"
height="50"
width="190"
/>
</p>
</div>
<div
class="col-md-12 mt-4 mt-md-0 icon-box"
data-aos="lefade-up"
data-aos-delay="100"
style="background: #fff"
>
<h4 style="text-align: left; color: #09203a">Frameworks</h4>
<p style="text-align: left">
<img
src="https://www.vectorlogo.zone/logos/reactjs/reactjs-ar21.svg"
alt="vectorlogo.zone"
/>
<img
src="https://upload.vectorlogo.zone/logos/reactnativedev/images/199b2976-954e-4e42-8d79-12a784e2cdf9.svg"
alt="vectorlogo.zone"
/>
<img
src="https://www.vectorlogo.zone/logos/flutterio/flutterio-ar21.svg"
/>
<img
src="https://www.vectorlogo.zone/logos/nodejs/nodejs-horizontal.svg"
alt="vectorlogo.zone"
/>
<img
src="https://www.vectorlogo.zone/logos/nestjs/nestjs-ar21.svg"
alt="vectorlogo.zone"
/>
<img
src="https://www.vectorlogo.zone/logos/jestjsio/jestjsio-ar21.svg"
alt="vectorlogo.zone"
/>
<img
src="https://www.vectorlogo.zone/logos/tailwindcss/tailwindcss-ar21.svg"
alt="vectorlogo.zone"
/>
<img
src="https://www.vectorlogo.zone/logos/getbootstrap/getbootstrap-ar21.svg"
alt="vectorlogo.zone"
/>
</p>
</div>
<div
class="col-md-12 mt-4 mt-md-0 icon-box"
data-aos="lefade-up"
data-aos-delay="100"
style="background: #fff"
>
<h4 style="text-align: left; color: #09203a">Tools</h4>
<p style="text-align: left">
<img
src="https://www.vectorlogo.zone/logos/git-scm/git-scm-ar21.svg"
alt="vectorlogo.zone"
/>
<img
src="https://www.vectorlogo.zone/logos/docker/docker-ar21.svg"
alt="vectorlogo.zone"
/>
<img
src="https://www.vectorlogo.zone/logos/appcenterms/appcenterms-ar21.svg"
alt="vectorlogo.zone"
/>
<img
src="https://www.vectorlogo.zone/logos/jenkins/jenkins-ar21.svg"
alt="vectorlogo.zone"
/>
<img
src="https://www.vectorlogo.zone/logos/apache_kafka/apache_kafka-ar21.svg"
alt="vectorlogo.zone"