-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
460 lines (430 loc) · 19.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="description" content="" />
<meta name="author" content="" />
<link
href="https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900"
rel="stylesheet"
/>
<title>Patrick Portfolio</title>
<!--
Reflux Template
https://templatemo.com/tm-531-reflux
-->
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<!-- Additional CSS Files -->
<link rel="stylesheet" href="assets/css/fontawesome.css" />
<link rel="stylesheet" href="assets/css/templatemo-style.css" />
<link rel="stylesheet" href="assets/css/owl.css" />
<link rel="stylesheet" href="assets/css/lightbox.css" />
</head>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Blue Theme Menu</title>
<style>
/* Background color of the menu */
.responsive-nav #menu {
background-color: #219ebc; /* Blue color */
}
/* Text color of links */
.responsive-nav .main-menu a {
color: #ffffff; /* White text for contrast */
}
.responsive-nav .main-menu a:hover {
color: #8ecae6; /* Lighter blue on hover */
}
/* Color of icons */
.responsive-nav .soial-icons a i {
color: #219ebc; /* Blue for icons */
}
.responsive-nav .soial-icons a i:hover {
color: #023047; /* Darker blue for hover */
}
/* Author content text color */
.responsive-nav .author-content h4,
.responsive-nav .author-content span {
color: #ffffff; /* White text */
}
/* Background of close button */
#menu-close {
color: #ffffff; /* White icon */
background-color: #023047; /* Darker blue */
}
</style>
</head>
</html>
<body>
<div id="page-wraper">
<!-- Sidebar Menu -->
<div class="responsive-nav">
<i class="fa fa-bars" id="menu-toggle"></i>
<div id="menu" class="menu">
<i class="fa fa-times" id="menu-close"></i>
<div class="container">
<div class="image">
<a href="#"><img src="assets/images/author-image.jpg" alt="" /></a>
</div>
<div class="author-content">
<h4>Patrick Gichuki</h4>
<span>Data Analyst</span>
</div>
<nav class="main-nav" role="navigation">
<ul class="main-menu">
<li><a href="#section1">About</a></li>
<li><a href="#section2">Skills</a></li>
<li><a href="#section3">My Work</a></li>
<li><a href="#section4">Contact Me</a></li>
</ul>
</nav>
<div class="social-network">
<ul class="soial-icons">
<li>
<a href="https://fb.com/templatemo"
><i class="fa fa-facebook"></i
></a>
</li>
<li>
<a href="#"><i class="fa fa-twitter"></i></a>
</li>
<li>
<a href="#"><i class="fa fa-linkedin"></i></a>
</li>
<li>
<a href="#"><i class="fa fa-dribbble"></i></a>
</li>
<li>
<a href="#"><i class="fa fa-rss"></i></a>
</li>
</ul>
</div>
<div class="copyright-text">
<p>Copyright 2025</p>
</div>
</div>
</div>
</div>
<section class="section about-me" data-section="section1">
<div class="container">
<div class="section-heading">
<h2>About Patrick</h2>
<div class="line-dec"></div>
<span
></span
>
</div>
<div class="left-image-post">
<div class="row">
<div class="col-md-6">
<div class="left-image">
<img src="assets/images/data_analyst.jpg" alt="" />
</div>
</div>
<div class="col-md-6">
<div class="right-text">
<h4>As a Data Analyst</h4>
<p>
As a data analyst, I will transform raw data into actionable insights that drive growth and efficiency. Using analytics and visualizations, I will uncover opportunities, optimize performance, and deliver tailored solutions that align with the organization goals.
</p>
<div class="white-button">
<a href="#">Read More</a>
</div>
</div>
</div>
</div>
</div>
<div class="right-image-post">
<div class="row">
<div class="col-md-6">
<div class="left-text">
<h4>What I Can Do for You</h4>
<p>
I will help in transforming data into clear insights. From creating dashboards and reports to optimizing processes, ensuring your data drives smart decisions and delivers results.
</p>
<div class="white-button">
<a href="#">Read More</a>
</div>
</div>
</div>
<div class="col-md-6">
<div class="right-image">
<img src="assets/images/what_i_do.jpg" alt="" />
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section my-services" data-section="section2">
<div class="container">
<div class="section-heading">
<h2>Skills</h2>
<div class="line-dec"></div>
<span>I leverage data analysis and visualization tools, combined with strong communication skills, to transform complex data into clear, actionable insights that drive business success.</span>
</div>
<div class="service-post">
<div class="row" style="display: flex; align-items: stretch;">
<!-- Left Column -->
<div class="col-md-6" style="display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid #ddd; padding-right: 20px;">
<!-- First Service Item -->
<div class="service-item" style="text-align: center; padding: 20px; border: none; background-color: transparent; box-shadow: none;">
<h4>Data Analysis & Reporting</h4>
<div class="service-image">
<img src="assets/images/reporting.jpg" alt="Data Analysis & Reporting" style="width: auto; max-width: 100%; height: auto; display: block; margin: 10px auto;" />
</div>
<p>
Expert in Python (Pandas, Matplotlib, Seaborn), SQL, and Excel, delivering in-depth analysis and generating actionable business insights.
</p>
<a href="#" style="text-decoration: none; color: #219ebc; font-weight: bold;">View Analysis</a>
</div>
<hr style="border: none; height: 2px; background-color: #ddd; width: 70%; margin: 15px auto;" />
<!-- Second Service Item -->
<div class="service-item" style="text-align: center; padding: 20px; border: none; background-color: transparent; box-shadow: none;">
<h4>Data Cleaning & Transformation</h4>
<div class="service-image">
<img src="assets/images/SQL.png" alt="Data Cleaning & Transformation" style="width: auto; max-width: 100%; height: auto; display: block; margin: 10px auto;" />
</div>
<p>
Skilled at cleaning and transforming large, messy datasets into structured, high-quality data ready for analysis and reporting.
</p>
<a href="#" style="text-decoration: none; color: #219ebc; font-weight: bold;">Learn More</a>
</div>
</div>
<!-- Right Column -->
<div class="col-md-6" style="display: flex; flex-direction: column; justify-content: space-between; padding-left: 20px;">
<!-- Third Service Item -->
<div class="service-item" style="text-align: center; padding: 20px; border: none; background-color: transparent; box-shadow: none;">
<h4>Data Visualization</h4>
<div class="service-image">
<img src="assets/images/second-main-icon.png" alt="Data Visualization" style="width: auto; max-width: 100%; height: auto; display: block; margin: 10px auto;" />
</div>
<p>
Proficient in Power BI, creating interactive dashboards and compelling visual stories that simplify complex data for decision-makers.
</p>
<a href="#" style="text-decoration: none; color: #219ebc; font-weight: bold;">Show Dashboard</a>
</div>
<hr style="border: none; height: 2px; background-color: #ddd; width: 70%; margin: 15px auto;" />
<!-- Fourth Service Item -->
<div class="service-item" style="text-align: center; padding: 20px; border: none; background-color: transparent; box-shadow: none;">
<h4>Communication & Business Insights</h4>
<div class="service-image">
<img src="assets/images/insight.jpg" alt="Communication & Business Insights" style="width: auto; max-width: 100%; height: auto; display: block; margin: 10px auto;" />
</div>
<p>
Strong communicator with the ability to translate data into clear, strategic insights that align with business goals and drive results.
</p>
<a href="#" style="text-decoration: none; color: #219ebc; font-weight: bold;">Explore Insights</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section my-work" data-section="section3">
<div class="container">
<div class="section-heading">
<h2>My Work</h2>
<div class="line-dec"></div>
<span>Take a look at some of my work. These projects highlight my ability to leverage data to create impactful results and drive business success.</span>
</div>
<div class="service-post">
<div class="row">
<!-- Left Column -->
<div class="col-md-6" style="position: relative; border-right: 1px solid #ddd; padding-right: 20px;">
<!-- First Work Item -->
<div class="service-item" style="text-align: center; padding: 20px; border: none; background-color: transparent; box-shadow: none;">
<h4>Insurance Coverage and Usage Analysis</h4>
<div class="service-image">
<img src="assets/images/Insurance_coverage_and_usage_dashboard.PNG" alt="Project 1" style="width: auto; max-width: 100%; height: auto; display: block; margin: 10px auto;" />
</div>
<p>
Description of the first project goes here. It can describe what the project achieved and how it solved the business problem.
</p>
<a href="Insurance_coverage_and usage_analysis.html" style="text-decoration: none; color: #219ebc; font-weight: bold;">View Project</a>
</div>
<hr style="border: none; height: 2px; background-color: #ddd; width: 70%; margin: 15px auto;" />
<!-- Second Work Item -->
<div class="service-item" style="text-align: center; padding: 20px; border: none; background-color: transparent; box-shadow: none;">
<h4>Health Insurance Coverage and Routine Check-up Analysis</h4>
<div class="service-image">
<img src="assets/images/Routine_checks_dashboard.PNG" alt="Project 2" style="width: auto; max-width: 100%; height: auto; display: block; margin: 10px auto;" />
</div>
<p>
Description of the second project goes here. Highlight the tools or methods used and the impact of the project.
</p>
<a href="Insurance_coverage_and_routine_checkup_analysis.html" style="text-decoration: none; color: #219ebc; font-weight: bold;">Learn More</a>
</div>
</div>
<!-- Right Column -->
<div class="col-md-6" style="padding-left: 20px;">
<!-- Third Work Item -->
<div class="service-item" style="text-align: center; padding: 20px; border: none; background-color: transparent; box-shadow: none;">
<h4>Project Title 3</h4>
<div class="service-image">
<img src="assets/images/project3.jpg" alt="Project 3" style="width: auto; max-width: 100%; height: auto; display: block; margin: 10px auto;" />
</div>
<p>
Placeholder for the third project description. This should include key takeaways or results delivered for the client or business.
</p>
<a href="project_4.html" style="text-decoration: none; color: #219ebc; font-weight: bold;">Show Results</a>
</div>
<hr style="border: none; height: 2px; background-color: #ddd; width: 70%; margin: 15px auto;" />
<!-- Fourth Work Item -->
<div class="service-item" style="text-align: center; padding: 20px; border: none; background-color: transparent; box-shadow: none;">
<h4>Project Title 4</h4>
<div class="service-image">
<img src="assets/images/project4.jpg" alt="Project 4" style="width: auto; max-width: 100%; height: auto; display: block; margin: 10px auto;" />
</div>
<p>
Placeholder text for the fourth project. Mention the significance of the project and the technology stack utilized.
</p>
<a href="project_4.html" style="text-decoration: none; color: #219ebc; font-weight: bold;">Explore Project</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section contact-me" data-section="section4">
<div class="container">
<div class="section-heading">
<h2>Contact Me</h2>
<div class="line-dec"></div>
<span
>Fusce eget nibh nec justo interdum condimentum. Morbi justo ex,
efficitur at ante ac, tincidunt maximus ligula. Lorem ipsum dolor
sit amet, consectetur adipiscing elit.</span
>
</div>
<div class="row">
<div class="right-content">
<div class="container">
<form id="contact" action="" method="post">
<div class="row">
<div class="col-md-6">
<fieldset>
<input
name="name"
type="text"
class="form-control"
id="name"
placeholder="Your name..."
required=""
/>
</fieldset>
</div>
<div class="col-md-6">
<fieldset>
<input
name="email"
type="text"
class="form-control"
id="email"
placeholder="Your email..."
required=""
/>
</fieldset>
</div>
<div class="col-md-12">
<fieldset>
<input
name="subject"
type="text"
class="form-control"
id="subject"
placeholder="Subject..."
required=""
/>
</fieldset>
</div>
<div class="col-md-12">
<fieldset>
<textarea
name="message"
rows="6"
class="form-control"
id="message"
placeholder="Your message..."
required=""
></textarea>
</fieldset>
</div>
<div class="col-md-12">
<fieldset>
<button type="submit" id="form-submit" class="button">
Send Message
</button>
</fieldset>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
</div>
<!-- Scripts -->
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/js/isotope.min.js"></script>
<script src="assets/js/owl-carousel.js"></script>
<script src="assets/js/lightbox.js"></script>
<script src="assets/js/custom.js"></script>
<script>
//according to loftblog tut
$(".main-menu li:first").addClass("active");
var showSection = function showSection(section, isAnimate) {
var direction = section.replace(/#/, ""),
reqSection = $(".section").filter(
'[data-section="' + direction + '"]'
),
reqSectionPos = reqSection.offset().top - 0;
if (isAnimate) {
$("body, html").animate(
{
scrollTop: reqSectionPos
},
800
);
} else {
$("body, html").scrollTop(reqSectionPos);
}
};
var checkSection = function checkSection() {
$(".section").each(function() {
var $this = $(this),
topEdge = $this.offset().top - 80,
bottomEdge = topEdge + $this.height(),
wScroll = $(window).scrollTop();
if (topEdge < wScroll && bottomEdge > wScroll) {
var currentId = $this.data("section"),
reqLink = $("a").filter("[href*=\\#" + currentId + "]");
reqLink
.closest("li")
.addClass("active")
.siblings()
.removeClass("active");
}
});
};
$(".main-menu").on("click", "a", function(e) {
e.preventDefault();
showSection($(this).attr("href"), true);
});
$(window).scroll(function() {
checkSection();
});
</script>
</body>
</html>