-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
440 lines (389 loc) · 12.9 KB
/
Copy pathindex.html
File metadata and controls
440 lines (389 loc) · 12.9 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Prabhakaran - Lead Product Designer & Indie Builder</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Prabhakaran is a Lead Product Designer and indie builder in Chennai. AI product design, agentic interfaces, iOS apps, and SaaS workflows.">
<meta name="color-scheme" content="dark">
<style>
:root {
--bg: #000000;
--bg-elevated: #0d0d0f;
--panel: #16161a;
--panel-soft: #1d1d21;
--text: #f5f5f7;
--text-secondary: #a1a1a6;
--muted: #6e6e73;
--line: rgba(255, 255, 255, 0.10);
--accent: #2997ff;
--radius: 18px;
--font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
--font-body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
--font-mono: "SF Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
* { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
margin: 0;
background:
radial-gradient(ellipse 80% 50% at 50% -10%, rgba(41, 151, 255, 0.10), transparent 60%),
var(--bg);
color: var(--text);
font-family: var(--font-body);
line-height: 1.47;
}
.wrap {
max-width: 980px;
margin: 0 auto;
padding: 0 48px;
position: relative;
z-index: 1;
}
#particleCanvas {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 0;
}
header.hero {
padding: 120px 0 72px;
}
.avatar {
width: 112px;
height: 112px;
border-radius: 50%;
border: 2px solid var(--line);
box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.03);
margin-bottom: 32px;
object-fit: cover;
display: block;
}
.eyebrow {
font-family: var(--font-mono);
font-size: 12px;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--accent);
margin: 0 0 24px;
}
h1 {
font-family: var(--font-display);
font-size: clamp(40px, 6vw, 72px);
font-weight: 600;
line-height: 1.05;
letter-spacing: -0.03em;
margin: 0 0 28px;
max-width: 16ch;
}
.hero p {
font-size: 19px;
color: var(--text-secondary);
max-width: 62ch;
margin: 0 0 20px;
}
.hero p strong {
color: var(--text);
font-weight: 600;
}
.meta {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-top: 36px;
}
.tag {
font-family: var(--font-mono);
font-size: 11px;
letter-spacing: 0.04em;
color: var(--text-secondary);
border: 1px solid var(--line);
background: rgba(255, 255, 255, 0.03);
border-radius: 999px;
padding: 8px 14px;
}
section {
padding: 64px 0;
border-top: 1px solid var(--line);
}
.section-label {
font-family: var(--font-mono);
font-size: 12px;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--muted);
margin: 0 0 20px;
}
h2 {
font-family: var(--font-display);
font-size: 34px;
font-weight: 600;
line-height: 1.1;
letter-spacing: -0.02em;
margin: 0 0 28px;
}
.about p {
font-size: 18px;
color: var(--text-secondary);
max-width: 62ch;
margin: 0 0 20px;
}
.about p strong {
color: var(--text);
font-weight: 600;
}
.grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 16px;
}
.card {
background: var(--panel);
border: 1px solid var(--line);
border-radius: var(--radius);
padding: 24px;
transition: border-color 160ms ease, transform 160ms ease;
}
.card:hover {
border-color: rgba(255, 255, 255, 0.22);
transform: translateY(-2px);
}
.card-title {
font-family: var(--font-mono);
font-size: 12px;
letter-spacing: 0.06em;
text-transform: uppercase;
color: var(--accent);
margin: 0 0 12px;
}
.card p {
font-size: 15px;
color: var(--text-secondary);
margin: 0;
line-height: 1.5;
}
.short {
background: var(--bg-elevated);
border-radius: var(--radius);
border: 1px solid var(--line);
padding: 40px;
}
.short p {
font-size: 22px;
line-height: 1.4;
margin: 0;
max-width: 48ch;
color: var(--text);
}
.short p span {
color: var(--text-secondary);
}
.cta {
text-align: left;
}
.cta p {
font-size: 20px;
color: var(--text-secondary);
max-width: 52ch;
margin: 0 0 32px;
}
.cta p strong {
color: var(--text);
font-weight: 600;
}
.actions {
display: flex;
flex-wrap: wrap;
gap: 14px;
}
.btn {
display: inline-block;
font-family: var(--font-body);
font-size: 16px;
font-weight: 500;
text-decoration: none;
border-radius: 999px;
padding: 14px 28px;
transition: opacity 160ms ease, transform 160ms ease;
}
.btn:hover {
opacity: 0.85;
transform: translateY(-1px);
}
.btn-primary {
background: var(--accent);
color: #ffffff;
}
.btn-ghost {
border: 1px solid var(--line);
color: var(--text);
background: rgba(255, 255, 255, 0.03);
}
footer {
padding: 48px 0 64px;
border-top: 1px solid var(--line);
display: flex;
justify-content: space-between;
align-items: center;
gap: 16px;
color: var(--muted);
font-size: 13px;
}
footer a {
color: var(--text-secondary);
text-decoration: none;
}
footer a:hover {
color: var(--text);
}
@media (max-width: 720px) {
.wrap { padding: 0 22px; }
header.hero { padding: 80px 0 48px; }
h1 { font-size: 38px; }
.grid { grid-template-columns: 1fr; }
.short p { font-size: 19px; }
footer { flex-direction: column; align-items: flex-start; }
}
</style>
</head>
<body>
<div class="wrap">
<header class="hero">
<img class="avatar" src="https://thisisprabha.wordpress.com/wp-content/uploads/2022/04/prabha.jpg" alt="Prabhakaran" width="112" height="112">
<p class="eyebrow">Product Design / AI / iOS</p>
<h1>Hi, I'm Prabhakaran. Lead Product Designer and indie builder in Chennai.</h1>
<p>I'm a product designer who writes code. Most days I'm at <strong>SuperOps</strong>, building tools MSP teams actually want to use. Product strategy, interaction design, getting into the weeds with engineering to ship things that hold up.</p>
<p>Nights and weekends: <strong>iOS apps</strong>. I've shipped a few to the App Store. I also mess around with LLMs, agent workflows, and open source tools. Less interested in AI demos, more in stuff that actually works.</p>
<div class="meta">
<span class="tag">Chennai, India</span>
<span class="tag">10+ years</span>
<span class="tag">SwiftUI</span>
<span class="tag">Agentic UX</span>
<span class="tag">Design Systems</span>
</div>
</header>
<section class="about">
<p class="section-label">About</p>
<h2>Designer who also builds.</h2>
<p>I've been designing for a while. Started in graphic design, moved through web, landed in product. About 10+ years across <strong>SuperOps, Subex, IndiaProperty, and Fantain</strong>. Same thread throughout: take something messy and make it make sense.</p>
<p>These days: B2B SaaS workflows at SuperOps. On the side I explore how AI agents should interact with people (honestly, nobody's figured this out yet), and I ship SwiftUI apps when there's something worth shipping.</p>
<p>The stuff I geek out on: information architecture that stays out of the way. Empty states that don't look broken. Onboarding that feels like one smooth motion. Localization done properly. Design systems engineers actually use. The small decisions, the ones nobody notices unless they're wrong.</p>
</section>
<section>
<p class="section-label">What I work on</p>
<h2>Design, code, ship.</h2>
<div class="grid">
<div class="card">
<p class="card-title">B2B SaaS & IT Ops</p>
<p>MSP workflows at SuperOps. Patch management, monitoring, ticketing. Making the complex stuff feel straightforward.</p>
</div>
<div class="card">
<p class="card-title">AI Product Experiences</p>
<p>How do agents talk to humans? Interfaces for LLM workflows, automation with guardrails, and keeping people in the loop when it matters.</p>
</div>
<div class="card">
<p class="card-title">Mobile Apps</p>
<p>SwiftUI on the App Store. In-app purchases, subscriptions, the whole release pipeline. I enjoy the constraints of mobile. You can't just keep adding buttons.</p>
</div>
<div class="card">
<p class="card-title">Design Systems</p>
<p>Systems that engineers don't hate. Patterns that scale without turning into a straightjacket.</p>
</div>
<div class="card">
<p class="card-title">Prototyping</p>
<p>I prototype in code, not slides. APIs, open-source models, whatever gets the idea working fast enough to test.</p>
</div>
<div class="card">
<p class="card-title">Developer Collaboration</p>
<p>I ship with engineers, not at them. Specs, prototypes, docs, and the kind of back-and-forth that catches problems before they ship.</p>
</div>
</div>
</section>
<section>
<p class="section-label">In one line</p>
<div class="short">
<p>Lead Product Designer at SuperOps. I design AI-native SaaS for MSP teams. <span>After hours: iOS apps, agent experiments, and whatever else seems worth building.</span></p>
</div>
</section>
<section class="cta">
<p class="section-label">Let's talk</p>
<h2>Thoughtful conversations welcome.</h2>
<p>If you're building in <strong>AI, iOS, or SaaS</strong> and want to talk, reach out. I'm on LinkedIn, and most of my side projects are on GitHub.</p>
<div class="actions">
<a class="btn btn-primary" href="https://www.linkedin.com/in/thisisprabhakaran/" target="_blank" rel="noopener noreferrer">Connect on LinkedIn</a>
<a class="btn btn-ghost" href="https://github.com/thisisprabha" target="_blank" rel="noopener noreferrer">Explore what I build</a>
</div>
</section>
<footer>
<span>© 2026 Prabhakaran. Chennai, India.</span>
<span><a href="https://github.com/thisisprabha" target="_blank" rel="noopener noreferrer">GitHub</a> / <a href="https://www.linkedin.com/in/thisisprabhakaran/" target="_blank" rel="noopener noreferrer">LinkedIn</a></span>
</footer>
</div>
<canvas id="particleCanvas" aria-hidden="true"></canvas>
<script>
(function () {
const canvas = document.getElementById('particleCanvas');
const ctx = canvas.getContext('2d');
const reduceMotion = window.matchMedia('(prefers-reduced-motion: reduce)').matches;
let particles = [];
let w, h;
function resize() {
w = canvas.width = window.innerWidth;
h = canvas.height = window.innerHeight;
}
function spawn(x, y, count) {
for (let i = 0; i < count; i++) {
particles.push({
x: x !== undefined ? x : Math.random() * w,
y: y !== undefined ? y : h + Math.random() * 100,
size: Math.random() * 1.6 + 0.4,
speedY: -(Math.random() * 0.7 + 0.25),
drift: Math.random() * 0.4 - 0.2,
alpha: Math.random() * 0.35 + 0.25
});
}
}
function step() {
ctx.clearRect(0, 0, w, h);
for (let i = particles.length - 1; i >= 0; i--) {
const p = particles[i];
p.y += p.speedY;
p.x += p.drift;
if (p.y < -10) {
particles.splice(i, 1);
spawn(undefined, undefined, 1);
continue;
}
ctx.beginPath();
ctx.fillStyle = 'rgba(245, 245, 247, ' + p.alpha + ')';
ctx.arc(p.x, p.y, p.size, 0, Math.PI * 2);
ctx.fill();
}
}
function loop() {
step();
requestAnimationFrame(loop);
}
resize();
spawn(undefined, undefined, 90);
if (!reduceMotion) {
loop();
} else {
step();
}
window.addEventListener('resize', () => {
resize();
particles = [];
spawn(undefined, undefined, 90);
});
window.addEventListener('mousemove', (e) => {
if (reduceMotion) return;
spawn(e.clientX, e.clientY, 4);
});
})();
</script>
</body>
</html>