-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
968 lines (878 loc) · 38.5 KB
/
index.html
File metadata and controls
968 lines (878 loc) · 38.5 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Mohammad Burhan</title>
<!-- Meta -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="favicon.ico">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700" rel="stylesheet">
<!-- FontAwesome JS -->
<script defer src="assets/fontawesome/js/all.js"></script>
<!-- Plugin CSS -->
<link rel="stylesheet" href="assets/plugins/tiny-slider/tiny-slider.css">
<!-- Theme CSS -->
<link id="theme-style" rel="stylesheet" href="assets/css/theme-1.css">
<link id="theme-style" rel="stylesheet" href="assets/css/skill.css">
</head>
<body oncontextmenu="return false;">
<div class="main-wrapper">
<section class="about-me-section p-3 p-lg-5 theme-bg-light">
<header class="header text-center">
<div class="dark-mode-toggle">
<hr class="mb-4">
<h4 class="toggle-name"><i class="fas fa-adjust"></i>Dark Mode</h4>
<input class="toggle" id="darkmode" type="checkbox">
<label class="toggle-btn mx-auto mb-0" for="darkmode"></label>
<hr>
</div><!--//dark-mode-toggle-->
<div class="force-overflow">
<h1 class="blog-name pt-lg-4 mb-0"><a class="no-text-decoration" href="index.html">Mohammad
Burhan</a></h1>
<nav class="navbar navbar-expand-lg navbar-dark">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navigation" aria-controls="navigation" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div id="navigation" class="collapse navbar-collapse flex-column">
<div class="profile-section pt-3 pt-lg-0">
<img class="profile-image mb-3 rounded-circle mx-auto" src="assets/images/profile.png"
alt="image">
<div class="bio mb-3">Hi, my name is Mohammad Burhan and I'm a software engineer.
Welcome to my
personal website!</div><!--//bio-->
<ul class="social-list list-inline py-2 mx-auto">
<li class="list-inline-item"><a href="#"><i class="fab fa-twitter fa-fw"></i></a>
</li>
<li class="list-inline-item"><a
href="https://www.linkedin.com/in/burhanmohammad/"><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
<li class="list-inline-item"><a href="https://github.com/BurhanMohammad"><i
class="fab fa-github-alt fa-fw"></i></a></li>
<li class="list-inline-item"><a href="#"><i
class="fab fa-stack-overflow fa-fw"></i></a>
</li>
<li class="list-inline-item"><a href="https://wa.me/917036037203"><i
class="fa-brands fa-whatsapp"></i></a></li>
<li class="list-inline-item"><a href="https://github.com/BurhanMohammad"><i
class="fa-brands fa-github"></i></a></li>
<li class="list-inline-item"><a href="https://join.skype.com/invite/yjbxl233XgfF"><i
class="fa-brands fa-skype"></i></a></li>
</ul><!--//social-list-->
<hr>
</div><!--//profile-section-->
<ul class="navbar-nav flex-column text-start">
<li class="nav-item">
<a class="nav-link scrollto active" href="index.html"><i
class="fas fa-user fa-fw me-2"></i>About
Me<span class="sr-only"></span></a>
</li>
<li class="nav-item">
<a class="nav-link scrollto" href="portfolio.html"><i
class="fas fa-laptop-code fa-fw me-2"></i>Portfolio</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link scrollto" href="services.html"><i
class="fas fa-briefcase fa-fw me-2"></i>Services
& Pricing</a>
</li> -->
<li class="nav-item">
<a class="nav-link scrollto" href="skills.html"><i
class="fas fa-language fa-fw me-2"></i>Skills</a>
</li>
<li class="nav-item">
<a class="nav-link scrollto" href="resume.html"><i
class="fas fa-file-alt fa-fw me-2"></i>Resume</a>
</li>
<li class="nav-item">
<a class="nav-link scrollto" href="certificates.html"><i
class="fas fa-certificate fa-fw me-2"></i>certificates</a>
</li>
<li class="nav-item">
<a class="nav-link scrollto" href="blog-home.html"><i
class="fas fa-blog fa-fw me-2"></i>Blog</a>
</li>
<li class="nav-item scrollto">
<a class="nav-link" href="contact.html"><i
class="fas fa-envelope-open-text fa-fw me-2"></i>Contact</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
<i class="fas fa-cogs fa-fw me-2"></i>More Pages
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="project.html">Project Page</a></li>
<li><a class="dropdown-item" href="blog-home.html">Blog Home 1</a></li>
<li><a class="dropdown-item" href="blog-home-alt.html">Blog Home 2</a></li>
<li><a class="dropdown-item" href="blog-post.html">Blog Post</a></li>
</ul>
</li>
</ul>
<div class="my-2">
<a class="btn btn-primary" href="contact.html" target="_blank"><i
class="fas fa-paper-plane me-2"></i>Hire Me</a>
</div>
</div>
</nav>
</div><!--//force-overflow-->
</header>
<div class="container">
<div class="profile-teaser row">
<div class="col">
<h2 class="name font-weight-bold mb-1">Mohammad Burhan</h2>
<div class="tagline mb-3">Software Engineer (Backend - Python, Django, FastAPI, PostgreSQL, Redis, AWS)</div>
<div class="bio mb-4">Software Engineer with 5 years of experience building backend-first,
production-grade systems and scalable cloud platforms. Strong expertise in Python, Django,
FastAPI, PostgreSQL, Redis, AWS, and microservices, with hands-on experience in distributed
systems and secure API development. Check out my <a class="text-link"
href="portfolio.html">portfolio</a> and <a class="text-link"
href="resume.html">online resume</a>.
</div><!--//bio-->
<div class="mb-4">
<a class="btn btn-primary me-2 mb-3" href="portfolio.html"><i
class="fas fa-arrow-alt-circle-right me-2"></i><span
class="d-none d-md-inline">View</span> Portfolio</a>
<a class="btn btn-secondary mb-3" href="resume.html"><i
class="fas fa-file-alt me-2"></i><span class="d-none d-md-inline">View</span>
Resume</a>
</div>
</div><!--//col-->
<div class="col-md-5 col-lg-5">
<img class="profile-image img-fluid mb-3 mb-lg-0 me-md-0" src="assets/images/profile.png"
alt="">
</div>
</div>
</div>
</section><!--//about-me-section-->
<section class="overview-section p-3 p-lg-5">
<div class="container">
<h2 class="section-title font-weight-bold mb-3">What I do</h2>
<div class="section-intro mb-5">I have 5 years of experience building backend and cloud software in
production environments. Below is a quick overview of my main technical skill sets and technologies I use.
Want to find out more about my experience & projects? Check out my <a class="text-link"
href="resume.html">online resume</a> and <a class="text-link" href="portfolio.html">project
portfolio</a>.</div>
<div class="row">
<div class="item col-6 col-lg-3">
<div class="item-inner">
<div class="item-icon"><i class="fab fa-js-square"></i></div>
<h3 class="item-title">JavaScript</h3>
<div class="item-desc">JavaScript projects that demonstrate various skills and capabilities
in working with the language.
They showcase my proficiency in JavaScript and ability to create functional and
user-friendly applications.
Click on the link for more details
<a class="theme-link" href="project.html" target="_blank">JavaScript Projects</a>
available.
</div>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item col-6 col-lg-3">
<div class="item-inner">
<div class="item-icon"><i class="fab fa-python me-2"></i></div>
<h3 class="item-title">Python</h3>
<div class="item-desc">python projects in the linked showcase a range of skills in utilizing
the language for data analysis and machine learning. They include a sentiment analysis
tool for social media text and a predictive model for stock prices.
Click on the link for more detailed information and demonstrations of the projects
<a class="theme-link" href="project.html" target="_blank">Python Projects</a>
</div>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item col-6 col-lg-3">
<div class="item-inner">
<div class="item-icon"><img class="rounded-circle" src="assets/images/favicon.ico"
alt="image"></div>
<h3 class="item-title">Odoo</h3>
<div class="item-desc">Odoo projects in the linked demonstrate expertise in utilizing the
open-source ERP platform to create custom modules and automate business processes.
They include Hospital management, School managenent systems and Agency management
systems.
Click on the link for more detailed information and demonstrations of the projects. <a
class="theme-link" href="project.html" target="_blank">Odoo Projects</a>
.</div>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item col-6 col-lg-3">
<div class="item-inner">
<div class="item-icon"><img class="rounded-circle"
src="assets/images/favicon.6dbf28c0650e.ico" alt="image"></div>
<h3 class="item-title">Django</h3>
<div class="item-desc">Django projects in the linked showcase proficiency in utilizing the
popular Python web framework for creating robust, full-featured web applications.
They include an e-commerce platform, Youtube clone, Instragram clone and a social media
clone & more...
Click on the link for more detailed information and demonstrations of the projects.<a
class="theme-link" href="" target="_blank">Django Projects</a>.
</div>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item col-6 col-lg-3">
<div class="item-inner">
<div class="item-icon"><i class="fab fa-bootstrap"></i></div>
<h3 class="item-title">Bootstrap</h3>
<div class="item-desc">Bootstrap projects in the linked showcase proficiency in utilizing
the popular front-end framework to create responsive and visually appealing websites.
They include a landing page template and a responsive navigation bar. Click on the link
for more detailed information and demonstrations of the projects. <a class="theme-link"
href="project.html" target="_blank">Bootstrap</a>
.
</div>
</div><!-- //item-inner -->
</div><!-- //item -->
<!-- <div class="item col-6 col-lg-3">
<div class="item-inner">
<div class="item-icon"><i class="fab fa-npm me-2"></i><i class="fab fa-gulp me-2"></i><i
class="fab fa-grunt"></i></div>
<h3 class="item-title">npm, Gulp & Grunt</h3>
<div class="item-desc">List skills/technologies here. You can change the icon above to any
of the 1500+ <a class="theme-link" href="https://fontawesome.com/"
target="_blank">FontAwesome 5 free icons</a> available. Aenean commodo ligula eget
dolor. </div>
</div>//item-inner
</div>//item -->
<div class="item col-6 col-lg-3">
<div class="item-inner">
<div class="item-icon"><i class="fab fa-html5 me-2"></i><i class="fab fa-css3-alt"></i>
</div>
<h3 class="item-title">HTML & CSS</h3>
<div class="item-desc">HTML and CSS projects in the linked showcase proficiency in creating
responsive and visually appealing websites. They include a portfolio website and a
landing page for a fictional business. Click on the link for more detailed information
and demonstrations of the projects. <a class="theme-link" href="project.html"
target="_blank">HTML & css Projects</a>
. </div>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item col-6 col-lg-3">
<div class="item-inner">
<div class="item-icon"><i class="fas fa-database"></i>
</div>
<h3 class="item-title">SQL & PostgreSQL</h3>
<div class="item-desc">With extensive experience in MySQL and PostgreSQL, I am
well-versed in the intricacies of relational database management. From designing and
implementing complex database structures to optimizing performance and troubleshooting
issues, I have the skills and expertise to handle any project. Click on the link for
more detailed information
and demonstrations of the projects. <a class="theme-link" href="project.html"
target="_blank">SQL & PostgreSQL Projects</a>
. </div>
</div><!--//item-inner-->
</div><!--//item-->
<!-- <div class="item col-6 col-lg-3">
<div class="item-inner">
<div class="item-icon"><i class="fab fa-sass me-2"></i><i class="fab fa-less"></i></div>
<h3 class="item-title">Sass & LESS</h3>
<div class="item-desc">List skills/technologies here. You can change the icon above to any
of the 1500+ <a class="theme-link" href="https://fontawesome.com/"
target="_blank">FontAwesome 5 free icons</a> available. Aenean commodo ligula eget
dolor. </div>
</div>//item-inner
</div>//item -->
</div><!--//row-->
<div class="text-center py-3"><a href="project.html" class="btn btn-primary"><i
class="fas fa-arrow-alt-circle-right me-2"></i>More Details
</a></div>
</div><!--//container-->
</section>
<div class="container">
<hr>
</div>
<!-- <section class="testimonials-section p-3 p-lg-5">
<div class="container">
<h2 class="section-title font-weight-bold mb-5">Testimonials</h2>
<div class="testiomonial-carousel-container">
<div class="testimonial-carousel tiny-slider">
<div class="item">
<div class="item-inner">
<div class="quote-holder">
<blockquote class="quote-content">
Simon is a brilliant software engineer! Lorem ipsum dolor sit amet, consectetuer
adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis
natoque penatibus et magnis.
</blockquote>
<i class="fas fa-quote-left"></i>
</div>//quote-holder
<div class="source-holder">
<div class="source-profile">
<img src="assets/images/clients/profile-1.png" alt="image" />
</div>
<div class="meta">
<div class="name">Brandon James</div>
<div class="info">Project Manager, Google</div>
</div>
</div>
</div>//item-inner
</div>//item
<div class="item">
<div class="item-inner">
<div class="quote-holder">
<blockquote class="quote-content">
Simon is a brilliant software engineer! Lorem ipsum dolor sit amet, consectetuer
adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis
natoque penatibus et magnis.
</blockquote>
<i class="fas fa-quote-left"></i>
</div>//quote-holder
<div class="source-holder">
<div class="source-profile">
<img src="assets/images/clients/profile-2.png" alt="image" />
</div>
<div class="meta">
<div class="name">Kate Sanders</div>
<div class="info">Project Manager, Uber</div>
</div>
</div>
</div>//item-inner
</div>//item
<div class="item">
<div class="item-inner">
<div class="quote-holder">
<blockquote class="quote-content">
Simon is a brilliant software engineer! Lorem ipsum dolor sit amet, consectetuer
adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis
natoque penatibus et magnis.
</blockquote>
<i class="fas fa-quote-left"></i>
</div>//quote-holder
<div class="source-holder">
<div class="source-profile">
<img src="assets/images/clients/profile-3.png" alt="image" />
</div>
<div class="meta">
<div class="name">James Lee</div>
<div class="info">Product Manager, Amazon</div>
</div>
</div>
</div>//item-inner
</div>//item
<div class="item">
<div class="item-inner">
<div class="quote-holder">
<blockquote class="quote-content">
Simon is a brilliant software engineer! Lorem ipsum dolor sit amet, consectetuer
adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis
natoque penatibus et magnis.
</blockquote>
<i class="fas fa-quote-left"></i>
</div>//quote-holder
<div class="source-holder">
<div class="source-profile">
<img src="assets/images/clients/profile-4.png" alt="image" />
</div>
<div class="meta">
<div class="name">James Lee</div>
<div class="info">Product Manager, Amazon</div>
</div>
</div>
</div>//item-inner
</div>//item
<div class="item">
<div class="item-inner">
<div class="quote-holder">
<blockquote class="quote-content">
Simon is a brilliant software engineer! Lorem ipsum dolor sit amet, consectetuer
adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis
natoque penatibus et magnis.
</blockquote>
<i class="fas fa-quote-left"></i>
</div>//quote-holder
<div class="source-holder">
<div class="source-profile">
<img src="assets/images/clients/profile-5.png" alt="image" />
</div>
<div class="meta">
<div class="name">Olivia White</div>
<div class="info">Product Manager, Dropbox</div>
</div>
</div>
</div>//item-inner
</div>//item
<div class="item">
<div class="item-inner">
<div class="quote-holder">
<blockquote class="quote-content">
Simon is a brilliant software engineer! Lorem ipsum dolor sit amet, consectetuer
adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis
natoque penatibus et magnis.
</blockquote>
<i class="fas fa-quote-left"></i>
</div>//quote-holder
<div class="source-holder">
<div class="source-profile">
<img src="assets/images/clients/profile-6.png" alt="image" />
</div>
<div class="meta">
<div class="name">Samuel Reyes</div>
<div class="info">CTO, StartupHub</div>
</div>
</div>
</div>//item-inner
</div>//item
</div>//testimonial-carousel
</div>//testimonial-carousel-container
</div>//container
</section>//testimonials-section -->
<!-- <div class="container">
<hr>
</div> -->
<section class="featured-section p-3 p-lg-5">
<div class="container">
<h2 class="section-title font-weight-bold mb-5">Featured Projects</h2>
<div class="row">
<div class="col-md-6 mb-5">
<div class="card project-card">
<div class="row no-gutters">
<div class="card-img-holder">
<img src="assets/images/project/project-1.jpg" class="card-img" alt="image">
</div>
<div class="">
<div class="card-body">
<h5 class="card-title"><a href="project.html" class="theme-link">Google
clone</a></h5>
<p class="card-text">Django Google clone project is a web development project
that is based on the popular search engine Google.</p>
<p class="card-text"><small class="text-muted">Client: Owm</small></p>
</div>
</div>
</div>
<div class="link-mask">
<a class="link-mask-link" href="project.html"></a>
<div class="link-mask-text">
<a class="btn btn-secondary" href="project.html">
<i class="fas fa-eye me-2"></i>View Case Study
</a>
</div>
</div><!--//link-mask-->
</div><!--//card-->
</div><!--//col-->
<div class="col-md-6 mb-5">
<div class="card project-card">
<div class="row no-gutters">
<div class="card-img-holder">
<img src="assets/images/project/project-2.jpg" class="card-img" alt="image">
</div>
<div class="">
<div class="card-body">
<h5 class="card-title"><a href="project.html" class="theme-link">Hospital
Managenent Systems</a></h5>
<p class="card-text">Odoo Hospital Management System project is a custom module
built using the Odoo framework. It provides a comprehensive solution for
managing all aspects of a hospital, from patient management, appointment
scheduling, and billing to inventory control and reporting.</p>
<p class="card-text"><small class="text-muted">Client: Apple Dental Care</small>
</p>
</div>
</div>
</div>
<div class="link-mask">
<a class="link-mask-link" href="project.html"></a>
<div class="link-mask-text">
<a class="btn btn-secondary" href="project.html">
<i class="fas fa-eye me-2"></i>View Case Study
</a>
</div>
</div><!--//link-mask-->
</div><!--//card-->
</div><!--//col-->
<div class="col-md-6 mb-5">
<div class="card project-card">
<div class="row no-gutters">
<div class="card-img-holder">
<img src="assets/images/project/project-3.jpg" class="card-img" alt="image">
</div>
<div class="">
<div class="card-body">
<h5 class="card-title"><a href="project.html" class="theme-link">Agency
Managenent Systems</a></h5>
<p class="card-text">Odoo Agency Management System project is a custom
implementation of the Odoo platform to streamline and automate the
operations of an agency. The project includes modules for client management,
project management, and financial tracking. </p>
<p class="card-text"><small class="text-muted">Client: Versions</small></p>
</div>
</div>
</div>
<div class="link-mask">
<a class="link-mask-link" href="project.html"></a>
<div class="link-mask-text">
<a class="btn btn-secondary" href="project.html">
<i class="fas fa-eye me-2"></i>View Case Study
</a>
</div>
</div><!--//link-mask-->
</div><!--//card-->
</div><!--//col-->
<div class="col-md-6 mb-5">
<div class="card project-card">
<div class="row no-gutters">
<div class="card-img-holder">
<img src="assets/images/project/project-4.jpg" class="card-img" alt="image">
</div>
<div class="">
<div class="card-body">
<h5 class="card-title"><a href="project.html" class="theme-link">Metro
Maintenence Managenent Systems</a></h5>
<p class="card-text">Odoo Maintenance Management System project is a custom
module developed using the Odoo platform that allows companies to
efficiently manage their maintenance tasks, schedules and inventory.</p>
<p class="card-text"><small class="text-muted">Client: </small></p>
</div>
</div>
</div>
<div class="link-mask">
<a class="link-mask-link" href="project.html"></a>
<div class="link-mask-text">
<a class="btn btn-secondary" href="project.html">
<i class="fas fa-eye me-2"></i>View Case Study
</a>
</div>
</div><!--//link-mask-->
</div><!--//card-->
</div><!--//col-->
<div class="col-md-6 mb-5">
<div class="card project-card">
<div class="row no-gutters">
<div class="card-img-holder">
<img src="assets/images/project/project-5.jpg" class="card-img" alt="image">
</div>
<div class="">
<div class="card-body">
<h5 class="card-title"><a href="project.html" class="theme-link">Youtube
clone</a></h5>
<p class="card-text">Django Youtube Clone project is a web application that
utilizes the Django framework to replicate the functionality of the popular
video sharing platform, YouTube.</p>
<p class="card-text"><small class="text-muted">Client: Own</small></p>
</div>
</div>
</div>
<div class="link-mask">
<a class="link-mask-link" href="project.html"></a>
<div class="link-mask-text">
<a class="btn btn-secondary" href="project.html">
<i class="fas fa-eye me-2"></i>View Case Study
</a>
</div>
</div><!--//link-mask-->
</div><!--//card-->
</div><!--//col-->
<div class="col-md-6 mb-5">
<div class="card project-card">
<div class="row no-gutters">
<div class="card-img-holder">
<img src="assets/images/project/project-6.jpg" class="card-img" alt="image">
</div>
<div class="">
<div class="card-body">
<h5 class="card-title"><a href="project.html" class="theme-link">Instragram
Clone</a></h5>
<p class="card-text">The Django Instagram Clone project is a web application
that imitates the functionality and features of the popular social media
platform Instagram. It includes user authentication, post creation,
commenting, and following functionality. </p>
<p class="card-text"><small class="text-muted">Client: Owm</small></p>
</div>
</div>
</div>
<div class="link-mask">
<a class="link-mask-link" href="project.html"></a>
<div class="link-mask-text">
<a class="btn btn-secondary" href="project.html">
<i class="fas fa-eye me-2"></i>View Case Study
</a>
</div>
</div><!--//link-mask-->
</div><!--//card-->
</div><!--//col-->
</div><!--//row-->
<div class="text-center py-3"><a href="portfolio.html" class="btn btn-primary"><i
class="fas fa-arrow-alt-circle-right me-2"></i>View Portfolio</a></div>
</div><!--//container-->
</section><!--//featured-section-->
<div class="container">
<hr>
</div>
<section id="skills" class="skills section-bg">
<div class="container">
<div class="">
<h2 class="section-title font-weight-bold mb-5">Skills</h2>
<p>I am proficient in Python, JavaScript, and SQL, with strong backend expertise in Django, Flask,
and FastAPI. I build REST and SOAP integrations, asynchronous processing pipelines, and scalable
microservices on AWS. I also work with PostgreSQL query optimization, Redis caching, React.js,
and testing with PyTest to deliver reliable production systems.</p>
</div>
<div class="row d-flex justify-content-center mt-100">
<div class="col-auto">
<div class=" rounded-lg p-5 ">
<h2 class="h6 font-weight-bold text-center mb-3">PYTHON</h2>
<div class="progress blue">
<span class="progress-left">
<span class="progress-bar"></span>
</span>
<span class="progress-right">
<span class="progress-bar"></span>
</span>
<div class="progress-value">100%</div>
</div>
</div>
</div>
<div class="col-auto">
<div class=" rounded-lg p-5 ">
<h2 class="h6 font-weight-bold text-center mb-4">JAVASCRIPT</h2>
<div class="progress powderblue">
<span class="progress-left">
<span class="progress-bar"></span>
</span>
<span class="progress-right">
<span class="progress-bar"></span>
</span>
<div class="progress-value">80%</div>
</div>
</div>
</div>
<div class="col-auto">
<div class=" rounded-lg p-5 ">
<h2 class="h6 font-weight-bold text-center mb-4">FASTAPI</h2>
<div class="progress steelblue">
<span class="progress-left">
<span class="progress-bar"></span>
</span>
<span class="progress-right">
<span class="progress-bar"></span>
</span>
<div class="progress-value">90%</div>
</div>
</div>
</div>
<div class="col-auto">
<div class=" rounded-lg p-5 ">
<h2 class="h6 font-weight-bold text-center mb-4">DJANGO</h2>
<div class="progress orange">
<span class="progress-left">
<span class="progress-bar"></span>
</span>
<span class="progress-right">
<span class="progress-bar"></span>
</span>
<div class="progress-value">90%</div>
</div>
</div>
</div>
<div class="col-auto">
<div class=" rounded-lg p-5 ">
<h2 class="h6 font-weight-bold text-center mb-4">REDIS</h2>
<div class="progress purple">
<span class="progress-left">
<span class="progress-bar"></span>
</span>
<span class="progress-right">
<span class="progress-bar"></span>
</span>
<div class="progress-value">80%</div>
</div>
</div>
</div>
<div class="col-auto">
<div class=" rounded-lg p-5 ">
<h2 class="h6 font-weight-bold text-center mb-4">AWS</h2>
<div class="progress black">
<span class="progress-left">
<span class="progress-bar"></span>
</span>
<span class="progress-right">
<span class="progress-bar"></span>
</span>
<div class="progress-value">90%</div>
</div>
</div>
</div>
<div class="col-auto">
<div class=" rounded-lg p-5 ">
<h2 class="h6 font-weight-bold text-center mb-4">REST|SOAP APIS</h2>
<div class="progress gray">
<span class="progress-left">
<span class="progress-bar"></span>
</span>
<span class="progress-right">
<span class="progress-bar"></span>
</span>
<div class="progress-value">90%</div>
</div>
</div>
</div>
<div class="col-auto">
<div class=" rounded-lg p-5 ">
<h2 class="h6 font-weight-bold text-center mb-4">SQL|POSTGRESQL</h2>
<div class="progress red">
<span class="progress-left">
<span class="progress-bar"></span>
</span>
<span class="progress-right">
<span class="progress-bar"></span>
</span>
<div class="progress-value">85%</div>
</div>
</div>
</div>
<div class="col-auto">
<div class=" rounded-lg p-5 ">
<h2 class="h6 font-weight-bold text-center mb-4">DOCKER|CI/CD</h2>
<div class="progress indigo">
<span class="progress-left">
<span class="progress-bar"></span>
</span>
<span class="progress-right">
<span class="progress-bar"></span>
</span>
<div class="progress-value">85%</div>
</div>
</div>
</div>
<div class="col-auto">
<div class=" rounded-lg p-5 ">
<h2 class="h6 font-weight-bold text-center mb-4">GIT|GITHUB ACTIONS</h2>
<div class="progress violet">
<span class="progress-left">
<span class="progress-bar"></span>
</span>
<span class="progress-right">
<span class="progress-bar"></span>
</span>
<div class="progress-value">90%</div>
</div>
</div>
</div>
<div class="col-auto">
<div class=" rounded-lg p-5 ">
<h2 class="h6 font-weight-bold text-center mb-4">PYTEST|UNIT TESTING</h2>
<div class="progress green">
<span class="progress-left">
<span class="progress-bar"></span>
</span>
<span class="progress-right">
<span class="progress-bar"></span>
</span>
<div class="progress-value">85%</div>
</div>
</div>
</div>
<div class="col-auto">
<div class=" rounded-lg p-5 ">
<h2 class="h6 font-weight-bold text-center mb-4">REACT|AJAX</h2>
<div class="progress pink">
<span class="progress-left">
<span class="progress-bar"></span>
</span>
<span class="progress-right">
<span class="progress-bar"></span>
</span>
<div class="progress-value">80%</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="latest-blog-section p-3 p-lg-5">
<div class="container">
<h2 class="section-title font-weight-bold mb-5">Latest Blog Posts</h2>
<h3 class="text-center">Comming Soon</h3>
<!-- <div class="row">
<div class="col-md-4 mb-5">
<div class="card blog-post-card">
<img class="card-img-top" src="assets/images/blog/blog-post-thumb-card-1.jpg" alt="image">
<div class="card-body">
<h5 class="card-title"><a class="theme-link" href="blog-post.html">Top 3 JavaScript
Frameworks</a></h5>
<p class="card-text">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean
commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis
parturient...</p>
<p class="mb-0"><a class="text-link" href="blog-post.html">Read more →</a></p>
</div>
<div class="card-footer">
<small class="text-muted">Published 2 days ago</small>
</div>
</div>//card
</div>//col
<div class="col-md-4 mb-5">
<div class="card blog-post-card">
<img class="card-img-top" src="assets/images/blog/blog-post-thumb-card-2.jpg" alt="image">
<div class="card-body">
<h5 class="card-title"><a class="theme-link" href="blog-post.html">About Remote
Working</a></h5>
<p class="card-text">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean
commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis
parturient...</p>
<p class="mb-0"><a class="text-link" href="blog-post.html">Read more →</a></p>
</div>
<div class="card-footer">
<small class="text-muted">Published a week ago</small>
</div>
</div>//card
</div>//col
<div class="col-md-4 mb-5">
<div class="card blog-post-card">
<img class="card-img-top" src="assets/images/blog/blog-post-thumb-card-3.jpg" alt="image">
<div class="card-body">
<h5 class="card-title"><a class="theme-link" href="blog-post.html">A Guide to Becoming a
Full-Stack Developer</a></h5>
<p class="card-text">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean
commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis
parturient...</p>
<p class="mb-0"><a class="text-link" href="blog-post.html">Read more →</a></p>
</div>
<div class="card-footer">
<small class="text-muted">Published 3 weeks ago</small>
</div>
</div>//card
</div>//col
</div>//row -->
<!-- <div class="text-center py-3"><a href="blog-hom.html" class="btn btn-primary"><i
class="fas fa-arrow-alt-circle-right me-2"></i>View Blog</a></div> -->
</div><!--//container-->
</section><!--//latest-blog-section-->
<footer class="footer text-center py-4">
<small class="copyright">Copyright © <a href="" target="_blank">Mohammad Burhan</a></small>
</footer>
</div><!--//main-wrapper-->
<!-- *****CONFIGURE STYLE (REMOVE ON YOUR PRODUCTION SITE)****** -->
<div id="config-panel" class="config-panel config-panel-hide d-none d-lg-block">
<div class="panel-inner">
<a id="config-trigger" class="config-trigger text-center" href="#"><i class="fas fa-cog mx-auto"
data-fa-transform="down-6"></i></a>
<h5 class="panel-title">Choose Colour</h5>
<ul id="color-options" class="list-inline mb-0">
<li class="theme-1 active list-inline-item"><a data-style="assets/css/theme-1.css" href="#"></a></li>
<li class="theme-2 list-inline-item"><a data-style="assets/css/theme-2.css" href="#"></a></li>
<li class="theme-3 list-inline-item"><a data-style="assets/css/theme-3.css" href="#"></a></li>
<li class="theme-4 list-inline-item"><a data-style="assets/css/theme-4.css" href="#"></a></li>
<li class="theme-5 list-inline-item"><a data-style="assets/css/theme-5.css" href="#"></a></li>
<li class="theme-6 list-inline-item"><a data-style="assets/css/theme-6.css" href="#"></a></li>
<li class="theme-7 list-inline-item"><a data-style="assets/css/theme-7.css" href="#"></a></li>
<li class="theme-8 list-inline-item"><a data-style="assets/css/theme-8.css" href="#"></a></li>
<li class="theme-9 list-inline-item"><a data-style="assets/css/theme-9.css" href="#"></a></li>
<li class="theme-10 list-inline-item"><a data-style="assets/css/theme-10.css" href="#"></a></li>
</ul>
<a id="config-close" class="close" href="#"><i class="fa fa-times-circle"></i></a>
</div><!--//panel-inner-->
</div><!--//configure-panel-->
<!-- Javascript -->
<script src="assets/plugins/popper.min.js"></script>
<script src="assets/plugins/bootstrap/js/bootstrap.min.js"></script>
<script src="assets/plugins/tiny-slider/min/tiny-slider.js"></script>
<script src="assets/js/testimonials.js"></script>
<!-- Style Switcher (REMOVE ON YOUR PRODUCTION SITE) -->
<script src="assets/js/demo/style-switcher.js"></script>
<!-- Dark Mode -->
<script src="assets/plugins/js-cookie.min.js"></script>
<script src="assets/js/dark-mode.js"></script>
<script src="desable_rightclick.js"></script>
</body>
</html>