-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
595 lines (563 loc) · 28.9 KB
/
Copy pathindex.html
File metadata and controls
595 lines (563 loc) · 28.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
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
<!doctype html>
<html lang="en" class="scroll-smooth antialiased">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script>
;(function () {
var root = document.documentElement
try {
var stored = localStorage.getItem('theme')
var prefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches
var useDark = stored === 'dark' || (!stored && prefersDark)
root.classList.toggle('dark', useDark)
root.style.colorScheme = useDark ? 'dark' : 'light'
} catch {}
})()
</script>
<style>
html {
color-scheme: light;
background-color: #fcfcfa;
color: #181815;
font-family: 'Geist', system-ui, sans-serif;
}
html.dark {
color-scheme: dark;
background-color: #0b0b0c;
color: #f5f5f2;
}
</style>
<link rel="preload" href="/fonts/geist-latin.woff2" as="font" type="font/woff2" crossorigin />
<link
rel="preload"
href="/fonts/geist-mono-latin.woff2"
as="font"
type="font/woff2"
crossorigin
/>
<link rel="stylesheet" href="/src/style.css" />
<link rel="icon" href="/favicon.ico" sizes="any" />
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
<link rel="canonical" href="https://devmin.ca/" />
<title>Shan - Senior Frontend Engineer in Toronto | Open Source PaaS Builder</title>
<meta
name="description"
content="Toronto senior frontend engineer with 13+ years in React, TypeScript, developer tooling, and platform engineering. Building Rivet, an open source self-hosted PaaS."
/>
<meta name="author" content="Shanmugharaj Kumaragurubaran" />
<meta name="robots" content="index, follow" />
<meta
name="googlebot"
content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1"
/>
<meta name="referrer" content="strict-origin-when-cross-origin" />
<meta property="og:type" content="profile" />
<meta property="og:url" content="https://devmin.ca/" />
<meta property="og:title" content="Shan - Senior Frontend Engineer in Toronto" />
<meta
property="og:description"
content="Toronto-based engineer focused on React, TypeScript, complex UI systems, developer tooling, and open source PaaS workflows."
/>
<meta property="og:image" content="https://devmin.ca/og-image.svg" />
<meta property="og:image:alt" content="Shan, senior frontend engineer" />
<meta property="og:site_name" content="devmin.ca" />
<meta property="og:locale" content="en_US" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Shan - Senior Frontend Engineer in Toronto" />
<meta
name="twitter:description"
content="Toronto-based engineer focused on React, TypeScript, complex UI systems, developer tooling, and open source PaaS workflows."
/>
<meta name="twitter:image" content="https://devmin.ca/og-image.svg" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "WebSite",
"@id": "https://devmin.ca/#website",
"url": "https://devmin.ca/",
"name": "devmin.ca",
"description": "Personal site for Shan, a Toronto senior frontend engineer and open source PaaS builder.",
"publisher": {
"@id": "https://devmin.ca/#person"
},
"inLanguage": "en"
},
{
"@type": "ProfilePage",
"@id": "https://devmin.ca/#profile",
"url": "https://devmin.ca/",
"name": "Shan - Senior Frontend Engineer in Toronto",
"about": {
"@id": "https://devmin.ca/#person"
},
"mainEntity": {
"@id": "https://devmin.ca/#person"
},
"inLanguage": "en"
},
{
"@type": "Person",
"@id": "https://devmin.ca/#person",
"name": "Shanmugharaj Kumaragurubaran",
"alternateName": "Shan",
"url": "https://devmin.ca/",
"jobTitle": "Senior Frontend Engineer",
"email": "mailto:devmin88@gmail.com",
"address": {
"@type": "PostalAddress",
"addressLocality": "Toronto",
"addressRegion": "ON",
"addressCountry": "CA"
},
"sameAs": ["https://github.com/devmin8", "https://linkedin.com/in/shanmugharaj"],
"knowsAbout": [
"Frontend Engineering",
"Frontend Architecture",
"React",
"TypeScript",
"Next.js",
"Vue",
"Developer Tooling",
"Platform Engineering",
"Open Source PaaS",
"Self-hosted PaaS",
"Docker",
"Kubernetes"
],
"seeks": {
"@type": "Demand",
"name": "Senior frontend engineering roles in Toronto or remote"
},
"makesOffer": {
"@type": "Offer",
"itemOffered": {
"@type": "Service",
"name": "Senior frontend engineering",
"areaServed": "Toronto and remote teams"
}
}
},
{
"@type": "SoftwareApplication",
"@id": "https://devmin.ca/#rivet",
"name": "Rivet",
"url": "https://getrivet.app",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "Linux",
"description": "Open source self-hosted PaaS for deploying Dockerfile apps and public images on a single VPS.",
"creator": {
"@id": "https://devmin.ca/#person"
}
}
]
}
</script>
<meta name="theme-color" content="#FCFCFA" media="(prefers-color-scheme: light)" />
<meta name="theme-color" content="#0B0B0C" media="(prefers-color-scheme: dark)" />
</head>
<body class="grid-bg bg-bg font-sans text-ink selection:text-ink">
<header class="grid-pattern sticky top-0 z-50 border-b border-line bg-bg/85 backdrop-blur-md">
<div class="page-shell flex h-[54px] items-center justify-between">
<a href="/" class="group flex items-center gap-2.5" aria-label="devmin.ca home">
<svg
width="18"
height="18"
class="h-[18px] w-[18px] shrink-0 text-ink"
viewBox="0 0 18 18"
fill="none"
aria-hidden="true"
>
<path
d="M3 13.5V4.5h3.15c2.82 0 4.65 1.77 4.65 4.5s-1.83 4.5-4.65 4.5H3Z"
fill="currentColor"
/>
<path d="M5.6 11.1h.7c1.22 0 1.95-.78 1.95-2.1S7.52 6.9 6.3 6.9h-.7v4.2Z" fill="var(--bg)" />
<path
d="M11.15 13.5V4.5h1.72l1.5 2.73 1.5-2.73H17.5v9h-1.9V8.4l-.88 1.6h-.75l-.92-1.6v5.1h-1.9Z"
fill="var(--accent)"
/>
</svg>
<span
class="font-mono text-[13px] tracking-tight text-muted transition-colors group-hover:text-ink"
>devmin.ca</span
>
</a>
<div class="flex items-center gap-5">
<nav class="hidden items-center gap-6 font-mono text-[12px] tracking-tight sm:flex">
<a href="#about" class="text-muted transition-colors hover:text-ink">about</a>
<a href="#building" class="text-muted transition-colors hover:text-ink">building</a>
<a href="#experience" class="text-muted transition-colors hover:text-ink">experience</a>
<a href="#contact" class="text-muted transition-colors hover:text-ink">contact</a>
</nav>
<button
id="theme-toggle"
type="button"
aria-label="Toggle color theme"
class="flex h-8 w-8 items-center justify-center rounded-md text-muted transition-colors hover:bg-surface hover:text-ink"
>
<svg
width="16"
height="16"
class="hidden h-4 w-4 dark:block"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
aria-hidden="true"
>
<circle cx="12" cy="12" r="4.5" />
<path d="M12 2v2.5M12 19.5V22M4.22 4.22l1.71 1.71M18.07 18.07l1.71 1.71M2 12h2.5M19.5 12H22M4.22 19.78l1.71-1.71M18.07 5.93l1.71-1.71" />
</svg>
<svg
width="16"
height="16"
class="block h-4 w-4 dark:hidden"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
aria-hidden="true"
>
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z" />
</svg>
</button>
</div>
</div>
</header>
<main id="top" class="page-shell">
<section class="pb-[68px] pt-[76px]">
<p
data-reveal
class="mb-5 max-w-[520px] font-mono text-[12px] uppercase tracking-[0.12em] text-muted"
>
Hello 👋
</p>
<h1
data-reveal
class="mb-4 text-[52px] font-bold leading-[0.95] tracking-[-0.04em] text-ink sm:text-[68px]"
>
Shan
</h1>
<div data-reveal class="mb-2 flex flex-wrap items-baseline gap-x-3 gap-y-1">
<p class="text-[17px] font-medium text-sub">Senior Frontend Engineer</p>
<span class="font-mono text-[12px] text-faint"
>Shanmugharaj Kumaragurubaran · Toronto</span
>
</div>
<p data-reveal class="mb-6 font-mono text-[11.5px] text-faint">
Previously: Tesco, Locus, Edelman, Ascena, BookMyShow
</p>
<p data-reveal class="body-copy mb-8 max-w-[575px]">
13+ years building software across fintech, retail, logistics, and developer tooling.
I enjoy working where the complexity is, whether that's frontend architecture,
networking, or infrastructure. Currently building
<a href="https://getrivet.app" target="_blank" rel="noopener" class="text-link font-medium text-ink"
>Rivet</a
>, an open source self-hosted PaaS that simplifies application deployments on a single
VPS.
</p>
<div data-reveal class="flex flex-wrap items-center gap-x-4 gap-y-3">
<a
href="mailto:devmin88@gmail.com"
class="inline-flex items-center gap-2 rounded-md bg-ink px-4 py-2 text-[13px] font-medium text-bg transition-opacity hover:opacity-90"
>
<svg
class="h-[14px] w-[14px]"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
aria-hidden="true"
>
<rect x="3" y="5" width="18" height="14" rx="2" />
<path d="m3 7 9 6 9-6" />
</svg>
devmin88@gmail.com
</a>
<div class="flex items-center gap-5 text-[13px]">
<a href="/Shanmugharaj_Resume.pdf" target="_blank" rel="noopener" class="external-link"
>Resume<svg width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M13.5 6H5.25A2.25 2.25 0 0 0 3 8.25v10.5A2.25 2.25 0 0 0 5.25 21h10.5A2.25 2.25 0 0 0 18 18.75V10.5m-10.5 6L21 3m0 0h-5.25M21 3v5.25" /></svg
></a>
<a href="https://github.com/devmin8" target="_blank" rel="noopener" class="external-link"
>GitHub<svg width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M13.5 6H5.25A2.25 2.25 0 0 0 3 8.25v10.5A2.25 2.25 0 0 0 5.25 21h10.5A2.25 2.25 0 0 0 18 18.75V10.5m-10.5 6L21 3m0 0h-5.25M21 3v5.25" /></svg
></a>
<a
href="https://linkedin.com/in/shanmugharaj"
target="_blank"
rel="noopener"
class="external-link"
>LinkedIn<svg width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M13.5 6H5.25A2.25 2.25 0 0 0 3 8.25v10.5A2.25 2.25 0 0 0 5.25 21h10.5A2.25 2.25 0 0 0 18 18.75V10.5m-10.5 6L21 3m0 0h-5.25M21 3v5.25" /></svg
></a>
<a href="https://getrivet.app/" target="_blank" rel="noopener" class="external-link"
>Rivet<svg width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M13.5 6H5.25A2.25 2.25 0 0 0 3 8.25v10.5A2.25 2.25 0 0 0 5.25 21h10.5A2.25 2.25 0 0 0 18 18.75V10.5m-10.5 6L21 3m0 0h-5.25M21 3v5.25" /></svg
></a>
</div>
</div>
</section>
<section id="about" class="section-block">
<div class="section-kicker" data-reveal><span>01</span> About</div>
<div class="body-copy space-y-4" data-reveal>
<p>
I started as a self-taught developer, and that mindset never left. I enjoy ownership,
ambiguity, and problems that don't have an obvious answer.
</p>
<p>
A lot of my work starts the same way: I run into repeated friction and build a better
path. That has led to everything from VS Code and browser extensions to a schema-driven
UI framework that let product teams ship changes without waiting on frontend releases.
More recently, it led to <span class="font-medium text-ink">Rivet</span> and
<span class="font-medium text-ink">MockSwitch</span>.
</p>
<p>
While most of my experience is on the frontend, I've never been attached to layers or
titles. If something breaks, I follow it. Over the years that has taken me from React
components and browser APIs into networking, infrastructure, TLS, CDN behavior, and
production debugging.
</p>
<p>
Most projects I've built started from the same instinct: understand the problem deeply,
remove the friction, and leave things better than I found them.
</p>
</div>
</section>
<section id="building" class="section-block">
<div class="section-kicker" data-reveal><span>02</span> Building</div>
<div class="space-y-9">
<article data-reveal>
<div class="mb-2 flex flex-wrap items-baseline gap-3">
<h2 class="text-[16px] font-semibold text-ink">Rivet</h2>
<a href="https://getrivet.app" target="_blank" rel="noopener" class="external-link font-mono text-[12px]"
>getrivet.app<svg width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M13.5 6H5.25A2.25 2.25 0 0 0 3 8.25v10.5A2.25 2.25 0 0 0 5.25 21h10.5A2.25 2.25 0 0 0 18 18.75V10.5m-10.5 6L21 3m0 0h-5.25M21 3v5.25" /></svg
></a>
<span class="status-label">
<span class="status-dot status-dot-live"></span>
Live
</span>
</div>
<p class="mb-3.5 max-w-[570px] text-[14px] leading-[1.75] text-sub">
Open source self-hosted PaaS for a single VPS. Deploy Dockerfile apps from the CLI or
run public images from a web console: automatic SSL, encrypted secrets, auto-sleep,
domain routing, and real-time per-container metrics.
</p>
<div class="flex flex-wrap gap-1.5">
<span class="tag">Go</span><span class="tag">Vue</span><span class="tag">Docker</span
><span class="tag">Caddy</span>
</div>
</article>
<article data-reveal>
<div class="mb-2 flex flex-wrap items-baseline gap-3">
<h2 class="text-[16px] font-semibold text-ink">MockSwitch</h2>
<span class="status-label">
<span class="status-dot status-dot-dev"></span>
In development
</span>
</div>
<p class="mb-3.5 max-w-[570px] text-[14px] leading-[1.75] text-sub">
A local-development-first browser extension and runtime for API redirects, REST
mocks, response capture, and replay. Built for the gap between making a fetch and
standing up a full mock server.
</p>
<div class="flex flex-wrap gap-1.5">
<span class="tag">Browser Extension</span><span class="tag">TypeScript</span>
</div>
</article>
</div>
</section>
<section id="experience" class="section-block">
<div class="section-kicker" data-reveal><span>03</span> Experience</div>
<ol class="relative ml-1.5 border-l border-line">
<li data-reveal class="relative pb-9 pl-7">
<span class="timeline-dot bg-accent"></span>
<div class="mb-1 font-mono text-[11.5px] text-muted">Apr 2026 - Present</div>
<div class="mb-1.5 flex flex-wrap items-baseline gap-x-2.5 gap-y-0.5">
<span class="text-[14.5px] font-semibold text-ink">Rivet</span>
<span class="text-[13px] text-muted">Founder / Engineer</span>
</div>
<p class="max-w-[560px] text-[13.5px] leading-[1.7] text-sub">
Built auto-sleep/wake infrastructure, encrypted secrets management, SSL provisioning,
and real-time per-container monitoring for a self-hosted deployment platform.
</p>
</li>
<li data-reveal class="relative pb-9 pl-7">
<span class="timeline-dot bg-line-2"></span>
<div class="mb-1 font-mono text-[11.5px] text-muted">Jun 2023 - Jan 2026</div>
<div class="mb-1.5 flex flex-wrap items-baseline gap-x-2.5 gap-y-0.5">
<span class="text-[14.5px] font-semibold text-ink">Tesco</span>
<span class="text-[13px] text-muted">Lead Frontend Engineer</span>
</div>
<ul class="max-w-[570px] list-disc space-y-1 pl-4 text-[13.5px] leading-[1.7] text-sub marker:text-faint">
<li>Led frontend for a centralized Product Attribute Management platform.</li>
<li>Reduced manual ticket-based issue resolution by around 50% through tooling and workflow improvements.</li>
<li>Improved UI responsiveness by nearly 2 seconds through frontend-led dependency evaluation.</li>
</ul>
</li>
<li data-reveal class="relative pb-9 pl-7">
<span class="timeline-dot bg-line-2"></span>
<div class="mb-1 font-mono text-[11.5px] text-muted">Jun 2021 - Jun 2023</div>
<div class="mb-1.5 flex flex-wrap items-baseline gap-x-2.5 gap-y-0.5">
<span class="text-[14.5px] font-semibold text-ink">Locus.sh</span>
<span class="text-[13px] text-muted">Senior Frontend Engineer</span>
</div>
<ul class="max-w-[570px] list-disc space-y-1 pl-4 text-[13.5px] leading-[1.7] text-sub marker:text-faint">
<li>Built ShipFlex UI logistics and carrier management workflows for 160+ carriers.</li>
<li>Built a schema-driven dynamic form framework so teams shipped UI changes without frontend release cycles.</li>
<li>Contributed to micro-frontend architecture using Webpack Module Federation.</li>
</ul>
</li>
<li data-reveal class="relative pb-9 pl-7">
<span class="timeline-dot bg-line-2"></span>
<div class="mb-1 font-mono text-[11.5px] text-muted">Jan 2020 - Jun 2021</div>
<div class="mb-1.5 flex flex-wrap items-baseline gap-x-2.5 gap-y-0.5">
<span class="text-[14.5px] font-semibold text-ink">Edelman Financial Engines</span>
<span class="text-[13px] text-muted">Senior Frontend Engineer</span>
</div>
<p class="max-w-[560px] text-[13.5px] leading-[1.7] text-sub">
Built retirement planning experiences in React and TypeScript; contributed to SPA
modernization across Angular and React codebases.
</p>
</li>
<li data-reveal class="relative pb-9 pl-7">
<span class="timeline-dot bg-line-2"></span>
<div class="mb-1 font-mono text-[11.5px] text-muted">Dec 2018 - Jan 2020</div>
<div class="mb-1.5 flex flex-wrap items-baseline gap-x-2.5 gap-y-0.5">
<span class="text-[14.5px] font-semibold text-ink">Ascena Retail</span>
<span class="text-[13px] text-muted">Senior Software Engineer</span>
</div>
<p class="max-w-[560px] text-[13.5px] leading-[1.7] text-sub">
Built customer-facing e-commerce experiences in Next.js; extended and maintained
legacy Handlebars and JSP systems.
</p>
</li>
<li data-reveal class="relative pb-9 pl-7">
<span class="timeline-dot bg-line-2"></span>
<div class="mb-1 font-mono text-[11.5px] text-muted">Dec 2017 - Dec 2018</div>
<div class="mb-1.5 flex flex-wrap items-baseline gap-x-2.5 gap-y-0.5">
<span class="text-[14.5px] font-semibold text-ink">Intuit</span>
<span class="text-[13px] text-muted">Senior Software Engineer</span>
</div>
<p class="max-w-[560px] text-[13.5px] leading-[1.7] text-sub">
Built subscription cancellation and survey workflows in React/Redux; developed a
reusable survey framework supporting A/B experimentation.
</p>
</li>
<li data-reveal class="relative pb-9 pl-7">
<span class="timeline-dot bg-line-2"></span>
<div class="mb-1 font-mono text-[11.5px] text-muted">Jul 2015 - Dec 2017</div>
<div class="mb-1.5 flex flex-wrap items-baseline gap-x-2.5 gap-y-0.5">
<span class="text-[14.5px] font-semibold text-ink">Synchronoss Technologies</span>
<span class="text-[13px] text-muted">Senior Software Engineer</span>
</div>
<p class="max-w-[560px] text-[13.5px] leading-[1.7] text-sub">
Built a C#/WPF desktop configuration tool for geospatial tile customization; built
features on an Angular 2 SPA integrating WMS/WFS services.
</p>
</li>
<li data-reveal class="relative pl-7">
<span class="timeline-dot bg-line-2"></span>
<div class="mb-1 font-mono text-[11.5px] text-muted">Jun 2012 - Jul 2015</div>
<div class="mb-1.5 flex flex-wrap items-baseline gap-x-2.5 gap-y-0.5">
<span class="text-[14.5px] font-semibold text-ink">BookMyShow</span>
<span class="text-[13px] text-muted">Team Lead</span>
</div>
<p class="max-w-[560px] text-[13.5px] leading-[1.7] text-sub">
Led a team of three building a Transaction Storage Service. Built a Windows kiosk app
in C#/WPF and an SMS gateway in Node.js and MongoDB.
</p>
</li>
</ol>
</section>
<section id="skills" class="section-block">
<div class="section-kicker" data-reveal><span>04</span> Stack</div>
<div class="space-y-4" data-reveal>
<div class="grid grid-cols-1 gap-x-6 gap-y-1 sm:grid-cols-[150px_1fr]">
<span class="font-mono text-[12px] text-muted">Frontend</span>
<span class="text-[14px] text-sub">React, Angular, Vue, TypeScript, Next.js, Remix, Tailwind CSS</span>
</div>
<div class="grid grid-cols-1 gap-x-6 gap-y-1 sm:grid-cols-[150px_1fr]">
<span class="font-mono text-[12px] text-muted">State & Data</span>
<span class="text-[14px] text-sub">Redux, Zustand, React Query</span>
</div>
<div class="grid grid-cols-1 gap-x-6 gap-y-1 sm:grid-cols-[150px_1fr]">
<span class="font-mono text-[12px] text-muted">Backend & Platform</span>
<span class="text-[14px] text-sub">Go, Node.js, Docker, Kubernetes, GitHub Actions</span>
</div>
<div class="grid grid-cols-1 gap-x-6 gap-y-1 sm:grid-cols-[150px_1fr]">
<span class="font-mono text-[12px] text-muted">Testing</span>
<span class="text-[14px] text-sub">Vitest, Jest, Playwright, React Testing Library</span>
</div>
</div>
</section>
<section id="contact" class="section-block">
<div class="section-kicker" data-reveal><span>05</span> Contact</div>
<div data-reveal>
<p class="mb-5 inline-flex items-center gap-2 font-mono text-[11px] uppercase tracking-[0.1em] text-muted">
<span class="status-dot status-dot-live"></span>
Available for senior frontend engineering roles
</p>
<h2
class="mb-4 max-w-[500px] text-[26px] font-semibold leading-[1.2] tracking-[-0.025em] text-ink sm:text-[30px]"
>
Let's Connect.
</h2>
<p class="body-copy mb-8 max-w-[540px]">
I'm currently exploring roles in Toronto and remote with teams building frontend
systems, developer experience, or platform tooling. If that sounds close, feel
free to reach out.
</p>
<div class="flex flex-wrap items-center gap-x-4 gap-y-3">
<a
href="mailto:devmin88@gmail.com"
class="inline-flex items-center gap-2 rounded-md bg-ink px-4 py-2 text-[13px] font-medium text-bg transition-opacity hover:opacity-90"
>
<svg width="14" height="14" class="h-[14px] w-[14px]" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.75" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><rect x="3" y="5" width="18" height="14" rx="2" /><path d="m3 7 9 6 9-6" /></svg>
devmin88@gmail.com
</a>
<div class="flex items-center gap-5 text-[13px]">
<a href="/Shanmugharaj_Resume.pdf" target="_blank" rel="noopener" class="external-link">Resume<svg width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M13.5 6H5.25A2.25 2.25 0 0 0 3 8.25v10.5A2.25 2.25 0 0 0 5.25 21h10.5A2.25 2.25 0 0 0 18 18.75V10.5m-10.5 6L21 3m0 0h-5.25M21 3v5.25" /></svg></a>
<a href="https://linkedin.com/in/shanmugharaj" target="_blank" rel="noopener" class="external-link">LinkedIn<svg width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M13.5 6H5.25A2.25 2.25 0 0 0 3 8.25v10.5A2.25 2.25 0 0 0 5.25 21h10.5A2.25 2.25 0 0 0 18 18.75V10.5m-10.5 6L21 3m0 0h-5.25M21 3v5.25" /></svg></a>
<a href="https://github.com/devmin8" target="_blank" rel="noopener" class="external-link">GitHub<svg width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M13.5 6H5.25A2.25 2.25 0 0 0 3 8.25v10.5A2.25 2.25 0 0 0 5.25 21h10.5A2.25 2.25 0 0 0 18 18.75V10.5m-10.5 6L21 3m0 0h-5.25M21 3v5.25" /></svg></a>
</div>
</div>
</div>
</section>
</main>
<footer class="border-t border-line">
<div class="page-shell flex items-center justify-between py-6">
<a href="/" class="group flex items-center gap-2.5" aria-label="devmin.ca home">
<svg
width="18"
height="18"
class="h-[18px] w-[18px] shrink-0 text-ink"
viewBox="0 0 18 18"
fill="none"
aria-hidden="true"
>
<path
d="M3 13.5V4.5h3.15c2.82 0 4.65 1.77 4.65 4.5s-1.83 4.5-4.65 4.5H3Z"
fill="currentColor"
/>
<path d="M5.6 11.1h.7c1.22 0 1.95-.78 1.95-2.1S7.52 6.9 6.3 6.9h-.7v4.2Z" fill="var(--bg)" />
<path
d="M11.15 13.5V4.5h1.72l1.5 2.73 1.5-2.73H17.5v9h-1.9V8.4l-.88 1.6h-.75l-.92-1.6v5.1h-1.9Z"
fill="var(--accent)"
/>
</svg>
<span class="font-mono text-[12px] text-muted transition-colors group-hover:text-ink"
>devmin.ca</span
>
</a>
<span class="font-mono text-[12px] text-muted">Toronto - 2026</span>
</div>
</footer>
<script type="module" src="/src/main.ts"></script>
</body>
</html>