-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
875 lines (792 loc) · 30.2 KB
/
index.html
File metadata and controls
875 lines (792 loc) · 30.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Dev Anand Jayakumar | Portfolio</title>
<style>
:root {
--bg: #0d1726;
--bg-2: #162235;
--card: rgba(7, 15, 28, 0.9);
--text: #f3f6fb;
--muted: #b8c2d1;
--accent: #6e78ff;
--accent-2: #60a5fa;
--border: rgba(97, 119, 162, 0.22);
--nav: rgba(9, 19, 36, 0.94);
--shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}
* {
box-sizing: border-box;
scroll-behavior: smooth;
}
body {
margin: 0;
font-family: Arial, sans-serif;
background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
color: var(--text);
line-height: 1.65;
}
a {
color: inherit;
text-decoration: none;
}
.container {
width: min(1180px, 92%);
margin: 0 auto;
}
.navbar {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
background: var(--nav);
backdrop-filter: blur(8px);
border-bottom: 1px solid var(--border);
}
.nav-inner {
min-height: 82px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
position: relative;
}
.brand {
font-size: 1.1rem;
font-weight: 700;
white-space: nowrap;
}
.menu-toggle {
display: none;
align-items: center;
justify-content: center;
width: 44px;
height: 44px;
border-radius: 10px;
border: 1px solid rgba(117, 135, 176, 0.24);
background: rgba(255,255,255,0.03);
color: #eef2fa;
font-size: 1.35rem;
cursor: pointer;
}
.desktop-nav,
.desktop-icons {
display: flex;
}
.nav-links {
display: flex;
align-items: center;
gap: 18px;
flex-wrap: wrap;
justify-content: center;
}
.nav-links a,
.mobile-menu a {
color: #d7deea;
font-size: 0.96rem;
transition: color 0.2s ease;
}
.nav-links a:hover,
.icon-link:hover,
.mobile-menu a:hover {
color: var(--accent);
}
.nav-icons {
display: flex;
align-items: center;
gap: 14px;
white-space: nowrap;
}
.icon-link {
font-size: 1.15rem;
color: #e6ecf8;
transition: color 0.2s ease;
}
.mobile-menu {
display: none;
}
.panel {
min-height: 100vh;
display: flex;
align-items: center;
padding: 120px 0 60px;
border-bottom: 1px solid rgba(255,255,255,0.03);
}
.hero-panel {
position: relative;
overflow: hidden;
text-align: center;
background:
linear-gradient(rgba(3, 7, 18, 0.74), rgba(3, 7, 18, 0.84)),
radial-gradient(circle at 15% 40%, rgba(255, 140, 0, 0.18), transparent 25%),
radial-gradient(circle at 78% 35%, rgba(110, 120, 255, 0.18), transparent 28%),
linear-gradient(120deg, #0b0f1b 0%, #09111f 38%, #11192a 100%);
}
.hero-panel::before,
.hero-panel::after {
content: "";
position: absolute;
width: 42vw;
height: 42vw;
max-width: 620px;
max-height: 620px;
filter: blur(22px);
opacity: 0.28;
pointer-events: none;
z-index: 0;
}
.hero-panel::before {
left: -8%;
top: 18%;
background: radial-gradient(circle, rgba(255, 128, 0, 0.38) 0%, rgba(255, 128, 0, 0.04) 58%, transparent 70%);
}
.hero-panel::after {
right: -8%;
top: 14%;
background: radial-gradient(circle, rgba(71, 85, 255, 0.34) 0%, rgba(71, 85, 255, 0.04) 58%, transparent 70%);
}
.animated-wave {
position: absolute;
inset: auto 0 0 0;
height: 180px;
background: linear-gradient(180deg, rgba(96,165,250,0) 0%, rgba(96,165,250,0.06) 40%, rgba(110,120,255,0.12) 100%);
filter: blur(10px);
z-index: 1;
animation: waveMove 10s ease-in-out infinite alternate;
}
.floating-particle {
position: absolute;
width: 10px;
height: 10px;
border-radius: 50%;
background: radial-gradient(circle, rgba(255,255,255,0.95) 0%, rgba(110,120,255,0.85) 45%, rgba(110,120,255,0) 75%);
box-shadow: 0 0 14px rgba(110, 120, 255, 0.7);
opacity: 0.75;
animation: floatParticle linear infinite;
pointer-events: none;
z-index: 1;
}
@keyframes floatParticle {
0% { transform: translate3d(0, 0, 0) scale(0.9); opacity: 0; }
15% { opacity: 0.8; }
50% { transform: translate3d(30px, -80px, 0) scale(1.1); opacity: 0.9; }
100% { transform: translate3d(-20px, -180px, 0) scale(0.8); opacity: 0; }
}
@keyframes waveMove {
0% { transform: translateX(-2%) translateY(0px); }
100% { transform: translateX(2%) translateY(-14px); }
}
.hero-content {
position: relative;
z-index: 2;
max-width: 900px;
margin: 0 auto;
}
.profile-image {
width: 185px;
height: 185px;
border-radius: 50%;
object-fit: cover;
display: block;
margin: 0 auto 28px;
border: 4px solid rgba(110, 120, 255, 0.6);
box-shadow: 0 0 25px rgba(110, 120, 255, 0.4);
transition: 0.3s ease;
}
.profile-image:hover {
transform: scale(1.05);
}
.eyebrow {
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 700;
color: #d5dbeb;
font-size: 0.92rem;
margin-bottom: 8px;
}
.hero-name {
font-size: clamp(3rem, 7vw, 5.2rem);
line-height: 1.05;
margin: 0;
font-weight: 800;
letter-spacing: -1px;
}
.hero-name .accent,
.section-title .accent,
.highlight-title {
color: var(--accent);
}
.hero-role {
margin: 18px 0;
font-size: clamp(1.3rem, 2.6vw, 1.9rem);
color: #d4ddef;
font-weight: 500;
}
.hero-summary {
max-width: 860px;
margin: 0 auto;
color: var(--muted);
font-size: 1.02rem;
}
.hero-contact-row {
margin-top: 28px;
display: flex;
flex-wrap: wrap;
gap: 18px 28px;
justify-content: center;
color: #e9eef8;
font-size: 1rem;
}
.hero-contact-row span {
display: inline-flex;
align-items: center;
gap: 10px;
color: #dbe4f2;
}
.button-group {
display: flex;
gap: 12px;
flex-wrap: wrap;
margin-top: 20px;
}
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 11px 16px;
border-radius: 12px;
font-weight: 700;
border: 1px solid rgba(117, 135, 176, 0.24);
transition: 0.2s ease;
}
.btn:hover {
transform: translateY(-2px);
border-color: rgba(117, 135, 176, 0.5);
}
.btn-primary {
background: linear-gradient(135deg, var(--accent), #5ca6ff);
color: #08101d;
border: none;
}
.btn-secondary {
background: rgba(255,255,255,0.02);
color: #eef2fa;
}
.section-wrap {
width: 100%;
}
.section-title {
text-align: center;
font-size: clamp(2.3rem, 5vw, 3.9rem);
line-height: 1.1;
margin: 0 0 36px;
font-weight: 800;
letter-spacing: -0.8px;
}
.card {
background: linear-gradient(90deg, rgba(7, 15, 28, 0.96), rgba(6, 17, 35, 0.94));
border: 1px solid var(--border);
border-radius: 22px;
padding: 30px 32px;
box-shadow: var(--shadow);
}
.section-card {
max-width: 1040px;
margin: 0 auto;
}
.section-card h3,
.skill-card h3,
.project-card h3,
.experience-card h3,
.case-card h3,
.edu-card h3,
.contact-card h3 {
margin: 0 0 12px;
color: #f6f8fc;
font-size: 1.2rem;
}
.section-card p,
.card p,
.card li {
color: var(--muted);
font-size: 1rem;
}
.grid-2,
.grid-3 {
display: grid;
gap: 22px;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stack-list {
display: grid;
gap: 22px;
}
.experience-card {
padding: 24px 26px;
}
.experience-header {
display: grid;
grid-template-columns: 70px 1fr auto;
gap: 18px;
align-items: start;
margin-bottom: 18px;
}
.experience-icon {
width: 66px;
height: 66px;
border-radius: 16px;
background: linear-gradient(135deg, #57a7ff, #6e78ff);
color: #07101d;
font-size: 1.8rem;
font-weight: 800;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.experience-company {
color: var(--accent-2);
font-weight: 700;
margin-bottom: 2px;
}
.experience-meta-right {
text-align: right;
color: #c6d0e2;
font-size: 0.95rem;
display: grid;
gap: 8px;
white-space: nowrap;
}
.highlight-box {
margin-top: 18px;
padding: 18px 20px;
border-radius: 18px;
background: rgba(8, 18, 34, 0.88);
border: 1px solid rgba(97, 119, 162, 0.18);
}
.highlight-title {
font-size: 1rem;
font-weight: 800;
margin-bottom: 8px;
}
.tag-row {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin: 10px 0 16px;
}
.tag {
display: inline-block;
padding: 8px 13px;
border-radius: 999px;
background: rgba(53, 72, 108, 0.42);
color: #dce5f3;
border: 1px solid rgba(111, 132, 173, 0.24);
font-size: 0.9rem;
}
.project-section-number,
.case-label {
color: var(--accent-2);
font-size: 0.95rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 10px;
}
ul {
margin: 0;
padding-left: 18px;
}
li + li {
margin-top: 10px;
}
.contact-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 22px;
}
footer {
text-align: center;
padding: 28px 16px 36px;
color: #b4c0d3;
background: #0b1321;
}
@media (max-width: 980px) {
.nav-inner { padding: 16px 0; }
.desktop-nav, .desktop-icons { display: none; }
.menu-toggle { display: inline-flex; }
.mobile-menu {
display: none;
width: 100%;
margin-top: 14px;
padding: 14px;
border: 1px solid var(--border);
border-radius: 16px;
background: rgba(9, 19, 36, 0.98);
flex-direction: column;
gap: 12px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
padding: 8px 6px;
border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu a:last-child { border-bottom: none; }
.panel {
min-height: auto;
padding: 130px 0 70px;
}
.grid-2, .grid-3, .contact-grid { grid-template-columns: 1fr; }
.experience-header {
grid-template-columns: 64px 1fr;
}
.experience-meta-right {
grid-column: 1 / -1;
text-align: left;
white-space: normal;
margin-top: -4px;
}
}
@media (max-width: 640px) {
.brand { font-size: 1rem; }
.profile-image {
width: 135px;
height: 135px;
}
.hero-contact-row {
flex-direction: column;
gap: 12px;
}
.card { padding: 22px 18px; }
.experience-card { padding: 20px 18px; }
.experience-header {
grid-template-columns: 56px 1fr;
gap: 14px;
}
.experience-icon {
width: 56px;
height: 56px;
border-radius: 14px;
font-size: 1.5rem;
}
.nav-links { gap: 12px; }
}
</style>
</head>
<body>
<nav class="navbar">
<div class="container nav-inner">
<div class="brand">Dev Anand Jayakumar</div>
<div class="nav-links desktop-nav">
<a href="#about">About</a>
<a href="#skills">Technical Skills</a>
<a href="#experience">Experience</a>
<a href="#projects">Projects</a>
<a href="#case-studies">Case Studies</a>
<a href="#education">Education</a>
<a href="#contact">Contact</a>
</div>
<div class="nav-icons desktop-icons">
<a class="icon-link" href="mailto:devanand765@gmail.com" aria-label="Email">✉</a>
<a class="icon-link" href="tel:+353899590574" aria-label="Phone">☎</a>
<a class="icon-link" href="https://www.linkedin.com/in/dev-anand28" target="_blank" aria-label="LinkedIn">in</a>
</div>
<button class="menu-toggle" id="menuToggle" aria-label="Open menu" aria-expanded="false">☰</button>
</div>
<div class="container">
<div class="mobile-menu" id="mobileMenu">
<a href="#about">About</a>
<a href="#skills">Technical Skills</a>
<a href="#experience">Experience</a>
<a href="#projects">Projects</a>
<a href="#case-studies">Case Studies</a>
<a href="#education">Education</a>
<a href="#contact">Contact</a>
<a href="mailto:devanand765@gmail.com">Email</a>
<a href="tel:+353899590574">Phone</a>
<a href="https://www.linkedin.com/in/dev-anand28" target="_blank">LinkedIn</a>
</div>
</div>
</nav>
<section class="panel hero-panel" id="home">
<div class="animated-wave"></div>
<div class="container hero-content">
<img src="profile_picture.jpg" alt="Dev Anand Jayakumar" class="profile-image" />
<p class="eyebrow">Data Analytics Portfolio</p>
<h1 class="hero-name">Dev Anand<br><span class="accent">Jayakumar</span></h1>
<div class="hero-role">Data Analyst - Campaign & Financial Analyst</div>
<p class="hero-summary">
Certified Data Analyst professional specialized in campaign and product analytics for the loyalty industry, supporting large customer bases with end-to-end campaign management, reporting, automation, and business-focused analytical solutions.
</p>
<div class="hero-contact-row">
<span>✉ devanand765@gmail.com</span>
<span>☎ +353 899590574</span>
<span>📍 Dublin, Ireland</span>
</div>
<div class="button-group" style="justify-content:center; margin-top:26px;">
<a class="btn btn-primary" href="https://www.linkedin.com/in/dev-anand28" target="_blank">LinkedIn</a>
<a class="btn btn-secondary" href="https://github.com/deva55" target="_blank">GitHub</a>
</div>
</div>
</section>
<section class="panel" id="about">
<div class="container section-wrap">
<h2 class="section-title">About <span class="accent">Me</span></h2>
<div class="card section-card">
<h3>About Me</h3>
<p>Based in Dublin, Ireland, I am a data analyst with over four years of experience working across campaign analytics, financial reporting, dashboard development, and process automation.</p>
<p>My background combines SQL, Excel, Power BI, Tableau, Python, Snowflake, Azure, and Power Automate to analyse large datasets, optimise reporting processes, and translate data into clear insights for business stakeholders.</p>
<p>At Tata Consultancy Services and Mu Sigma, I supported campaign performance analysis, A/B testing, KPI reporting, financial analysis, and dashboard automation. My work included reducing reporting effort, improving query performance, automating recurring tasks, and presenting decision-ready insights.</p>
<p>I recently completed my M.Sc. in Computing, Data Analytics at Dublin City University, and I am currently seeking opportunities in Ireland as a Data Analyst, Campaign Analyst, Financial Analyst, or Reporting Analyst.</p>
</div>
</div>
</section>
<section class="panel" id="skills">
<div class="container section-wrap">
<h2 class="section-title">Technical <span class="accent">Skills</span></h2>
<div class="grid-3">
<div class="card skill-card">
<h3>Analytics & Reporting</h3>
<p>SQL, Excel, KPI tracking, campaign analysis, product analysis, financial analysis, trend analysis, and business reporting.</p>
</div>
<div class="card skill-card">
<h3>Visualisation & Storytelling</h3>
<p>Power BI, Tableau, dashboard design, performance reporting, executive summaries, and insight communication.</p>
</div>
<div class="card skill-card">
<h3>Automation & Platforms</h3>
<p>Python, Snowflake, Power Automate, Power Query, Azure, SQL procedures, scheduled workflows, and process improvement.</p>
</div>
</div>
<div class="card section-card" style="margin-top:22px;">
<h3>Tools & Technologies</h3>
<div class="tag-row">
<span class="tag">SQL</span>
<span class="tag">Excel</span>
<span class="tag">Power BI</span>
<span class="tag">Tableau</span>
<span class="tag">Python</span>
<span class="tag">Snowflake</span>
<span class="tag">Azure</span>
<span class="tag">Power Automate</span>
<span class="tag">Power Query</span>
<span class="tag">A/B Testing</span>
<span class="tag">Campaign Analysis</span>
<span class="tag">Financial Reporting</span>
</div>
</div>
</div>
</section>
<section class="panel" id="experience">
<div class="container section-wrap">
<h2 class="section-title">Work <span class="accent">Experience</span></h2>
<div class="stack-list">
<div class="card experience-card">
<div class="experience-header">
<div class="experience-icon">C</div>
<div>
<h3>Operations Specialist</h3>
<div class="experience-company">Covalen (CPL)</div>
</div>
<div class="experience-meta-right">
<div>Oct 2025 - Present</div>
<div>Limerick, Ireland</div>
</div>
</div>
<ul>
<li>Contributed to a 10-12% reduction in repeated contacts by analysing recurring customer queries and promoting self-service solutions.</li>
<li>Analysed operational data and call trends using advanced Excel features to support data-driven decision-making.</li>
<li>Developed structured validation checklists to achieve near 100% verification accuracy and strengthen GDPR compliance controls.</li>
<li>Monitored KPIs such as AHT, AWT, and service levels to improve operational visibility and identify workflow inefficiencies.</li>
</ul>
</div>
<div class="card experience-card">
<div class="experience-header">
<div class="experience-icon">M</div>
<div>
<h3>Senior Data Analyst</h3>
<div class="experience-company">Mu Sigma</div>
</div>
<div class="experience-meta-right">
<div>Aug 2022 - Sept 2023</div>
<div>Bengaluru, India</div>
</div>
</div>
<ul>
<li>Reduced query runtime by 30% by developing and optimising SQL queries in Snowflake using clustering keys, materialized views, and partitioning strategies.</li>
<li>Created Power BI dashboards to visualise KPIs and present insights to senior stakeholders for data-driven decision-making.</li>
<li>Utilised Snowflake to perform complex SQL queries and aggregate data from multiple sources to support real-time analytics and reporting.</li>
<li>Improved reporting efficiency by 25% through business valuation, financial analysis, and Power Query-based transformation.</li>
</ul>
<div class="highlight-box">
<div class="highlight-title">Key Achievement</div>
<p>Improved analytical performance and reporting efficiency by combining faster SQL processing with clearer business dashboards for stakeholder decision-making.</p>
</div>
</div>
<div class="card experience-card">
<div class="experience-header">
<div class="experience-icon">T</div>
<div>
<h3>Data Analyst</h3>
<div class="experience-company">Tata Consultancy Services</div>
</div>
<div class="experience-meta-right">
<div>May 2019 - July 2022</div>
<div>Chennai, India</div>
</div>
</div>
<ul>
<li>Developed Power BI dashboards for campaign metrics, contributing to a 75% reduction in manhours for major retail offers.</li>
<li>Enhanced Excel reports for KPI calculations such as sales uplift, sales-to-cost ratio, and ROI, reducing manual calculation effort.</li>
<li>Conducted A/B testing to optimise targeting conditions, contributing to a 10% increase in customer engagement.</li>
<li>Automated repetitive tasks using Power Automate and SQL scheduled tasks, improving operational efficiency by 25% and reducing manual effort by 15%.</li>
</ul>
<div class="highlight-box">
<div class="highlight-title">Key Achievement</div>
<p>Delivered measurable campaign reporting improvements by reducing manual effort, increasing customer engagement, and automating repeat analytical workflows.</p>
</div>
</div>
</div>
</div>
</section>
<section class="panel" id="projects">
<div class="container section-wrap">
<h2 class="section-title">Featured <span class="accent">Projects</span></h2>
<div class="stack-list">
<div class="card project-card">
<div class="project-section-number">Project 1</div>
<h3>Campaign Automation Using SQL</h3>
<div class="tag-row">
<span class="tag">SQL</span>
<span class="tag">Stored Procedures</span>
<span class="tag">Task Scheduling</span>
<span class="tag">Automation</span>
</div>
<p><strong>Why this project started:</strong> Recurring campaign targeting and reminder activities involved repeated manual effort, higher turnaround time, and avoidable dependency on repetitive operational steps.</p>
<p><strong>What was achieved:</strong> Built an automated process using stored procedures and scheduled tasks to streamline recurring campaign operations, reduce manual effort by 15%, and improve consistency in execution.</p>
</div>
<div class="card project-card">
<div class="project-section-number">Project 2</div>
<h3>Power BI KPI Dashboard</h3>
<div class="tag-row">
<span class="tag">Power BI</span>
<span class="tag">Excel</span>
<span class="tag">Dashboarding</span>
<span class="tag">Reporting</span>
</div>
<p><strong>Why this project started:</strong> Stakeholders needed faster visibility into campaign, sales, and operational KPIs without waiting for manually prepared reports.</p>
<p><strong>What was achieved:</strong> Created an interactive KPI dashboard that improved visibility, reduced reporting delays, and supported faster data-driven decision-making.</p>
</div>
<div class="card project-card">
<div class="project-section-number">Project 3</div>
<h3>A/B Testing Analysis for Campaign Optimisation</h3>
<div class="tag-row">
<span class="tag">Python</span>
<span class="tag">Excel</span>
<span class="tag">A/B Testing</span>
<span class="tag">Campaign Analysis</span>
</div>
<p><strong>Why this project started:</strong> Campaign teams needed a more evidence-based way to identify which targeting and communication strategies were performing better.</p>
<p><strong>What was achieved:</strong> Evaluated campaign variants, measured uplift, and supported improved targeting decisions that contributed to a 10% increase in customer engagement.</p>
</div>
<div class="card project-card">
<div class="project-section-number">Project 4</div>
<h3>Financial & Reporting Analysis Improvement</h3>
<div class="tag-row">
<span class="tag">Excel</span>
<span class="tag">Power Query</span>
<span class="tag">Financial Analysis</span>
<span class="tag">Reporting</span>
</div>
<p><strong>Why this project started:</strong> Financial reporting and business valuation work required a more structured and efficient process to reduce turnaround time and improve reliability.</p>
<p><strong>What was achieved:</strong> Improved reporting efficiency by 25% by streamlining data transformation, reducing manual work, and producing more structured outputs for business reviews.</p>
</div>
</div>
</div>
</section>
<section class="panel" id="case-studies">
<div class="container section-wrap">
<h2 class="section-title">Case <span class="accent">Studies</span></h2>
<div class="stack-list">
<div class="card case-card">
<div class="case-label">Case Study 1</div>
<h3>Tenant and Landlord Rating Platform for Fairer Housing Access</h3>
<p><strong>Problem:</strong> In Ireland, rental listings can create difficulties for both genuine tenants and responsible landlords. Tenants often face high rents, delayed repairs, weak property maintenance, and situations where landlords may not be registered with the RTB. At the same time, landlords and agents also need a better way to identify suitable tenants based on fit, reliability, and mutual expectations.</p>
<p><strong>Idea:</strong> Build a rating and matching platform connected to rental-style listing workflows, where property posts are shown only to applicants who match the landlord’s criteria and where tenant and landlord ratings improve transparency on both sides.</p>
<p><strong>Goal:</strong> Create a fairer and more data-driven rental ecosystem that reduces exploitation, improves trust, and helps both tenants and landlords make better decisions before entering an agreement.</p>
<p><strong>Status:</strong> Initial case study idea. Approach, tools, data model, and implementation plan will be added later.</p>
</div>
</div>
</div>
</section>
<section class="panel" id="education">
<div class="container section-wrap">
<h2 class="section-title">Education <span class="accent">Background</span></h2>
<div class="card edu-card section-card">
<h3>M.Sc. in Computing, Data Analytics</h3>
<p>Dublin City University | Dublin, Ireland | Graduated Nov 2024</p>
<p>Completed postgraduate study focused on data analytics, structured data processing, analytics-driven problem solving, and practical application of modern analytical techniques.</p>
</div>
</div>
</section>
<section class="panel" id="contact">
<div class="container section-wrap">
<h2 class="section-title">Get In <span class="accent">Touch</span></h2>
<div class="contact-grid">
<div class="card contact-card">
<h3>Contact Details</h3>
<p><strong>Email:</strong> <a href="mailto:devanand765@gmail.com">devanand765@gmail.com</a></p>
<p><strong>Phone:</strong> <a href="tel:+353899590574">+353 899590574</a></p>
<p><strong>Location:</strong> Dublin, Ireland</p>
</div>
<div class="card contact-card">
<h3>Profiles</h3>
<p><strong>LinkedIn:</strong> <a href="https://www.linkedin.com/in/dev-anand28" target="_blank">linkedin.com/in/dev-anand28</a></p>
<p><strong>GitHub:</strong> <a href="https://github.com/deva55" target="_blank">github.com/deva55</a></p>
<div class="button-group">
<a class="btn btn-primary" href="https://www.linkedin.com/in/dev-anand28" target="_blank">Open LinkedIn</a>
<a class="btn btn-secondary" href="https://github.com/deva55" target="_blank">Open GitHub</a>
</div>
</div>
</div>
</div>
</section>
<footer>
© 2026 Dev Anand Jayakumar | Data Analyst Portfolio
</footer>
<script>
const hero = document.querySelector('.hero-panel');
const particleCount = 28;
for (let i = 0; i < particleCount; i++) {
const particle = document.createElement('span');
particle.className = 'floating-particle';
particle.style.left = Math.random() * 100 + '%';
particle.style.top = Math.random() * 100 + '%';
particle.style.animationDelay = (Math.random() * 8) + 's';
particle.style.animationDuration = (8 + Math.random() * 10) + 's';
particle.style.transform = `scale(${0.6 + Math.random() * 1.4})`;
hero.appendChild(particle);
}
const menuToggle = document.getElementById('menuToggle');
const mobileMenu = document.getElementById('mobileMenu');
const mobileMenuLinks = mobileMenu.querySelectorAll('a');
menuToggle.addEventListener('click', () => {
mobileMenu.classList.toggle('open');
const isExpanded = mobileMenu.classList.contains('open');
menuToggle.setAttribute('aria-expanded', isExpanded ? 'true' : 'false');
menuToggle.textContent = isExpanded ? '✕' : '☰';
});
mobileMenuLinks.forEach(link => {
link.addEventListener('click', () => {
mobileMenu.classList.remove('open');
menuToggle.setAttribute('aria-expanded', 'false');
menuToggle.textContent = '☰';
});
});
</script>
</body>
</html>