-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1097 lines (955 loc) · 65.6 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>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shovo's Journey</title>
<!-- Fonts and Icons -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/iconoir-icons/iconoir@main/css/iconoir.css">
<!-- Stylesheets -->
<link rel="stylesheet" href="./assets/css/bootstrap.min.css">
<link rel="stylesheet" href="./assets/css/aos.css">
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<!-- Header with Navigation -->
<header class="header-area">
<div class="container">
<nav class="navbar">
<ul class="menu">
<li><a href="#about">About</a></li>
<li><a href="#experience">Experiences & Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<!-- About Section (Content from about.html) -->
<!-- About Section (Content from about.html) -->
<section id="about" class="about-area">
<div class="container">
<div class="d-flex about-me-wrap align-items-start gap-24">
<div class="about-details" data-aos="zoom-in">
<div class="about-blog-box info-box shadow-box h-full">
<!-- <a href="./assets/files/resume.pdf" target="_blank" rel="noopener noreferrer" class="overlay-link"></a> -->
<img src="./assets/images/bg1.png" alt="BG" class="bg-img">
<div class="about-details-inner shadow-box">
<img src="./assets/images/icon2.png" alt="Star">
<p>Hey, I'm</p>
<h1>Shovo,</h1>
<p>– your <b class="color-transition">tech problem solver</b>! 🛠️ With a <b class="color-transition">B.Sc. in Computing Science</b> 🎓 from the University of Alberta, I bridge the gap between <b class='color-transition'>IT infrastructure</b> & <b class='color-transition'>software development</b>.</p>
<p>At <b class="color-transition">Ketek Group Inc.</b>, I provide <b>IT Support</b>—keeping networks secure, troubleshooting hardware & software, and ensuring smooth operations. 🔧 But my expertise doesn't stop there! From Python 🐍 and Java ☕ to React & Django, I thrive on <b class='color-transition'>building robust solutions</b> and <b class='color-transition'>optimizing tech systems</b>.</p>
<p>Currently working with <b class='color-transition'>PostgreSQL, MongoDB, and AWS ☁️</b>, I enjoy solving challenges across IT and software engineering. Let’s build & secure something incredible! 🚀 Reach me at <b class="color-transition">[email protected]</b> – let’s make tech magic happen! ✨👨💻</p>
</div>
</div>
</div>
</div>
<!-- Job Titles Section -->
<div class="job-titles-container d-flex flex-wrap justify-content-around gap-20">
<div class="job-box shadow-box">
<img src="https://img.icons8.com/?size=100&id=123383&format=png&color=000000" alt="IT Support">
<h3>IT Support</h3>
</div>
<div class="job-box shadow-box">
<img src="https://img.icons8.com/?size=100&id=FVDBGC3QPi3J&format=png&color=000000" alt="Software Developer">
<h3>Software Developer</h3>
</div>
<div class="job-box shadow-box">
<img src="https://img.icons8.com/?size=100&id=RtciaGLvcpOm&format=png&color=000000" alt="Web Developer">
<h3>Web Developer</h3>
</div>
<div class="job-box shadow-box">
<img src="https://img.icons8.com/?size=100&id=gtJlIVpnqQyS&format=png&color=000000" alt="Cloud Architect">
<h3>Cloud Architect</h3>
</div>
<div class="job-box shadow-box">
<img src="https://img.icons8.com/?size=100&id=cQ0emn3GZS6M&format=png&color=000000" alt="UX Designer">
<h3>UX Designer</h3>
</div>
</div>
</div>
</section>
<!-- Experience & Skills Section -->
<section class="credential-area">
<div class="container">
<div class="gx-row d-flex">
<div class="credential-sidebar-wrap" data-aos="zoom-in">
<div class="credential-sidebar text-center">
<div class="shadow-box">
<img src="./assets/images/bg1.png" alt="BG" class="bg-img">
<div class="img-box">
<img src="./assets/images/me.jpeg" alt="About Me">
</div>
<h2>MD Saiful Islam Shovo</h2>
<p>@shovo4</p>
<ul class="social-links d-flex justify-content-center">
<li><a href="https://www.linkedin.com/in/saifulshovo/"><i class="iconoir-linkedin"></i></a></li>
<li><a href="https://github.com/shovo4"><i class="iconoir-github"></i></a></li>
<li><a href="https://instagram.com/shovo_4"><i class="iconoir-instagram"></i></a></li>
<li><a href="https://twitter.com/sshovo4"><i class="iconoir-twitter"></i></a></li>
<li><a href="https://www.facebook.com/saifulislamshovo4/"><i class="iconoir-facebook-tag"></i></a></li>
</ul>
<!-- <a href="./assets/files/resume.pdf" target="_blank" class="theme-btn">View Resume</a> -->
</div>
</div>
</div>
<div class="credential-content flex-1">
<div class="navbar-cred">
<a href="#experience">Experience</a>
<a href="#education">Education</a>
<a href="#certificates">Certificates</a>
<a href="#skills">Skills</a>
</div>
<div id="experience" class="credential-edc-exp credential-experience">
<h2 data-aos="fade-up">Experience</h2>
<div class="timeline">
<!-- Experience Item 1 - IT Support at Ketek Group Inc -->
<div class="timeline-item">
<div class="timeline-content">
<h3>IT Support</h3>
<h5><a href="https://ketek.ca/" target="_blank">Ketek Group Inc</a>, Edmonton, AB</h5>
<ul class="job-responsibilities">
<li>Installing and maintaining company data cabling and network infrastructure.</li>
<li>Installing and servicing hardware, including computers, thin clients, laptops, servers, scanners, and printers.</li>
<li>Maintaining software across company devices, including Virtual Private Networks (VPNs) and security applications.</li>
<li>Assisting in managing company networks, computer accounts, emails, landlines, and mobile devices.</li>
<li>Troubleshooting and resolved software/hardware issues for employees.</li>
<li>Testing and evaluating new technologies for business operations.</li>
<li>Walking employees through IT issue resolution and providing technical support.</li>
<li>Documenting solutions and responding to inquiries in a timely manner.</li>
</ul>
</div>
<div class="timeline-date">
<h4>Feb 2025 - Present</h4>
<img src="./assets/images/ketek-logo.jpeg" alt="Ketek Group Inc" class="company-logo"
style="display: block; width: 80px; height: 70px; border-radius: 50%; margin-top: 5px; transition: transform 0.3s ease-in-out; box-shadow: 0 4px 10px rgba(0,0,0,0.2);">
</div>
</div>
<!-- Experience Item 2 - Subway -->
<div class="timeline-item">
<div class="timeline-content">
<h3>Store Manager</h3>
<h5>Subway, Edmonton, AB</h5>
<ul class="job-responsibilities">
<li>Food safety management</li>
<li>Inventory and order management</li>
<li>Employee training and scheduling</li>
<li>Point of Sale (POS) systems</li>
<li>Customer service</li>
</ul>
</div>
<div class="timeline-date">
<h4>July 2023 - Feb 2025</h4>
<img src="./assets/images/subway-logo.jpg" alt="Subway" class="company-logo"
style="display: block; width: 50px; height: 50px; border-radius: 50%; margin-top: 5px; transition: transform 0.3s ease-in-out; box-shadow: 0 4px 10px rgba(0,0,0,0.2);">
</div>
</div>
<!-- Experience Item 3 - Web Developer at WareMatch -->
<div class="timeline-item">
<div class="timeline-content">
<h3>Web Developer</h3>
<h5><a href="https://warematch.com/" target="_blank">WareMatch</a>, Quebec, Canada (Remote)</h5>
<ul class="job-responsibilities">
<li>Developed web applications using Next.js and JavaScript for the frontend.</li>
<li>Built and maintained backend services with Django.</li>
<li>Managed containerized environments using Docker.</li>
<li>Handled data storage and retrieval with PostgreSQL.</li>
<li>Designed responsive and user-friendly interfaces using Material UI.</li>
<li>Collaborated with cross-functional teams to ensure seamless integration of front and backend systems.</li>
<li>Optimized application performance and scalability.</li>
<li>Participated in code reviews and contributing to team knowledge sharing.</li>
</ul>
</div>
<div class="timeline-date">
<h4>Sep 2024 - Dec 2024</h4>
<img src="./assets/images/warematch-logo.webp" alt="WareMatch" class="company-logo"
style="display: block; width: 50px; height: 50px; border-radius: 80%; margin-top: 5px; transition: transform 0.3s ease-in-out; box-shadow: 0 4px 10px rgba(0,0,0,0.2);">
</div>
</div>
<!-- Experience Item 4 - Full Stack Developer at Connection Hub Ltd -->
<div class="timeline-item">
<div class="timeline-content">
<h3>Full Stack Developer (Contract - Project-based)</h3>
<h5><a href="https://connectionhub.ca/" target="_blank">Connection Hub Ltd</a>, Edmonton, AB</h5>
<ul class="job-responsibilities">
<li>Designed and developed the company's website using WordPress.</li>
<li>Created a custom theme with hand coding for a unique touch.</li>
<li>Enhanced secure communication in Django and Postgres backend.</li>
<li>Reduced processing time by 25%.</li>
<li>Integrated the WordPress CMS for an optimal user experience.</li>
<li>Customized website features using PHP, HTML, CSS, and JavaScript.</li>
</ul>
</div>
<div class="timeline-date">
<h4>May 2022 - Oct 2023</h4>
<img src="./assets/images/connectionhub-logo.png" alt="Connection Hub" class="company-logo"
style="display: block; width: 90px; height: 30px; border-radius: 50%; margin-top: 5px; transition: transform 0.3s ease-in-out; box-shadow: 0 4px 10px rgba(0,0,0,0.2);">
</div>
</div>
<!-- Experience Item 5 - Full Stack Developer (Intern) at IlmHub -->
<div class="timeline-item">
<div class="timeline-content">
<h3>Full-Stack Developer (Intern)</h3>
<h5><a href="https://ilmhub.com/" target="_blank">IlmHub</a>, Edmonton, AB</h5>
<ul class="job-responsibilities">
<li>Collaborated with a team of four to develop a language learning platform.</li>
<li>Implemented a system enabling users to learn new languages through pronunciation lessons.</li>
<li>Integrated features for users to practice, receive feedback, and share progress with parents.</li>
<li>Utilized Django for backend development and React.js for the frontend.</li>
<li>Deployed the backend on Cybera and the frontend on Heroku.</li>
<li>Used PostgreSQL as the database for efficient data management.</li>
</ul>
</div>
<div class="timeline-date">
<h4>Jan 2023 - May 2023</h4>
<img src="./assets/images/ilmhub-logo.webp" alt="IlmHub" class="company-logo"
style="display: block; width: 50px; height: 50px; border-radius: 50%; margin-top: 5px; transition: transform 0.3s ease-in-out; box-shadow: 0 4px 10px rgba(0,0,0,0.2);">
</div>
</div>
</div>
</div>
<div id="education" class="credential-edc-exp credential-education">
<h2 data-aos="fade-up">Education</h2>
<!-- Education Item 1 -->
<div class="timeline-item-education">
<div class="timeline-content-education">
<h3>Bachelor Degree in Computer Science Software Specialization</h3>
<h5>University of Alberta, AB, Canada</h5>
<p>GPA: 3.4/4.0</p>
</div>
<div class="timeline-date-education">
<h4>2019 - 2023</h4>
<img src="./assets/images/uofa-logo.webp" alt="UAlberta" class="company-logo"
style="display: block; width: 50px; height: 50px; border-radius: 50%; margin-top: 5px; transition: transform 0.3s ease-in-out; box-shadow: 0 4px 10px rgba(0,0,0,0.2);">
</div>
</div>
<!-- Education Item 2 -->
<div class="timeline-item-education">
<div class="timeline-content-education">
<h3>Higher Secondary Certificate</h3>
<h5>Dhaka College, Dhaka, Bangladesh</h5>
<p>GPA: 5.0/5.0</p>
</div>
<div class="timeline-date-education">
<h4>2016 - 2018</h4>
<img src="./assets/images/dc-logo.png" alt="DC" class="company-logo"
style="display: block; width: 50px; height: 50px; border-radius: 50%; margin-top: 5px; transition: transform 0.3s ease-in-out; box-shadow: 0 4px 10px rgba(0,0,0,0.2);">
</div>
</div>
<!-- Education Item 3 -->
<div class="timeline-item-education">
<div class="timeline-content-education">
<h3>Secondary School Certificate</h3>
<h5>Ideal School & College, Dhaka, Bangladesh</h5>
<p>GPA: 5.0/5.0</p>
</div>
<div class="timeline-date-education">
<h4>2005 - 2015</h4>
<img src="./assets/images/ideal-logo.png" alt="Ideal" class="company-logo"
style="display: block; width: 50px; height: 50px; border-radius: 50%; margin-top: 5px; transition: transform 0.3s ease-in-out; box-shadow: 0 4px 10px rgba(0,0,0,0.2);">
</div>
</div>
</div>
<div id="certificates" class="container about-experience">
<div class="credential-content flex-1">
<h2 data-aos="fade-up" style="color: #fff; margin-bottom: 22px;">Certificates</h2>
<!-- Certificate 1: Bachelors Degree in Computing Science Specialization -->
<div class="about-credentials-wrap" data-aos="zoom-in">
<ul>
<!-- AWS Cloud Practitioner -->
<li class="shadow-box" style="padding: 30px; margin-bottom: 24px; text-align: center;">
<div class="date" style="color: #BCBCBC; opacity: 0.6; font-size: 16px; font-weight: 500; margin-bottom: 12px;">Dec 2023</div>
<h2 style="font-size: 18px; color: #fff; opacity: 0.9; margin-bottom: 20px;">AWS Certified Cloud Practitioner</h2>
<div style="margin-bottom: 20px;">
<p>Amazon Web Services Training and Certification,
This validates my fundamental knowledge of AWS cloud services and architecture.</p>
<a href="https://www.credly.com/badges/1b6b6e75-c438-475d-ad05-51953b479722/public_url" target="_blank" style="display: inline-block; margin-right: 15px;">View Credly Certificate</a>
</div>
<div style="margin-bottom: 20px;">
<img src="./assets/images/aws-certified-cloud-practitioner.png" alt="AWS Cloud Practitioner Badge" style="width: 100px; margin-bottom: 20px;"/>
</div>
<div style="margin-bottom: 20px;">
<a href="https://udemy-certificate.s3.amazonaws.com/pdf/UC-78fc53d3-d320-416d-9c49-700cb9157e6b.pdf" target="_blank" style="display: block; margin-bottom: 15px;">View Udemy Certificate</a>
</div>
<div>
<a href="https://drive.google.com/file/d/19BPEHNqgShfqpJ95fsnc2270gsNAeItY/view?usp=sharing" target="_blank">View AWS Skill Builder</a>
</div>
</li>
<!-- AWS Developer Associate -->
<li class="shadow-box" style="padding: 30px; margin-bottom: 24px; text-align: center;">
<div class="date" style="color: #BCBCBC; opacity: 0.6; font-size: 16px; font-weight: 500; margin-bottom: 12px;">Jan 2024</div>
<h2 style="font-size: 18px; color: #fff; opacity: 0.9; margin-bottom: 20px;">AWS Certified Developer Associate</h2>
<div style="margin-bottom: 20px;">
<p>This certification signifies my expertise in developing applications on the Amazon Web Services (AWS) platform. It demonstrates my ability to design, build, and deploy cloud-based applications using AWS services. This accomplishment validates my proficiency in cloud application development and showcases my knowledge of AWS development tools and best practices.</p>
<a href="https://www.credly.com/badges/8809085e-0360-403d-9708-d442e0e73b18/public_url" target="_blank" style="display: block; margin-bottom: 15px;">View Credly Certificate</a>
</div>
<div>
<img src="./assets/images/aws-certified-developer-associate.png" alt="AWS Developer Associate Badge" style="width: 100px;"/>
</div>
</li>
<!-- Web Development Bootcamp -->
<li class="shadow-box" style="padding: 30px; margin-bottom: 24px; text-align: center;">
<div class="date" style="color: #BCBCBC; opacity: 0.6; font-size: 16px; font-weight: 500; margin-bottom: 12px;">Dec 2023</div>
<h2 style="font-size: 18px; color: #fff; opacity: 0.9; margin-bottom: 20px;">Web Development Bootcamp</h2>
<div>
<a href="https://www.udemy.com/certificate/UC-64be9f0d-2a6a-4f72-b124-97e411098b48/" target="_blank" style="display: block; margin-bottom: 15px;">View Web Development Certificate</a>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="skills-logo-container">
<!-- Starting with Python -->
<a href="https://www.python.org" target="_blank" rel="noreferrer">
<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/python/python-original.svg" alt="python" />
</a>
<!-- JavaScript -->
<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript" target="_blank" rel="noreferrer">
<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/javascript/javascript-original.svg" alt="javascript" />
</a>
<!-- React -->
<a href="https://reactjs.org/" target="_blank" rel="noreferrer">
<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/react/react-original-wordmark.svg" alt="react" />
</a>
<!-- Next.js -->
<a href="https://nextjs.org/" target="_blank" rel="noreferrer">
<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/nextjs/nextjs-original-wordmark.svg" alt="next.js" />
</a>
<!-- Django -->
<a href="https://www.djangoproject.com/" target="_blank" rel="noreferrer">
<img src="https://cdn.worldvectorlogo.com/logos/django.svg" alt="django" />
</a>
<!-- HTML -->
<a href="https://www.w3.org/html/" target="_blank" rel="noreferrer">
<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/html5/html5-original-wordmark.svg" alt="html5" />
</a>
<!-- CSS -->
<a href="https://www.w3schools.com/css/" target="_blank" rel="noreferrer">
<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/css3/css3-original-wordmark.svg" alt="css3" />
</a>
<!-- AWS -->
<a href="https://aws.amazon.com" target="_blank" rel="noreferrer">
<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/amazonwebservices/amazonwebservices-original-wordmark.svg" alt="aws" />
</a>
<!-- PostgreSQL -->
<a href="https://www.postgresql.org" target="_blank" rel="noreferrer">
<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/postgresql/postgresql-original-wordmark.svg" alt="postgresql" />
</a>
<!-- Docker -->
<a href="https://www.docker.com/" target="_blank" rel="noreferrer">
<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/docker/docker-original-wordmark.svg" alt="docker" />
</a>
<!-- Node.js -->
<a href="https://nodejs.org" target="_blank" rel="noreferrer">
<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/nodejs/nodejs-original-wordmark.svg" alt="nodejs" />
</a>
<!-- MongoDB -->
<a href="https://www.mongodb.com/" target="_blank" rel="noreferrer">
<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/mongodb/mongodb-original-wordmark.svg" alt="mongodb" />
</a>
<!-- Material UI -->
<a href="https://mui.com/" target="_blank" rel="noreferrer">
<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/materialui/materialui-original.svg" alt="material-ui" />
</a>
<!-- Tailwind CSS -->
<a href="https://tailwindcss.com/" target="_blank" rel="noreferrer">
<img src="https://www.vectorlogo.zone/logos/tailwindcss/tailwindcss-icon.svg" alt="tailwind" />
</a>
<!-- C -->
<a href="https://www.cprogramming.com/" target="_blank" rel="noreferrer">
<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/c/c-original.svg" alt="c" />
</a>
<!-- TypeScript -->
<a href="https://www.typescriptlang.org/" target="_blank" rel="noreferrer">
<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/typescript/typescript-original.svg" alt="typescript" />
</a>
<!-- Angular -->
<a href="https://angular.io" target="_blank" rel="noreferrer">
<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/angularjs/angularjs-original-wordmark.svg" alt="angularjs" />
</a>
<!-- Firebase -->
<a href="https://firebase.google.com/" target="_blank" rel="noreferrer">
<img src="https://www.vectorlogo.zone/logos/firebase/firebase-icon.svg" alt="firebase" />
</a>
<!-- Express.js -->
<a href="https://expressjs.com" target="_blank" rel="noreferrer">
<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/express/express-original-wordmark.svg" alt="express" />
</a>
<!-- Redux -->
<a href="https://redux.js.org" target="_blank" rel="noreferrer">
<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/redux/redux-original.svg" alt="redux" />
</a>
<!-- Heroku -->
<a href="https://heroku.com" target="_blank" rel="noreferrer">
<img src="https://www.vectorlogo.zone/logos/heroku/heroku-icon.svg" alt="heroku" />
</a>
<!-- VS Code -->
<a href="https://code.visualstudio.com/" target="_blank" rel="noreferrer">
<img src="https://www.vectorlogo.zone/logos/visualstudio_code/visualstudio_code-icon.svg" alt="vscode" />
</a>
<!-- Linux -->
<a href="https://www.linux.org/" target="_blank" rel="noreferrer">
<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/linux/linux-original.svg" alt="linux" />
</a>
<!-- MySQL -->
<a href="https://www.mysql.com/" target="_blank" rel="noreferrer">
<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/mysql/mysql-original-wordmark.svg" alt="mysql" />
</a>
<!-- Nginx -->
<a href="https://www.nginx.com" target="_blank" rel="noreferrer">
<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/nginx/nginx-original.svg" alt="nginx" />
</a>
<!-- Java -->
<a href="https://www.java.com" target="_blank" rel="noreferrer">
<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/java/java-original.svg" alt="java" />
</a>
<!-- Bootstrap -->
<a href="https://getbootstrap.com" target="_blank" rel="noreferrer">
<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/bootstrap/bootstrap-plain-wordmark.svg" alt="bootstrap" />
</a>
<!-- Jest -->
<a href="https://jestjs.io" target="_blank" rel="noreferrer">
<img src="https://www.vectorlogo.zone/logos/jestjsio/jestjsio-icon.svg" alt="jest" />
</a>
<!-- Cybera -->
<a href="https://www.cybera.ca/" target="_blank" rel="noreferrer">
<img src="https://i0.wp.com/www.cybera.ca/wp-content/uploads/2020/03/cybera_logo_2.png?resize=300%2C155&ssl=1" alt="cybera" />
</a>
<!-- SQLite -->
<a href="https://www.sqlite.org/" target="_blank" rel="noreferrer">
<img src="https://www.vectorlogo.zone/logos/sqlite/sqlite-icon.svg" alt="sqlite" />
</a>
<!-- TensorFlow -->
<a href="https://www.tensorflow.org" target="_blank" rel="noreferrer">
<img src="https://www.vectorlogo.zone/logos/tensorflow/tensorflow-icon.svg" alt="tensorflow" />
</a>
<!-- PHP -->
<a href="https://www.php.net" target="_blank" rel="noreferrer">
<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/php/php-original.svg" alt="php" />
</a>
<!-- Redis -->
<a href="https://redis.io" target="_blank" rel="noreferrer">
<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/redis/redis-original-wordmark.svg" alt="redis" />
</a>
<!-- Selenium -->
<a href="https://www.selenium.dev" target="_blank" rel="noreferrer">
<img src="https://raw.githubusercontent.com/detain/svg-logos/780f25886640cef088af994181646db2f6b1a3f8/svg/selenium-logo.svg" alt="selenium" />
</a>
</div>
<div id="skills" class="skills-wrap">
<h2 data-aos="fade-up">Skills</h2>
<div class="d-grid skill-items gap-24 flex-wrap">
<!-- Languages -->
<div class="skill-category shadow-box">
<h4 data-aos="zoom-in">Languages</h4>
<p class="hashtag-skill">
<span class="hashtag skyblue">#Python</span>
<span class="hashtag lightgreen">#C</span>
<span class="hashtag pink">#Java</span>
<span class="hashtag skyblue">#JavaScript</span>
<span class="hashtag lightgreen">#TypeScript</span>
<span class="hashtag pink">#PHP</span>
<span class="hashtag skyblue">#MIPS</span>
</p>
</div>
<!-- Cloud -->
<div class="skill-category shadow-box">
<h4 data-aos="zoom-in">Cloud</h4>
<p class="hashtag-skill">
<span class="hashtag skyblue">#AWS</span>
<span class="hashtag lightgreen">#Docker</span>
<span class="hashtag pink">#Cybera</span>
<span class="hashtag skyblue">#Heroku</span>
<span class="hashtag lightgreen">#Nginx</span>
</p>
</div>
<!-- Frontend -->
<div class="skill-category shadow-box">
<h4 data-aos="zoom-in">Frontend</h4>
<p class="hashtag-skill">
<span class="hashtag skyblue">#React.js</span>
<span class="hashtag lightgreen">#Next.js</span>
<span class="hashtag pink">#Angular</span>
<span class="hashtag skyblue">#HTML</span>
<span class="hashtag lightgreen">#CSS</span>
</p>
</div>
<!-- Backend -->
<div class="skill-category shadow-box">
<h4 data-aos="zoom-in">Backend</h4>
<p class="hashtag-skill">
<span class="hashtag skyblue">#Django</span>
<span class="hashtag lightgreen">#Fast API</span>
<span class="hashtag pink">#Express.js</span>
<span class="hashtag skyblue">#Node.js</span>
</p>
</div>
<!-- Databases -->
<div class="skill-category shadow-box">
<h4 data-aos="zoom-in">Databases</h4>
<p class="hashtag-skill">
<span class="hashtag skyblue">#PostgreSQL</span>
<span class="hashtag lightgreen">#MongoDB</span>
<span class="hashtag pink">#Firebase</span>
<span class="hashtag skyblue">#SQLite</span>
<span class="hashtag lightgreen">#MySQL</span>
</p>
</div>
<!-- APIs -->
<div class="skill-category shadow-box">
<h4 data-aos="zoom-in">APIs</h4>
<p class="hashtag-skill">
<span class="hashtag skyblue">#RestAPIs</span>
</p>
</div>
<!-- Libraries -->
<div class="skill-category shadow-box">
<h4 data-aos="zoom-in">Libraries</h4>
<p class="hashtag-skill">
<span class="hashtag skyblue">#MaterialUI</span>
<span class="hashtag lightgreen">#Bootstrap</span>
<span class="hashtag pink">#Tailwind</span>
<span class="hashtag skyblue">#Redux</span>
</p>
</div>
<!-- Developer Tools -->
<div class="skill-category shadow-box">
<h4 data-aos="zoom-in">Developer Tools</h4>
<p class="hashtag-skill">
<span class="hashtag skyblue">#VSCode</span>
<span class="hashtag lightgreen">#AndroidStudio</span>
<span class="hashtag pink">#IntelliJ</span>
<span class="hashtag skyblue">#Git</span>
<span class="hashtag lightgreen">#Linux</span>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="projects-area">
<div class="container">
<!-- Sticky Project Navbar -->
<div class="navbar-cred sticky-navbar">
<a href="#all" class="skill-filter active" data-skill="all">All</a>
<a href="#frontend" class="skill-filter" data-skill="frontend">Frontend</a>
<a href="#backend" class="skill-filter" data-skill="backend">Backend</a>
<a href="#database" class="skill-filter" data-skill="database">Database</a>
<a href="#devops" class="skill-filter" data-skill="devops">DevOps</a>
<a href="#ml" class="skill-filter" data-skill="ml">ML</a>
<a href="#design" class="skill-filter" data-skill="design">Design</a>
</div>
<!-- Project Items -->
<div class="projects-wrapper">
<!-- Project 1: IlmHub - Pronunciation App -->
<div class="project-item shadow-box" data-skill="frontend backend database devops">
<a class="overlay-link" href="https://github.com/shovo4/pronunciation-practice" target="_blank"></a>
<img src="./assets/images/project1.jpeg" alt="Project" width="500" height="220">
<div class="project-info">
<h1>IlmHub - Pronunciation App</h1>
<p>Django, React.js, Material UI, Docker, PostgreSQL, Cybera, Ngnix, Heroku</p>
</div>
<a href="https://github.com/shovo4/pronunciation-practice" class="project-btn" target="_blank">
GitHub<img src="./assets/images/icon.svg" alt="Button">
</a>
</div>
<!-- Project 2: Keeper App -->
<div class="project-item shadow-box" data-skill="frontend backend database devops">
<a class="overlay-link" href="https://github.com/shovo4/keeper-app" target="_blank"></a>
<img src="./assets/images/bg1.png" alt="BG" class="bg-img">
<div class="project-img">
<img src="./assets/images/project2.jpeg" alt="Project" width="500" height="220">
</div>
<div class="d-flex align-items-center justify-content-between">
<div class="project-info">
<p>JavsScript, React.js, Redux, Fast API, Docker</p>
<h1>Keeper App</h1>
</div>
<a href="https://github.com/shovo4/keeper-app" class="project-btn" target="_blank">
GitHub<img src="./assets/images/icon.svg" alt="Button">
</a>
</div>
</div>
<!-- Project 3: TV-Shows App -->
<div class="project-item shadow-box" data-skill="backend database devops">
<a class="overlay-link" href="https://github.com/shovo4/API-Calls-Django" target="_blank"></a>
<img src="./assets/images/bg1.png" alt="BG" class="bg-img">
<div class="project-img">
<img src="./assets/images/project7.jpeg" alt="Project" width="500" height="220">
</div>
<div class="d-flex align-items-center justify-content-between">
<div class="project-info">
<p>Djanggo, REST API, SQL, Cybera, Ngnix</p>
<h1>TV-Shows App</h1>
</div>
<a href="https://github.com/shovo4/API-Calls-Django" class="project-btn" target="_blank">
GitHub<img src="./assets/images/icon.svg" alt="Button">
</a>
</div>
</div>
<!-- Project 4: Sudoku Solver -->
<div class="project-item shadow-box" data-skill="ml">
<a class="overlay-link" href="https://github.com/shovo4/CMPUT-366/tree/main/Assignments/Assignment%202/starter" target="_blank"></a>
<img src="./assets/images/bg1.png" alt="BG" class="bg-img">
<div class="project-img">
<img src="./assets/images/project10.jpeg" alt="Project" width="500" height="220">
</div>
<div class="d-flex align-items-center justify-content-between">
<div class="project-info">
<p>Python, Matplotlib, Algorithms, Machine Learning</p>
<h1>Sodoku Solver</h1>
</div>
<a href="https://github.com/shovo4/CMPUT-366/tree/main/Assignments/Assignment%202/starter" class="project-btn" target="_blank">
GitHub<img src="./assets/images/icon.svg" alt="Button">
</a>
</div>
</div>
<!-- Project 5: ER Diagram & Database -->
<div class="project-item shadow-box" data-skill="database">
<a class="overlay-link" href="https://docs.google.com/document/d/1fQNbZ-NAzWuoktO71CQBr3bG3g-FnwaoZ7PtoJGQbHQ/edit" target="_blank"></a>
<img src="./assets/images/bg1.png" alt="BG" class="bg-img">
<div class="project-img">
<img src="./assets/images/project13.jpeg" alt="Project" width="500" height="220">
</div>
<div class="d-flex align-items-center justify-content-between">
<div class="project-info">
<!-- Updated skills list -->
<p>SQL (MySQL, PostgreSQL, SQLite), NoSQL (MongoDB, Redis, DynamoDB)</p>
<h1>ER diagram & Database Table</h1>
</div>
<a href="https://docs.google.com/document/d/1fQNbZ-NAzWuoktO71CQBr3bG3g-FnwaoZ7PtoJGQbHQ/edit" class="project-btn" target="_blank">
Drive<img src="./assets/images/icon.svg" alt="Button">
</a>
</div>
</div>
<!-- Project 6: Trip Planning App -->
<div class="project-item shadow-box" data-skill="frontend backend database devops">
<a class="overlay-link" href="https://github.com/shovo4/Trip-Planning-Hackathon" target="_blank"></a>
<img src="./assets/images/bg1.png" alt="BG" class="bg-img">
<div class="project-img">
<img src="./assets/images/project3.jpeg" alt="Project" width="500" height="220">
</div>
<div class="d-flex align-items-center justify-content-between">
<div class="project-info">
<p>JavaScript, Django, React js, MongoDB, Docker</p>
<h1>Trip Planning App</h1>
</div>
<a href="https://github.com/shovo4/Trip-Planning-Hackathon" class="project-btn" target="_blank">
GitHub<img src="./assets/images/icon.svg" alt="Button">
</a>
</div>
</div>
<!-- Project 7: NoGo and Go -->
<div class="project-item shadow-box" data-skill="ml">
<a class="overlay-link" href="https://github.com/shovo4/CMPUT455" target="_blank"></a>
<img src="./assets/images/bg1.png" alt="BG" class="bg-img">
<div class="project-img">
<img src="./assets/images/project4.jpeg" alt="Project" width="500" height="220">
</div>
<div class="d-flex align-items-center justify-content-between">
<div class="project-info">
<p>Python, Algorithms (Heuristic, Monte-Carlo Simulation, Upper Confidence Bound), Machine Learning</p>
<h1>Go Games and Solver</h1>
</div>
<a href="https://github.com/shovo4/CMPUT455" class="project-btn" target="_blank">
GitHub<img src="./assets/images/icon.svg" alt="Button">
</a>
</div>
</div>
<!-- Project 8: Study up app -->
<div class="project-item shadow-box" data-skill="design frontend">
<a class="overlay-link" href="https://drive.google.com/file/d/1oTsttGcNOuugBOBHbQCu1A3o8oJQ-pUT/view" target="_blank"></a>
<img src="./assets/images/bg1.png" alt="BG" class="bg-img">
<div class="project-img">
<img src="./assets/images/project5.jpeg" alt="Project" width="500" height="220">
</div>
<div class="d-flex align-items-center justify-content-between">
<div class="project-info">
<p>Figma, User Interface Design, User Experience Design, Color Theory, Protyping, Wareframing</p>
<h1>Study Up App</h1>
</div>
<a href="https://drive.google.com/file/d/1oTsttGcNOuugBOBHbQCu1A3o8oJQ-pUT/view" class="project-btn" target="_blank">
Demo<img src="./assets/images/icon.svg" alt="Button">
</a>
</div>
</div>
<!-- Project 9: Social Dist -->
<div class="project-item shadow-box" data-skill="frontend backend database devops">
<a class="overlay-link" href="https://github.com/shovo4/group-cmput404-project" target="_blank"></a>
<img src="./assets/images/bg1.png" alt="BG" class="bg-img">
<div class="project-img">
<img src="./assets/images/project14.jpeg" alt="Project" width="500" height="220">
</div>
<div class="d-flex align-items-center justify-content-between">
<div class="project-info">
<p>Django, REST API, JavaScript, HTML, CSS, Bootstrap, PostgreSQL, Docker, Heroku </p>
<h1>Social Distribution</h1>
</div>
<a href="https://github.com/shovo4/group-cmput404-project" class="project-btn" target="_blank">
GitHub<img src="./assets/images/icon.svg" alt="Button">
</a>
</div>
</div>
<!-- Project 9: CSS-HELL -->
<div class="project-item shadow-box" data-skill="frontend design">
<a class="overlay-link" href="https://github.com/shovo4/CMPUT404-assignment-css-hell" target="_blank"></a>
<img src="./assets/images/bg1.png" alt="BG" class="bg-img">
<div class="project-img">
<img src="./assets/images/project8.jpeg" alt="Project" width="500" height="220">
</div>
<div class="d-flex align-items-center justify-content-between">
<div class="project-info">
<!-- Updated skills with designing libraries -->
<p>CSS, HTML, Bootstrap, Tailwind CSS, Animate.css, Materialize, Skeleton, Material-UI </p>
<h1>CSS-Hell</h1>
</div>
<a href="https://github.com/shovo4/CMPUT404-assignment-css-hell" class="project-btn" target="_blank">
GitHub<img src="./assets/images/icon.svg" alt="Button">
</a>
</div>
</div>
<!-- Project 10: QR hunter -->
<div class="project-item shadow-box" data-skill="frontend backend database">
<a class="overlay-link" href="https://github.com/shovo4/QRHunter" target="_blank"></a>
<img src="./assets/images/bg1.png" alt="BG" class="bg-img">
<div class="project-img">
<img src="./assets/images/project15.jpeg" alt="Project" width="500" height="220">
</div>
<div class="d-flex align-items-center justify-content-between">
<div class="project-info">
<p>Java, Android Studio, React Native, Flutter, FireBase</p>
<h1>QR Hunter</h1>
</div>
<a href="https://github.com/shovo4/QRHunter" class="project-btn" target="_blank">
GitHub<img src="./assets/images/icon.svg" alt="Button">
</a>
</div>
</div>
<!-- Roll The Dice Project -->
<div class="project-item shadow-box" data-skill="frontend">
<a class="overlay-link" href="https://github.com/shovo4/RollTheDice" target="_blank"></a>
<img src="./assets/images/bg1.png" alt="BG" class="bg-img">
<div class="project-img">
<img src="./assets/images/dice.jpeg" alt="Roll The Dice Project" width="500" height="220">
</div>
<div class="d-flex align-items-center justify-content-between">
<div class="project-info">
<p>HTML, CSS, JavaScript</p>
<h1>Roll The Dice</h1>
</div>
<a href="https://github.com/shovo4/RollTheDice" class="project-btn" target="_blank">
GitHub<img src="./assets/images/icon.svg" alt="Button">
</a>
</div>
</div>
<!-- Simon Game Project -->
<div class="project-item shadow-box" data-skill="frontend">
<a class="overlay-link" href="https://github.com/shovo4/Simon-Game" target="_blank"></a>
<img src="./assets/images/bg1.png" alt="BG" class="bg-img">
<div class="project-img">
<img src="./assets/images/simon.jpeg" alt="Simon Game Project" width="500" height="220">
</div>
<div class="d-flex align-items-center justify-content-between">
<div class="project-info">
<p>HTML, CSS, JavaScript, Bootstrap</p>
<h1>Simon Game</h1>
</div>
<a href="https://github.com/shovo4/Simon-Game" class="project-btn" target="_blank">
GitHub<img src="./assets/images/icon.svg" alt="Button">
</a>
</div>
</div>
<!-- Piano Fun Project -->
<div class="project-item shadow-box" data-skill="frontend">
<a class="overlay-link" href="https://github.com/shovo4/pianofun" target="_blank"></a>
<img src="./assets/images/bg1.png" alt="BG" class="bg-img">
<div class="project-img">
<img src="./assets/images/piano.png" alt="Piano Fun Project" width="500" height="220">
</div>
<div class="d-flex align-items-center justify-content-between">
<div class="project-info">
<p>HTML, CSS, JavaScript</p>
<h1>Piano Fun</h1>
</div>
<a href="https://github.com/shovo4/pianofun" class="project-btn" target="_blank">
GitHub<img src="./assets/images/icon.svg" alt="Button">
</a>
</div>
</div>
<!-- Blog API Project -->
<div class="project-item shadow-box" data-skill="backend">
<a class="overlay-link" href="https://github.com/shovo4/blogAPI" target="_blank"></a>
<img src="./assets/images/bg1.png" alt="BG" class="bg-img">
<div class="project-img">
<img src="./assets/images/blog.png" alt="Blog API Project" width="500" height="220">
</div>
<div class="d-flex align-items-center justify-content-between">
<div class="project-info">
<p>Node.js, Express.js, Axios, EJS</p>
<h1>Blog API</h1>
</div>
<a href="https://github.com/shovo4/blogAPI" class="project-btn" target="_blank">
GitHub<img src="./assets/images/icon.svg" alt="Button">
</a>
</div>
</div>
<!-- Student Registration Project -->
<div class="project-item shadow-box" data-skill="frontend backend databse">
<a class="overlay-link" href="https://github.com/shovo4/StudentRegistrationApp" target="_blank"></a>
<img src="./assets/images/bg1.png" alt="BG" class="bg-img">
<div class="project-img">
<!-- Note: Update the src attribute to the path where your image is stored -->
<img src="https://user-images.githubusercontent.com/77365934/237019336-2617e194-f1e2-4ed4-8b80-9cc365a8139c.png" alt="Student Registration Project" width="500" height="220">
</div>
<div class="d-flex align-items-center justify-content-between">
<div class="project-info">
<p>Django, Angular, SQL</p>
<h1>Student Registration</h1>
</div>
<a href="https://github.com/shovo4/StudentRegistrationApp" class="project-btn" target="_blank">
GitHub<img src="./assets/images/icon.svg" alt="Button">
</a>
</div>
</div>
<!-- File Manager Project -->
<div class="project-item shadow-box" data-skill="frontend">
<a class="overlay-link" href="https://github.com/shovo4/File-manager" target="_blank"></a>
<img src="./assets/images/bg1.png" alt="BG" class="bg-img">
<div class="project-img">
<img src="./assets/images/filemanager.jpg" alt="File Manager Project" width="500" height="220">
</div>
<div class="d-flex align-items-center justify-content-between">
<div class="project-info">
<p>React.js</p>
<h1>File Manager</h1>
</div>
<a href="https://github.com/shovo4/File-manager" class="project-btn" target="_blank">
GitHub<img src="./assets/images/icon.svg" alt="Button">
</a>
</div>
</div>
<!-- Secrets Project -->
<div class="project-item shadow-box" data-skill="backend">
<a class="overlay-link" href="https://github.com/shovo4/Secrets" target="_blank"></a>
<img src="./assets/images/bg1.png" alt="BG" class="bg-img">
<div class="project-img">
<img src="./assets/images/secrets.png" alt="Secrets Project" width="500" height="220">
</div>
<div class="d-flex align-items-center justify-content-between">
<div class="project-info">
<p>Node.js, Express.js</p>
<h1>Secrets</h1>
</div>
<a href="https://github.com/shovo4/Secrets" class="project-btn" target="_blank">
GitHub<img src="./assets/images/icon.svg" alt="Button">
</a>
</div>
</div>
<!-- Additional projects follow the same structure... -->
</div>
</div>
</section>
<!-- Contact Section -->
<!-- Contact Section -->
<section id="contact" class="contact-section shadow-box">
<div class="container">
<h2 class="section-heading" data-aos="fade-up">Contact</h2>
<!-- Contact Info -->
<div class="contact-details">
<ul class="info-list">
<li>Email: <a href="mailto:[email protected]" class="highlighted-text">[email protected]</a></li>
<li>Location: <span class="highlighted-text">Edmonton, AB, Canada</span></li>
</ul>
</div>