-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
249 lines (231 loc) · 13.7 KB
/
Copy pathindex.html
File metadata and controls
249 lines (231 loc) · 13.7 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
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aiman Mumtaz | Senior Software Engineer</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap" rel="stylesheet">
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
fontFamily: { sans: ['Inter', 'sans-serif'] },
}
}
}
</script>
<style>
body { scroll-behavior: smooth; transition: background-color 0.3s ease; }
.glass {
background: rgba(255, 255, 255, 0.7);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.dark .glass {
background: rgba(15, 23, 42, 0.8);
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.switch-label { display: flex; align-items: center; cursor: pointer; gap: 10px; }
.toggle-bg { position: relative; width: 44px; height: 22px; background-color: #cbd5e1; border-radius: 999px; transition: background-color 0.3s; }
.dark .toggle-bg { background-color: #3b82f6; }
.toggle-dot { position: absolute; top: 2px; left: 2px; width: 18px; height: 18px; background-color: white; border-radius: 50%; transition: transform 0.3s; }
.dark .toggle-dot { transform: translateX(22px); }
/* Typing Effect */
.typing::after { content: '|'; animation: blink 0.7s infinite; }
@keyframes blink { 50% { opacity: 0; } }
</style>
</head>
<body class="bg-slate-50 text-slate-900 dark:bg-slate-950 dark:text-slate-100">
<nav class="fixed w-full z-50 glass">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between items-center h-16">
<div class="text-xl font-bold tracking-tighter uppercase">Aiman<span class="text-blue-600">.</span></div>
<div class="flex items-center gap-6">
<div class="hidden md:flex space-x-6 text-xs font-bold uppercase tracking-widest items-center">
<a href="#about" class="hover:text-blue-600 transition">About</a>
<a href="#experience" class="hover:text-blue-600 transition">Experience</a>
<a href="#projects" class="hover:text-blue-600 transition">Projects</a>
<a href="#contact" class="hover:text-blue-600 transition">Contact</a>
<a href="resume/Aiman_Mumtaz_KSA.pdf" download="resume/Aiman_Mumtaz_KSA.pdf" class="px-4 py-2 bg-blue-600 text-white rounded-lg hover:bg-blue-700 transition">
Resume
</a>
</div>
<div class="flex items-center gap-2 border-l border-slate-300 dark:border-slate-700 pl-6">
<label class="switch-label">
<input type="checkbox" id="theme-checkbox" class="hidden">
<div class="toggle-bg"><div class="toggle-dot"></div></div>
</label>
</div>
</div>
</div>
</div>
</nav>
<section id="about" class="pt-40 pb-20 px-6">
<div class="max-w-7xl mx-auto flex flex-col lg:flex-row items-center justify-between">
<div class="lg:w-1/2 text-center lg:text-left">
<h2 class="text-blue-600 font-bold mb-4">Hello World, I'm Aiman</h2>
<h1 class="text-5xl lg:text-7xl font-extrabold mb-6 leading-tight">
I build <br><span id="typing-text" class="text-blue-600 typing"></span>
</h1>
<p class="text-lg text-slate-600 dark:text-slate-400 mb-8 max-w-xl">
Senior Software Engineer with 5 years of experience. Expert in Java (Spring Boot), Modern JS, and Azure. I turn complex data into seamless user experiences.
</p>
<div class="flex gap-4 justify-center lg:justify-start">
<a href="https://github.com/aiman-mumtaz" class="w-12 h-12 flex items-center justify-center bg-slate-900 dark:bg-white dark:text-slate-900 text-white rounded-xl hover:-translate-y-1 transition-all shadow-lg"><i class="fab fa-github fa-lg"></i></a>
<a href="https://linkedin.com/in/aiman-mumtaz" class="w-12 h-12 flex items-center justify-center bg-blue-600 text-white rounded-xl hover:-translate-y-1 transition-all shadow-lg shadow-blue-500/20"><i class="fab fa-linkedin-in fa-lg"></i></a>
</div>
</div>
<div class="lg:w-1/3 mt-12 lg:mt-0 relative">
<div class="absolute -inset-4 bg-blue-500/20 rounded-full blur-3xl"></div>
<img src="images/aiman-linkedin.png" alt="Aiman" class="relative rounded-3xl bg-slate-200 dark:bg-slate-800 border-2 border-white dark:border-slate-800 w-72 h-72 mx-auto">
</div>
</div>
</section>
<section class="py-20 bg-white dark:bg-slate-900/50 px-6">
<div class="max-w-7xl mx-auto">
<h2 class="text-3xl font-bold mb-12 text-center">Core Expertise</h2>
<div class="grid md:grid-cols-2 gap-12 max-w-4xl mx-auto">
<div class="space-y-6">
<div>
<div class="flex justify-between mb-2"><span class="font-bold">Backend (Java/Spring)</span><span>95%</span></div>
<div class="w-full bg-slate-200 dark:bg-slate-700 h-2 rounded-full"><div class="bg-blue-600 h-2 rounded-full" style="width: 95%"></div></div>
</div>
<div>
<div class="flex justify-between mb-2"><span class="font-bold">Next.js / React</span><span>90%</span></div>
<div class="w-full bg-slate-200 dark:bg-slate-700 h-2 rounded-full"><div class="bg-blue-600 h-2 rounded-full" style="width: 90%"></div></div>
</div>
</div>
<div class="space-y-6">
<div>
<div class="flex justify-between mb-2"><span class="font-bold">Azure Cloud / DevOps</span><span>85%</span></div>
<div class="w-full bg-slate-200 dark:bg-slate-700 h-2 rounded-full"><div class="bg-blue-600 h-2 rounded-full" style="width: 85%"></div></div>
</div>
<div>
<div class="flex justify-between mb-2"><span class="font-bold">Python & Big Data</span><span>80%</span></div>
<div class="w-full bg-slate-200 dark:bg-slate-700 h-2 rounded-full"><div class="bg-blue-600 h-2 rounded-full" style="width: 80%"></div></div>
</div>
</div>
</div>
</div>
</section>
<section id="experience" class="py-24 px-6">
<div class="max-w-4xl mx-auto">
<h2 class="text-3xl font-bold mb-16 border-l-4 border-blue-600 pl-4">Work Experience</h2>
<div class="space-y-16">
<div class="relative pl-8 border-l border-slate-200 dark:border-slate-800">
<div class="absolute -left-[9px] top-1 w-4 h-4 bg-blue-600 rounded-full"></div>
<h3 class="text-2xl font-bold">UnitedHealth Group</h3>
<p class="text-blue-600 font-bold mb-4">Senior Software Engineer | Dec 2021 — Present</p>
<ul class="space-y-3 text-slate-600 dark:text-slate-400">
<li>• Processing 2TB/day via Apache Spark and Azure cloud infrastructure.</li>
<li>• Achieved $500,000 annual cost savings through resource optimization.</li>
<li>• Built enterprise apps reducing integration TAT by 24 hours.</li>
</ul>
</div>
<div class="relative pl-8 border-l border-slate-200 dark:border-slate-800">
<div class="absolute -left-[9px] top-1 w-4 h-4 bg-slate-400 rounded-full"></div>
<h3 class="text-2xl font-bold">WebMD</h3>
<p class="text-slate-500 font-bold mb-4">Software Engineer | 2021</p>
<p class="text-slate-600 dark:text-slate-400">Implemented Docker-based CI/CD pipelines, reducing deployment time by 30%.</p>
</div>
</div>
</div>
</section>
<section id="projects" class="py-24 bg-slate-100 dark:bg-slate-900 px-6">
<div class="max-w-7xl mx-auto">
<h2 class="text-3xl font-bold mb-16 text-center">Selected Projects</h2>
<div class="grid md:grid-cols-2 gap-8">
<div class="p-8 bg-white dark:bg-slate-800 rounded-2xl shadow-sm hover:shadow-xl transition-all">
<div class="w-12 h-12 bg-blue-100 dark:bg-blue-900/30 text-blue-600 flex items-center justify-center rounded-lg mb-6"><i class="fas fa-brain fa-lg"></i></div>
<h3 class="text-xl font-bold mb-4">LinkedIn Roast (Viral AI App)</h3>
<p class="text-slate-600 dark:text-slate-400 mb-6">Full-stack app using Grok API to provide brutally honest profile analysis. Next.js 16 + React 19.</p>
<div class="flex gap-2">
<span class="text-[10px] font-bold px-2 py-1 bg-slate-100 dark:bg-slate-700 rounded">NEXT.JS</span>
<span class="text-[10px] font-bold px-2 py-1 bg-slate-100 dark:bg-slate-700 rounded">AI</span>
</div>
</div>
<div class="p-8 bg-white dark:bg-slate-800 rounded-2xl shadow-sm hover:shadow-xl transition-all">
<div class="w-12 h-12 bg-green-100 dark:bg-green-900/30 text-green-600 flex items-center justify-center rounded-lg mb-6"><i class="fas fa-file-code fa-lg"></i></div>
<h3 class="text-xl font-bold mb-4">Enterprise File Validator</h3>
<p class="text-slate-600 dark:text-slate-400 mb-6">Python framework for automated reconciliation of massive datasets during system migrations.</p>
<div class="flex gap-2">
<span class="text-[10px] font-bold px-2 py-1 bg-slate-100 dark:bg-slate-700 rounded">PYTHON</span>
<span class="text-[10px] font-bold px-2 py-1 bg-slate-100 dark:bg-slate-700 rounded">STREAMLIT</span>
</div>
</div>
</div>
</div>
</section>
<section class="py-24 px-6">
<div class="max-w-4xl mx-auto text-center">
<h2 class="text-3xl font-bold mb-12">Education</h2>
<div class="p-8 border border-slate-200 dark:border-slate-800 rounded-2xl inline-block">
<h3 class="text-xl font-bold">Jamia Millia Islamia</h3>
<p class="text-blue-600">B.Tech in Computer Engineering</p>
<p class="text-sm text-slate-500 mt-2">New Delhi, India</p>
</div>
</div>
</section>
<section id="contact" class="py-24 bg-blue-600 text-white px-6">
<div class="max-w-4xl mx-auto text-center">
<h2 class="text-4xl font-extrabold mb-6">Let's build something great.</h2>
<p class="text-blue-100 mb-10">Available for collaborations and senior engineering roles.</p>
<div class="flex flex-wrap justify-center gap-6">
<a href="mailto:aimanmumtaz001@gmail.com" class="bg-white text-blue-600 px-8 py-4 rounded-xl font-bold hover:scale-105 transition">Email Me</a>
<a href="https://linkedin.com/in/aiman-mumtaz" class="bg-blue-700 text-white px-8 py-4 rounded-xl font-bold border border-blue-400 hover:scale-105 transition">LinkedIn</a>
</div>
</div>
</section>
<footer class="py-12 text-center text-slate-400 text-xs">
<p>© 2025 Aiman Mumtaz | Made with ❤️ and Tailwind</p>
</footer>
<script>
// Theme Toggle
const themeCheckbox = document.getElementById('theme-checkbox');
const html = document.documentElement;
if (localStorage.getItem('theme') === 'light') {
html.classList.remove('dark');
themeCheckbox.checked = false;
} else {
html.classList.add('dark');
themeCheckbox.checked = true;
}
themeCheckbox.addEventListener('change', () => {
if (themeCheckbox.checked) {
html.classList.add('dark');
localStorage.setItem('theme', 'dark');
} else {
html.classList.remove('dark');
localStorage.setItem('theme', 'light');
}
});
// Typing Effect Logic
const words = ["Scalable Systems", "Enterprise Apps", "Cloud Solutions", "AI Tools"];
let i = 0;
let j = 0;
let currentWord = "";
let isDeleting = false;
function type() {
currentWord = words[i];
if (isDeleting) {
document.getElementById("typing-text").textContent = currentWord.substring(0, j - 1);
j--;
if (j == 0) {
isDeleting = false;
i++;
if (i == words.length) i = 0;
}
} else {
document.getElementById("typing-text").textContent = currentWord.substring(0, j + 1);
j++;
if (j == currentWord.length) isDeleting = true;
}
setTimeout(type, isDeleting ? 100 : 200);
}
type();
</script>
</body>
</html>