-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (98 loc) · 3.78 KB
/
Copy pathindex.html
File metadata and controls
102 lines (98 loc) · 3.78 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
---
layout: default
title: Home
---
<div class="hero-section">
<div class="hero-content">
<h1 class="hero-title">{{ site.title }}</h1>
<p class="hero-subtitle">{{ site.subtitle }}</p>
<div class="hero-stats">
<div class="stat">
<span class="stat-number">15+</span>
<span class="stat-label">Years Experience</span>
</div>
<div class="stat">
<span class="stat-number">Top 7%</span>
<span class="stat-label">Stack Overflow</span>
</div>
<div class="stat">
<span class="stat-number">Millions</span>
<span class="stat-label">Users Impacted</span>
</div>
</div>
<div class="hero-cta">
<a href="/about/" class="btn btn-primary">Learn More</a>
<a href="/contact/" class="btn btn-secondary">Get In Touch</a>
</div>
</div>
</div>
<section class="highlights">
<div class="container">
<h2>Professional Highlights</h2>
<div class="highlights-grid">
<div class="highlight-card">
<div class="highlight-icon">🎯</div>
<h3>Current Impact at Macquarie Group</h3>
<ul>
<li>Leading enterprise-scale digital transformation of customer entitlements/authorizations</li>
<li>Migrated millions of customer entitlements with zero downtime</li>
<li>Built and scaled GCP-based platform handling millions of requests daily</li>
<li>Built high-performing engineering team</li>
</ul>
</div>
<div class="highlight-card">
<div class="highlight-icon">🏆</div>
<h3>Career Achievements</h3>
<ul>
<li>Led multi-year migration projects without disruption in multiple organisations</li>
<li>Architected and built cloud platforms serving millions of users</li>
<li>Pioneer in microservices adoption</li>
<li>Delivered 8x performance improvements on page load times</li>
</ul>
</div>
</div>
</div>
</section>
<section class="featured-case-studies">
<div class="container">
<h2>Featured Case Studies</h2>
<div class="case-studies-grid">
<div class="case-study-preview">
<h3>Enterprise Banking Transformation</h3>
<p class="company">Macquarie Group</p>
<p>Modernized legacy entitlements system serving millions of banking customers with zero-downtime migration.</p>
<a href="/case-studies/#entitlements-migration" class="read-more"> Learn more →</a>
</div>
<div class="case-study-preview">
<h3>Cloud-Native Insurance Platform</h3>
<p class="company">Aegon Life</p>
<p>Built policy administration system from scratch in startup environment with event-driven architecture.</p>
<a href="/case-studies/#insurance-platform" class="read-more"> Learn more →</a>
</div>
<div class="case-study-preview">
<h3>Performance Optimization</h3>
<p class="company">TIAA</p>
<p>Achieved 8x improvement in page load times through frontend modernization and optimization strategy.</p>
<a href="/case-studies/#performance-boost" class="read-more"> Learn more →</a>
</div>
</div>
</div>
</section>
<section class="recent-posts">
<div class="container">
<h2>Latest Blog Posts</h2>
<div class="posts-grid">
{% for post in site.posts limit:3 %}
<article class="post-preview">
<h3><a href="{{ post.url | relative_url }}">{{ post.title }}</a></h3>
<p class="post-meta">{{ post.date | date: "%B %d, %Y" }}</p>
<p>{{ post.excerpt | strip_html | truncate: 150 }}</p>
<a href="{{ post.url | relative_url }}" class="read-more">Read More →</a>
</article>
{% endfor %}
</div>
<div class="text-center">
<a href="/blog/" class="btn btn-primary">View All Posts</a>
</div>
</div>
</section>