-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·1473 lines (1465 loc) · 64.7 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>AHMED SHEHAT \</title>
<!--font family-->
<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=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,500;1,700;1,900&display=swap"
rel="stylesheet"
/>
<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=Bai+Jamjuree:ital,wght@0,300;0,400;0,600;0,700;1,200;1,300&family=Barlow+Semi+Condensed:wght@600;700&family=Cairo:wght@400;500;600;700;800;900&family=DM+Serif+Display&family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&family=Karla:ital,wght@0,400;0,700;1,400;1,700&family=Open+Sans:wght@400;500;600;700;800&family=Oswald:wght@300;400;500;600;700&family=Permanent+Marker&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Source+Sans+Pro:ital,wght@1,400;1,600;1,900&display=swap"
rel="stylesheet"
/>
<!--poppines font-->
<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=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet"
/>
<!--wow files-->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<!--css files-->
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/bootstrap.min.css.map" />
<link href="css/hover-min.css" rel="stylesheet" />
<link rel="stylesheet" href="css/all.min.css" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<!-- start nav -->
<nav
id="navbar"
class="navbar navbar-expand-lg navbar-light fixed-top transparent-bg"
>
<div class="container">
<a class="navbar-brand" href="#">HOME</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div
class="collapse navbar-collapse justify-content-center"
id="navbarNav"
>
<ul class="navbar-nav">
<li class="nav-item me-4">
<a class="nav-link" href="#about-me">INTRO</a>
</li>
<li class="nav-item me-4">
<a class="nav-link" href="#services">SERVICES</a>
</li>
<li class="nav-item me-4">
<a class="nav-link" href="#portfolio">PORTFOLIO</a>
</li>
<li class="nav-item me-4">
<a class="nav-link" href="#contact">CONTACT</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- end nav -->
<!-- start header -->
<header class="text-center">
<!--<div id="particles-js"></div> animated bg -->
<div id="header-bg"></div>
<div class="container text-holder">
<p
class="h2 mt-4 me-3 animate__animated animate__fadeInUp animate__delay-0.375s animate-duration-0.875s"
>
AHMED SHEHATA
</p>
<p
class="my-5 text-center animate__animated animate__fadeInUp animate__delay-0.375s animate-duration-0.875s"
>
ANALYTICS <br />
ENGINEER
</p>
<!--icons
<p class="text pt-3 px-2">
Welcome to Ahmed Shehata Portfolio’s page. Business Intelligence Analyst and a Data Storyteller with strong background in statistics and 7-month remote experience. Certified as a Professional Data Analyst by
<a class="datacamp" href="https://www.datacamp.com/certificate/DA0028106803070" target="_blank">
DataCamp.
</a>
</p>
<button type="button" class="btn btn-outline-success mt-2 me-3 btn-lg">
<a href="#about-me">VISIT</a>
</button>
<button type="button" class="btn btn-outline-success mt-2 btn-lg">
<a href="#contact">CONTACT</a>
</button>
-->
<div
class="animate__animated animate__fadeInUp animate__delay-0.375s animate-duration-0.875s"
>
<div
class="animate__animated animate__bounce animate__infinite infinite arrow-bg rounded-circle animate__slow"
>
<a href="#about-me">
<img
class="arrow-down img-fluid"
src="pics/arrow-down.svg "
alt=""
/>
</a>
</div>
</div>
</div>
</header>
<!-- end header -->
<!-- start about-me -->
<div id="about-me" class="text-center text-lg-start about-me py-5">
<div class="container bg-holder px-5 pt-5">
<div class="d-flex flex-column about-me-holder pb-3">
<h2 class="h1 text-center">
ABOUT <span style="color: #e74d61">ME</span>
</h2>
<div class="line-holder d-flex justify-content-center">
<hr class="about-me-line" />
<i class="fa-solid fa-address-card px-3" style="color: #e74d61"></i>
<hr class="about-me-line" />
</div>
</div>
<div class="row">
<div class="col-12 col-lg-3 align-self-start col-left">
<div class="about-me-img-holder">
<div class="bio pt-3 d-none d-lg-block">
<div class="bio-text p-3">
<p class="pt-2">Name</p>
<p class="pb-2">Ahmed Shehata</p>
<p class="pt-2">Age</p>
<p class="pb-2">24</p>
<p class="pt-2">Mail</p>
<p class="pb-2">[email protected]</p>
<p class="pt-2">Phone</p>
<p class="pb-2">+201113229737</p>
<p class="pt-2">Adress</p>
<p class="pb-2">Cairo, Egypt / Dubai, UAE</p>
<p class="pt-2">Languages</p>
<p>Arabic, English</p>
</div>
</div>
<div class="img-overlay hvr-sweep-to-top">
<div class="icons d-flex justify-content-center">
<div class="rounded-circle twitter me-3 text-center">
<a href="https://twitter.com/sr4shetos" target="_blank">
<i class="fa-brands fa-twitter"></i>
</a>
</div>
<div class="rounded-circle linkedin me-3 text-center">
<a
href="https://www.linkedin.com/in/thedatanerd/"
target="_blank"
>
<i class="fa-brands fa-linkedin-in"></i>
</a>
</div>
<a
href="https://public.tableau.com/app/profile/ahmed.shehata.ali"
target="_blank"
>
<svg
class="img-fluid me-3 tableau rounded-circle p-2"
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="50"
height="50"
viewBox="0 0 50 50"
style="fill: #ffffff"
>
<path
d="M 23.5 0 L 23.5 4.5 L 19.5 4.5 L 19.5 6.5 L 23.5 6.5 L 23.5 11 L 25.5 11 L 25.5 6.5 L 29.5 6.5 L 29.5 4.5 L 25.5 4.5 L 25.5 0 L 23.5 0 z M 11 5 L 11 11 L 5 11 L 5 13 L 11 13 L 11 19 L 13 19 L 13 13 L 19 13 L 19 11 L 13 11 L 13 5 L 11 5 z M 36 5 L 36 11 L 30 11 L 30 13 L 36 13 L 36 19 L 38 19 L 38 13 L 44 13 L 44 11 L 38 11 L 38 5 L 36 5 z M 23 16 L 23 23 L 16 23 L 16 26 L 23 26 L 23 33 L 26 33 L 26 26 L 33 26 L 33 23 L 26 23 L 26 16 L 23 16 z M 5 19 L 5 23.5 L 1 23.5 L 1 25.5 L 5 25.5 L 5 30 L 7 30 L 7 25.5 L 11 25.5 L 11 23.5 L 7 23.5 L 7 19 L 5 19 z M 43 19 L 43 23.5 L 39 23.5 L 39 25.5 L 43 25.5 L 43 30 L 45 30 L 45 25.5 L 49 25.5 L 49 23.5 L 45 23.5 L 45 19 L 43 19 z M 11 29 L 11 35 L 5 35 L 5 37 L 11 37 L 11 43 L 13 43 L 13 37 L 19 37 L 19 35 L 13 35 L 13 29 L 11 29 z M 36 29 L 36 35 L 30 35 L 30 37 L 36 37 L 36 43 L 38 43 L 38 37 L 44 37 L 44 35 L 38 35 L 38 29 L 36 29 z M 23.5 38 L 23.5 42.5 L 19.5 42.5 L 19.5 44.5 L 23.5 44.5 L 23.5 49 L 25.5 49 L 25.5 44.5 L 29.5 44.5 L 29.5 42.5 L 25.5 42.5 L 25.5 38 L 23.5 38 z"
></path>
</svg>
</a>
</div>
</div>
<img
class="img-fluid about-me-photo"
src="pics/shetos.jpg"
alt="profile-pic"
/>
</div>
</div>
<div
class="col-12 offset-lg-4 col-lg-5 offset-xl-3 col-xl-6 ps-lg-5 px-2 align-self-center"
>
<p class="text mt-4">
Hi, I'm Ahmed. <br />
I have honed my expertise in developing business intelligence
solutions, performing ETL processes for data warehousing,
data-driven analysis, and creating interactive dashboards using a
variety of tools such as Tableau, Power BI, and SQL. My goal is to
provide critical insights that drive business growth and success.
</p>
<div class="d-flex justify-content-around about-me-btn-holder">
<button type="button" id="show-cv" class="btn my-3 ms-4 show-cv">
<a
href="https://drive.google.com/file/d/1oGcHj8OxaJp7gOGS6Qg7pyf2_byUv3Tm/view?usp=drivesdk"
target="_blank"
>Show CV
<i
class="fa-solid fa-arrow-down-long ps-1"
style="color: #ffffff"
></i>
</a>
</button>
<button type="button" id="hire-me" class="btn my-3 me-4 hire-me">
<a href="#get-touch">Hire Me</a>
<i
class="fa-solid fa-arrow-right-long ps-3"
style="color: #ffffff"
></i>
</button>
</div>
</div>
<div class="col bio pt-3 d-block d-lg-none">
<div class="bio-text p-3">
<p class="pt-2">Name</p>
<p class="pb-2">Ahmed Shehata</p>
<p class="pt-2">Age</p>
<p class="pb-2">24</p>
<p class="pt-2">Mail</p>
<p class="pb-2">[email protected]</p>
<p class="pt-2">Phone</p>
<p class="pb-2">+201113229737</p>
<p class="pt-2">Adress</p>
<p class="pb-2">Cairo, Egypt / Dubai, UAE</p>
<p class="pt-2">Languages</p>
<p>Arabic, English</p>
</div>
</div>
</div>
</div>
</div>
<!-- end about-me -->
<!-- start services -->
<div id="services" class="py-5">
<div class="container">
<h2 class="h1 pt-1 text-center">SERVICES</h2>
<div class="line-container mb-5">
<div class="line line1 pb-1"></div>
<div class="line line2 pb-1"></div>
<div class="line line1 pb-1"></div>
</div>
<div class="row row-cols-1 row-cols-md-3 g-4">
<!--
<div class="col">
<div class="card h-100 pt-3 hvr-glow">
<img src="pics/data-cleaning-icon.svg" class="card-img-top text-center svg" style="max-width: 20%; margin-left: 16px" alt="data cleaning icon" />
<img src="pics/data-cleaning-icon-hover.svg" class="card-img-top text-center svg-hover" style="max-width: 20%; margin-left: 16px; transform: scale(1.1)" alt="Reporting icon" />
<div class="card-body">
<h5 class="card-title text-center text-md-start py-3">
Data Cleaning and Preparation
</h5>
<div class="card-text text-start">
<ul style="list-style-type: disc">
<li>Data cleaning using python libraries.</li>
<li>Data integration and transformation.</li>
<li>Data wrangling and data profiling.</li>
<li>Data quality assessment and improvement.</li>
</ul>
</div>
</div>
</div>
</div>
-->
<div class="col">
<div class="card h-100 pt-3 hvr-glow">
<div class="d-flex justify-content-center">
<img
src="pics/dashboard.svg"
class="card-img-top text-center svg"
style="max-width: 23%"
alt="Reporting icon"
/>
<img
src="pics/dashboard-hover.svg"
class="card-img-top text-center svg-hover dashboard-hover"
style="max-width: 23%; transform: scale(1.1)"
alt="Reporting icon"
/>
</div>
<div class="card-body">
<h5 class="card-title text-center py-3">
Reporting and Dashboard Creation
</h5>
<div class="card-text">
<ul style="list-style-type: disc">
<li>Interactive dashboard design.</li>
<li>Data-driven decision-making support.</li>
<li>Infographics and data storytelling.</li>
<li>Create meaningful reports and data summaries.</li>
<li>
Utilize visualization tools (Tableau, Power BI, Python
libraries).
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="col">
<div class="card h-100 pt-3 hvr-glow">
<div class="d-flex justify-content-center">
<img
src="pics/data management-icon.svg"
class="card-img-top text-center svg"
style="max-width: 20%"
alt="data management icon"
/>
<img
src="pics/data management-icon-hover.svg"
class="card-img-top text-center svg-hover"
style="max-width: 20%; transform: scale(1.1)"
alt="Reporting icon"
/>
</div>
<div class="card-body">
<h5 class="card-title text-center py-3">Data Management</h5>
<div class="card-text">
<ul style="list-style-type: disc">
<li>
Database architecture: dimensional models and schema
design.
</li>
<li>
Develop ETL processes to populate the data warehouse.
</li>
<li>Design efficient and scalable data pipelines.</li>
<li>Implement data quality measurements.</li>
</ul>
</div>
</div>
</div>
</div>
<div class="col">
<div class="card h-100 pt-3 hvr-glow">
<div class="d-flex justify-content-center">
<img
src="pics/analytics-icon.svg"
class="card-img-top text-center svg"
style="max-width: 20%"
alt="analytics icon"
/>
<img
src="pics/analytics-icon-hover.svg"
class="card-img-top text-center svg-hover"
style="max-width: 20%; transform: scale(1.1)"
alt="Reporting icon"
/>
</div>
<div class="card-body">
<h5 class="card-title text-center py-3">
Analysis and Interpretation
</h5>
<div class="card-text">
<ul style="list-style-type: disc">
<li>Data exploration and descriptive analytics.</li>
<li>Statistical analysis.</li>
<li>KPIs definition and monitoring.</li>
<li>Customer behavior analysis and segmentation.</li>
<li>Conduct A/B testing and hypothesis testing.</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end services -->
<!-- start portfolio -->
<div id="portfolio" class="py-5">
<div class="container">
<h2 class="h1 text-center">PORTFOLIO</h2>
<div class="line-container mb-5">
<div class="line line1 pb-1"></div>
<div class="line line2 pb-1"></div>
<div class="line line1 pb-1"></div>
</div>
<div class="btns-holder text-center">
<div class="btns text-center p-2">
<div id="hover-btn-bg" class="hover-btn-bg"></div>
<button type="button" id="selected-works" class="btn active-btn">
Selected Works
</button>
<button type="button" id="e-commerce" class="btn">
E-commerce
</button>
<button type="button" id="healthcare" class="btn">
Healthcare
</button>
<button type="button" id="travel" class="btn">Travel</button>
<button type="button" id="other" class="btn">Other</button>
</div>
</div>
<div class="projects mt-5">
<div class="projects-holder">
<!-- super store project -->
<div class="project e-commerce selected-works">
<div
class="row pt-4 px-4 animate__animated animate__fadeIn animate__delay-.5s"
>
<div
class="col-12 col-md-6 order-2 order-md-1 align-self-center"
>
<h5 class="project-header mb-4">
Online Superstore Performance Dashboard
</h5>
<p class="project-content mb-4">
The dashboard provides an overview of the performance in
terms of sales and profits, as well as customer behavior
insights and product trends.
</p>
<button
class="btn read-more mb-4"
data-bs-toggle="modal"
data-bs-toggle="modal"
data-bs-target="#super-store-modal"
Launch
demo
modal
>
<span class="hvr-underline-from-left pb-1 pt-3"
>Read More</span
>
</button>
</div>
<div
class="col-12 col-md-6 order-1 order-md-2 image align-self-center"
>
<img
src="pics/projects/super store/Executive Summary(Home).png"
class="card-img"
alt="..."
/>
<div class="d-flex justify-content-end my-3">
<div
data-bs-toggle="modal"
data-bs-toggle="modal"
data-bs-target="#super-store-modal"
Launch
demo
modal
>
<button class="Btn">
<div class="text py-1">View</div>
<div class="sign" style="background: #181824">
<i class="fa-solid fa-arrow-right"></i>
</div>
</button>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div
class="modal fade"
id="super-store-modal"
tabindex="-1"
aria-labelledby="super-store-modal-label"
aria-hidden="true"
>
<div class="modal-dialog modal-xl modal-dialog-scrollable">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">
Online Superstore Performance Dashboard
</h5>
<button
type="button"
class="btn-close"
data-bs-dismiss="modal"
aria-label="Close"
></button>
</div>
<div class="modal-body">
<p>
The dashboard provides an overview of the performance of
online Superstore in terms of sales and profits, as well
as insights into customer behavior and product trends
over the course of this year, including a comparison to
past year results.
</p>
<p>
The dashboard consists of four pages according of what
level of details we want, <br />
<b
>📍 Executive Summary which contains different
sections:</b
>
<br />
- KPIs Section: Sales Performance, Profit Performance,
Orders and Customers count . Each section provides
detailed information about the store’s performance in
that area. It also shows how every section has changed
over time and in comparison to last year so we can
detect seasonal trends for each product as well as
overall trends in their volume over time.
</p>
<p>
🔗 I made sure The KPIs filter is user-friendly so you
can filter the whole dashboard easily just by clicking
over “Sales – Profit – Orders“.
</p>
<p>
- Then provides a breakdown of KPIs by segment, product
category and subcategory, It also includes charts
showing the top 5 Manufacturers selling products and
also how each month performance compares to the previous
year’s performance. “ ⚪ for PY and 🔴 for CY”
</p>
<p>
- Top returned products which helps in identifying
quality issues so we can send feedback to the quality
management team. - You can also breakdown by region and
there’s a small map to breakdown by state but If you
want to compare locations performance you can click on
“Full Map Icon”.
</p>
<img
class="img-fluid"
src="pics/projects/super store/Executive Summary(Home).png"
alt=""
/>
<p class="py-3">
<b>📍 Transaction Details</b> <br />
You can see the Transaction details just by clicking on
“Order Details Icon” which provides detailed information
containing Order ID, Transaction date, Customer name,
Address, Is the order profitable or not, shipment method
and finally the order status(Completed or still
Pending).
</p>
<img
class="img-fluid"
src="pics/projects/super store/Order Details.png"
alt=""
/>
<p class="py-3">
<b>📍 Full Map</b> <br />
Overall, this dashboard provides a comprehensive
overview of the Superstore's performance across multiple
areas, allowing C-level executives to quickly identify
areas where performance can be improved or capitalized
upon.
</p>
<img
class="img-fluid"
src="pics/projects/super store/Location Dashboard.png"
alt=""
/>
<p class="py-3">
<b>📍 Customers LTV</b> <br />
Just small chart of customer LTV over the past 4 years
broken down by successive 16 quarters. It is an
important metric for businesses because they can make
more informed decisions about how much to invest in
acquiring new customers, how much to spend on retaining
existing customers, and how much revenue they can expect
to generate from each customer over time.
</p>
<img
class="img-fluid"
src="pics/projects/super store/LTV Dashboard.png"
alt=""
/>
</div>
</div>
</div>
</div>
</div>
<!-- ER-admission project -->
<div class="project healthcare selected-works">
<div
class="row pt-4 px-4 animate__animated animate__fadeIn animate__delay-.5"
>
<div
class="col-12 col-md-6 order-2 order-md-1 align-self-center"
>
<h5 class="project-header mb-4">
Emergency Room Admission Dashboard
</h5>
<p class="project-content mb-4">
Designed to help healthcare professionals understand and
analyze emergency room admission trends in order to be ready
to save more lives!
</p>
<button
class="btn read-more mb-4"
data-bs-toggle="modal"
data-bs-toggle="modal"
data-bs-target="#er-admmission-modal"
Launch
demo
modal
>
<span class="hvr-underline-from-left pb-1 pt-3"
>Read More</span
>
</button>
</div>
<div
class="col-12 col-md-6 order-1 order-md-2 image align-self-center"
>
<img
src="pics/projects/ER admission/Home copy.jpg"
class="card-img"
alt="..."
/>
<div class="d-flex justify-content-end my-3">
<div
data-bs-toggle="modal"
data-bs-toggle="modal"
data-bs-target="#er-admmission-modal"
Launch
demo
modal
>
<button class="Btn">
<div class="text py-1">View</div>
<div class="sign">
<i class="fa-solid fa-arrow-right"></i>
</div>
</button>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div
class="modal fade"
id="er-admmission-modal"
tabindex="-1"
aria-labelledby="er-admmission-modal-label"
aria-hidden="true"
>
<div class="modal-dialog modal-xl modal-dialog-scrollable">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">
Emergency Room Admission Dashboard
</h5>
<button
type="button"
class="btn-close"
data-bs-dismiss="modal"
aria-label="Close"
></button>
</div>
<div class="modal-body">
<p>
The Emergency Room Admission Dashboard . Which is
designed to help healthcare professionals understand and
analyze emergency room admission trends in order to be
ready to save more lives! <br />
The dashboard is divided into two main pages as always,
</p>
<p>
<b>📍 Overview Section:</b> <br />
<b>- Summary:</b> Provides an overview of the total
number of ER admissions, and patients' average wait
time. <br />
<b>- Time Series:</b> A time series graph that shows the
trend of emergency room admissions over time. <br />
<b>- Demographics:</b> Displays charts that show the
number of admissions by age group and gender. <br />
<b>- Referral:</b> The bar chart presented in this
section illustrates the count of patients referred by
various departments.
</p>
<img
class="img-fluid"
src="pics/projects/ER admission/Home copy.jpg"
alt=""
/>
<p class="py-3">
<b>📍 Patient Details Section:</b> <br />
- Visual representation of patient data in the emergency
room, including patient ID, visit date, demographics,
referral department, wait time and status (admitted or
not).
</p>
<img
class="img-fluid"
src="pics/projects/ER admission/Patients Details.png"
alt=""
/>
</div>
</div>
</div>
</div>
</div>
<!-- hotel booking project -->
<div class="project travel selected-works">
<div
class="row pt-4 px-4 animate__animated animate__fadeIn animate__delay-.5"
>
<div
class="col-12 col-md-6 order-2 order-md-1 align-self-center"
>
<h5 class="project-header mb-4">
Hotel Booking Analysis Report
</h5>
<p class="project-content mb-4">
The dashboard is designed to help hotel managers and
administrators understand and analyze booking trends and
patterns.
</p>
<button
class="btn read-more mb-4"
data-bs-toggle="modal"
data-bs-toggle="modal"
data-bs-target="#hotel-booking-modal"
Launch
demo
modal
>
<span class="hvr-underline-from-left pb-1 pt-3"
>Read More</span
>
</button>
</div>
<div
class="col-12 col-md-6 order-1 order-md-2 image align-self-center"
>
<img
src="pics/projects/hotel booking/Hotel Reservation Analysis(Home).jpg"
class="card-img"
alt="..."
/>
<div class="d-flex justify-content-end my-3">
<div
data-bs-toggle="modal"
data-bs-toggle="modal"
data-bs-target="#hotel-booking-modal"
Launch
demo
modal
>
<button class="Btn">
<div class="text py-1">View</div>
<div
class="sign"
style="
background: linear-gradient(
to right,
white 74%,
#dee2e8
);
"
>
<i class="fa-solid fa-arrow-right"></i>
</div>
</button>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div
class="modal fade"
id="hotel-booking-modal"
tabindex="-1"
aria-labelledby="hotel-booking-modal-label"
aria-hidden="true"
>
<div class="modal-dialog modal-xl modal-dialog-scrollable">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">
Hotel Booking Analysis Report
</h5>
<button
type="button"
class="btn-close"
data-bs-dismiss="modal"
aria-label="Close"
></button>
</div>
<div class="modal-body">
<p>
-The Hotel Booking Analysis report is a visual
representation of hotel booking data. - On Top there’s a
quick overview of the total number of Bookings, Total
Revenue generated, Reservation Status, Number of Guests
and their average stay Period.
</p>
<p>
-Then the Booking Channels section provides information
on the number of bookings by booking channel, which can
help hotel managers determine the effectiveness of their
marketing strategies and adjust their focus accordingly.
</p>
<p>
-The Guest Preferences section provides information on
the percentage of bookings by room type, such as single,
double, Queen, Suite, etc. This information can help
hotel managers identify their target audience and tailor
their marketing efforts accordingly.
</p>
<p>
I prefer this project to be called a report more than
interactive dashboard but you can filter the data to
choose the month you need or If you want to compare
properties using the two drop down lists on Top of the
Dashboard “The Default Numbers shown represents all
Properties and all months.”
</p>
<img
class="img-fluid"
src="pics/projects/hotel booking/Hotel Reservation Analysis(Home).jpg"
alt=""
/>
<p class="my-3">
The hotel transactional page is designed for managing
and your reservations effectively. It allows you to have
a detailed view of the reservations, and make informed
decisions to optimize the hotel's operations. And It
contains:
</p>
<p>
1.
<span class="fw-bold">Total Guests:</span> It includes
both adults and children to give you an idea of the
occupancy level for each booking. <br />
2. <span class="fw-bold">Booking Channel:</span> This
column specifies the channel through which the
reservation was made. <b></b> 3.
<span class="fw-bold">Room Type:</span> This column
provides information about the type of room booked for
each reservation. It may include options such as
standard rooms, deluxe rooms, suites. <br />
4. <span class="fw-bold">Cost:</span> The cost column
indicates the price associated with each reservation. It
includes the total amount the guest is expected to pay
for their stay, including any additional charges or
fees. <br />
5. <span class="fw-bold">Status:</span> This column
displays the current status of the reservation. It helps
you track whether a reservation has been completed,
marked as a no-show, extended, or reduced. This
information allows you to manage inventory and make
informed decisions regarding room availability.
</p>
<p>
Please note that this report aims to provide an overview
of the reservation details. For more detailed
information or specific analytics, further analysis can
be conducted based on the data collected in the
dashboard.
</p>
<img
class="img-fluid"
src="pics/projects/hotel booking/Hotel Reservation Analysis(Details).png"
alt=""
/>
</div>
</div>
</div>
</div>
</div>
<!-- survey project -->
<div class="project other">
<div
class="row pt-4 px-4 animate__animated animate__fadeIn animate__delay-.5"
>
<div
class="col-12 col-md-6 order-2 order-md-1 align-self-center"
>
<h5 class="project-header mb-4">
Product Survey Responses Analysis
</h5>
<p class="project-content mb-4">
Multiple versions of Analysis of product survey with
recommendations.
<br />
1) Diverging version. <br />
2) Stacked bar version. <br />
3) Multiple bar version.
</p>
<button
class="btn read-more mb-4"
data-bs-toggle="modal"
data-bs-toggle="modal"
data-bs-target="#survey-modal"
Launch
demo
modal
>
<span class="hvr-underline-from-left pb-1 pt-3"
>Read More</span
>
</button>
</div>
<div
class="col-12 col-md-6 order-1 order-md-2 image align-self-center"
>
<img
src="pics/projects/survey/Diverging version(Home) coursel.jpg"
class="card-img"
alt="..."
/>
<div class="d-flex justify-content-end my-3">
<div
data-bs-toggle="modal"
data-bs-toggle="modal"
data-bs-target="#survey-modal"
Launch
demo
modal
>
<button class="Btn">
<div class="text py-1">View</div>
<div class="sign">
<i class="fa-solid fa-arrow-right"></i>
</div>
</button>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div
class="modal fade"
id="survey-modal"
tabindex="-1"
aria-labelledby="survey-modal-label"
aria-hidden="true"
>
<div class="modal-dialog modal-xl modal-dialog-scrollable">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">
Product Survey Responses Analysis
</h5>
<button
type="button"
class="btn-close"
data-bs-dismiss="modal"
aria-label="Close"
></button>
</div>
<div class="modal-body">
<p>
In this Project I dealt with unstructured data, positive
& negative sentiment and “floating” bar charts. It’s got
a little bit of everything. You can go through images to
see the three versions:
<br />
1) Diverging version. <br />
2) Stacked bar version. <br />
3) Multiple bar version. <br />
Don't forget to tell me which version is more
aesthetics.
</p>
<!-- survey carousel-->
<div
id="carouselSurveyControls"
class="carousel carousel-dark slide my-5"
data-bs-ride="carousel"
>
<div class="carousel-inner">
<div class="carousel-item active">
<img
src="pics/projects/survey/Diverging version(Home) coursel.jpg"
class="d-block w-100"
alt="..."
/>
</div>
<div class="carousel-item">
<img
src="pics/projects/survey/Multiple Bars Version.jpg"