-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
747 lines (722 loc) · 54.4 KB
/
Copy pathindex.html
File metadata and controls
747 lines (722 loc) · 54.4 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
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Eric Klinkhammer</title>
<meta name="description" content="Software engineer, roboticist, and cheesemaker.">
<link rel="stylesheet" href="src/appropos.css">
<style>
/* Appropos.ai theme tokens */
:root {
--background: #0a0a0f;
--background-secondary: #111118;
--foreground: #fff;
--foreground-secondary: #a1a1aa;
--primary: #3b82f6;
--primary-hover: #2563eb;
--secondary: #8b5cf6;
--secondary-hover: #7c3aed;
--accent: #06b6d4;
--card: #1a1a24;
--card-hover: #222230;
--border: #ffffff26;
--border-hover: #ffffff4d;
--gradient-start: #3b82f6;
--gradient-middle: #8b5cf6;
--gradient-end: #ec4899;
--input-bg: #1a1a24;
--input-border: #ffffff40;
--input-focus: #3b82f6;
--font-geist-sans: "Geist", "Geist Fallback", system-ui, sans-serif;
--font-geist-mono: "Geist Mono", "Geist Mono Fallback", monospace;
--font-sans: var(--font-geist-sans);
--container-7xl: 85rem;
}
body {
font-family: var(--font-sans);
}
@media (min-width: 1024px) {
.lg-order-1 { order: 1; }
.lg-order-2 { order: 2; }
}
.gradient-text {
background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle), var(--gradient-end));
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
background-clip: text;
}
</style>
<script src="https://unpkg.com/htmx.org@1.9.6"></script>
</head>
<body class="antialiased bg-background text-foreground">
<!-- HEADER / NAV -->
<header class="fixed top-0 left-0 right-0 z-50 transition-all duration-500 py-5 border-b border-border" style="background-color: #0a0a0f;">
<div class="mx-auto px-4 sm:px-6 lg:px-8 max-w-7xl">
<nav class="flex items-center justify-between">
<a href="/" class="relative group cursor-pointer">
<span class="text-2xl font-black tracking-tight">
<span class="bg-gradient-to-r from-white via-primary to-secondary bg-clip-text text-transparent">Eric Klinkhammer</span>
</span>
</a>
<div class="hidden md:flex items-center gap-1">
<a href="/#projects" class="relative px-5 py-2 text-sm font-medium tracking-wide uppercase">
<span class="transition-colors duration-300 text-foreground-secondary hover:text-foreground">Projects</span>
</a>
<a href="/#blog" class="relative px-5 py-2 text-sm font-medium tracking-wide uppercase">
<span class="transition-colors duration-300 text-foreground-secondary hover:text-foreground">Blog</span>
</a>
<a href="/#appropos" class="relative px-5 py-2 text-sm font-medium tracking-wide uppercase">
<span class="transition-colors duration-300 text-foreground-secondary hover:text-foreground">Appropos</span>
</a>
<a href="/#career" class="relative px-5 py-2 text-sm font-medium tracking-wide uppercase">
<span class="transition-colors duration-300 text-foreground-secondary hover:text-foreground">Work</span>
</a>
</div>
<!-- Mobile hamburger -->
<button id="menu-toggle" class="md:hidden relative w-10 h-10 flex items-center justify-center rounded-lg bg-white/5 border border-white/10"
onclick="document.getElementById('mobile-menu').classList.toggle('hidden')">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="text-foreground">
<path d="M4 5h16"></path>
<path d="M4 12h16"></path>
<path d="M4 19h16"></path>
</svg>
</button>
</nav>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden md:hidden border-t border-border px-6 pb-4 mt-4">
<a href="/#projects" onclick="document.getElementById('mobile-menu').classList.add('hidden')" class="block py-2 text-foreground-secondary hover:text-foreground">Projects</a>
<a href="/#blog" onclick="document.getElementById('mobile-menu').classList.add('hidden')" class="block py-2 text-foreground-secondary hover:text-foreground">Blog</a>
<a href="/#appropos" onclick="document.getElementById('mobile-menu').classList.add('hidden')" class="block py-2 text-foreground-secondary hover:text-foreground">Appropos</a>
<a href="/#career" onclick="document.getElementById('mobile-menu').classList.add('hidden')" class="block py-2 text-foreground-secondary hover:text-foreground">Work</a>
</div>
</header>
<main>
<!-- HERO -->
<section class="relative min-h-screen flex items-center justify-center overflow-hidden">
<!-- Background blurs -->
<div class="absolute inset-0 overflow-hidden pointer-events-none">
<div class="absolute top-1/4 -left-1/4 w-96 h-96 bg-primary/20 rounded-full blur-3xl"></div>
<div class="absolute top-1/3 -right-1/4 w-96 h-96 bg-secondary/20 rounded-full blur-3xl"></div>
<div class="absolute bottom-1/4 left-1/3 w-72 h-72 bg-accent/10 rounded-full blur-3xl"></div>
</div>
<div class="mx-auto px-4 sm:px-6 lg:px-8 max-w-7xl relative z-10">
<div class="text-center max-w-4xl mx-auto">
<h1 class="text-4xl sm:text-5xl md:text-6xl lg:text-7xl font-bold leading-tight mb-6">
<span class="gradient-text">Eric Klinkhammer</span>
</h1>
<p class="text-lg sm:text-xl text-foreground-secondary max-w-2xl mx-auto mb-10">
I write code, build robots, and make cheese with robots.
</p>
<div class="flex flex-col sm:flex-row items-center justify-center gap-4">
<a href="https://github.com/eklinkhammer" target="_blank" rel="noopener noreferrer" class="relative inline-flex items-center justify-center font-semibold tracking-wide rounded-xl transition-all duration-300 overflow-hidden border-2 border-primary/50 bg-transparent text-foreground hover:border-primary hover:bg-primary/10 backdrop-blur-sm px-10 py-5 text-lg">
<span class="relative z-10 flex items-center gap-2">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true">
<path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/>
</svg>
GitHub
</span>
</a>
<a href="https://www.linkedin.com/in/eklinkhammer/" target="_blank" rel="noopener noreferrer" class="relative inline-flex items-center justify-center font-semibold tracking-wide rounded-xl transition-all duration-300 overflow-hidden border-2 border-primary/50 bg-transparent text-foreground hover:border-primary hover:bg-primary/10 backdrop-blur-sm px-10 py-5 text-lg">
<span class="relative z-10 flex items-center gap-2">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true">
<path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"/>
</svg>
LinkedIn
</span>
</a>
</div>
</div>
</div>
</section>
<!-- ============================================================ -->
<!-- PROJECTS -->
<!-- ============================================================ -->
<section id="projects" class="py-20 md:py-28 lg:py-32 bg-background-secondary">
<div class="mx-auto px-4 sm:px-6 lg:px-8 max-w-7xl">
<div class="text-center mb-16">
<span class="text-primary font-medium mb-4 block">My Projects</span>
<h2 class="text-3xl sm:text-4xl md:text-5xl font-bold mb-4">What I'm <span class="gradient-text">Building</span></h2>
</div>
<div class="space-y-24">
<!-- Splendor -->
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12 lg:gap-20 items-center">
<div>
<h3 class="text-2xl font-bold mb-3">Splendor</h3>
<img src="images/splendor.png" alt="Splendor" class="w-full h-64 object-cover rounded-2xl border-2 border-border">
</div>
<div class="space-y-4">
<div class="bg-card border border-border rounded-2xl p-6 hover:bg-card-hover hover:border-border-hover transition-all duration-300">
<div class="flex items-start gap-4">
<div class="w-12 h-12 rounded-lg bg-secondary/10 flex items-center justify-center flex-shrink-0">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-6 h-6 text-secondary"><path d="M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"></path><path d="M14 2v4a2 2 0 0 0 2 2h4"></path></svg>
</div>
<div>
<h4 class="text-lg font-semibold mb-1">About</h4>
<p class="text-foreground-secondary text-sm">A full implementation of the Renaissance-era gem trading board game. Collect gems, purchase development cards, and attract nobles to earn prestige points. Features a Haskell game engine backend with a React TypeScript web client, supporting multiplayer lobbies, invite sessions, and AI opponents.</p>
</div>
</div>
</div>
<a href="https://splendor.voltvoice.io" class="block bg-card border border-border rounded-2xl p-6 hover:bg-card-hover hover:border-border-hover transition-all duration-300">
<div class="flex items-start gap-4">
<div class="w-12 h-12 rounded-lg bg-primary/10 flex items-center justify-center flex-shrink-0">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-6 h-6 text-primary"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line></svg>
</div>
<div>
<h4 class="text-lg font-semibold mb-1">Try It Out</h4>
<p class="text-foreground-secondary text-sm">Play Splendor online — create a lobby, invite friends, or challenge the AI.</p>
</div>
</div>
</a>
<a href="blog/vibe-coding-haskell.html" class="block bg-card border border-border rounded-2xl p-6 hover:bg-card-hover hover:border-border-hover transition-all duration-300">
<div class="flex items-start gap-4">
<div class="w-12 h-12 rounded-lg bg-secondary/10 flex items-center justify-center flex-shrink-0">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-6 h-6 text-secondary"><path d="M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"></path><path d="M14 2v4a2 2 0 0 0 2 2h4"></path></svg>
</div>
<div>
<h4 class="text-lg font-semibold mb-1">Related Blog Post — Are More Compile Time Checks Helpful?</h4>
<p class="text-foreground-secondary text-sm">AI has the same failure modes as a junior engineer. Strict types, aggressive compilers, and comprehensive tests keep both in line.</p>
</div>
</div>
</a>
<div class="bg-card border border-border rounded-2xl p-6 hover:bg-card-hover hover:border-border-hover transition-all duration-300">
<div class="flex items-start gap-4">
<div class="w-12 h-12 rounded-lg bg-secondary/10 flex items-center justify-center flex-shrink-0">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-6 h-6 text-secondary"><polyline points="16 18 22 12 16 6"></polyline><polyline points="8 6 2 12 8 18"></polyline></svg>
</div>
<div>
<h4 class="text-lg font-semibold mb-1">Tech Stack</h4>
<div class="flex flex-wrap gap-3 mt-1">
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">Haskell</span>
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">React</span>
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">TypeScript</span>
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">Docker</span>
</div>
</div>
</div>
</div>
</div>
</div>
<hr style="border: none; height: 4px; background: var(--secondary); margin: 3rem 0; border-radius: 2px;">
<!-- EvoFactory -->
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12 lg:gap-20 items-center">
<div class="lg-order-2">
<h3 class="text-2xl font-bold mb-3">EvoFactory</h3>
<img src="images/evofactory.png" alt="EvoFactory" class="w-full h-64 object-cover rounded-2xl border-2 border-border">
</div>
<div class="space-y-4 lg-order-1">
<div class="bg-card border border-border rounded-2xl p-6 hover:bg-card-hover hover:border-border-hover transition-all duration-300">
<div class="flex items-start gap-4">
<div class="w-12 h-12 rounded-lg bg-secondary/10 flex items-center justify-center flex-shrink-0">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-6 h-6 text-secondary"><path d="M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"></path><path d="M14 2v4a2 2 0 0 0 2 2h4"></path></svg>
</div>
<div>
<h4 class="text-lg font-semibold mb-1">About</h4>
<p class="text-foreground-secondary text-sm">A real-time cell biology simulation game with Factorio-style automation at a cellular scale. Control a living cell in a procedurally generated world — absorb resources, build organelles, program gene regulation rules, and evolve through a biology-inspired tech tree. Features two perspectives: a dimetric world view for resource gathering and an interior view for organelle management. Rust handles the physics simulation and crafting logic via GDExtension.</p>
</div>
</div>
</div>
<a href="blog/evofactory-taste.html" class="block bg-card border border-border rounded-2xl p-6 hover:bg-card-hover hover:border-border-hover transition-all duration-300">
<div class="flex items-start gap-4">
<div class="w-12 h-12 rounded-lg bg-secondary/10 flex items-center justify-center flex-shrink-0">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-6 h-6 text-secondary"><path d="M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"></path><path d="M14 2v4a2 2 0 0 0 2 2h4"></path></svg>
</div>
<div>
<h4 class="text-lg font-semibold mb-1">Related Blog Post — When Humans Have to Be in the Loop Still</h4>
<p class="text-foreground-secondary text-sm">Tests catch correctness. They can't catch whether a game feels good to play.</p>
</div>
</div>
</a>
<div class="bg-card border border-border rounded-2xl p-6 hover:bg-card-hover hover:border-border-hover transition-all duration-300">
<div class="flex items-start gap-4">
<div class="w-12 h-12 rounded-lg bg-secondary/10 flex items-center justify-center flex-shrink-0">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-6 h-6 text-secondary"><polyline points="16 18 22 12 16 6"></polyline><polyline points="8 6 2 12 8 18"></polyline></svg>
</div>
<div>
<h4 class="text-lg font-semibold mb-1">Tech Stack</h4>
<div class="flex flex-wrap gap-3 mt-1">
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">Godot 4</span>
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">Rust</span>
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">GDExtension</span>
</div>
</div>
</div>
</div>
</div>
</div>
<hr style="border: none; height: 4px; background: var(--secondary); margin: 3rem 0; border-radius: 2px;">
<!-- Meeting Minutes -->
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12 lg:gap-20 items-center">
<div>
<h3 class="text-2xl font-bold mb-3">Meeting Minutes</h3>
<img src="images/meetings.png" alt="Meeting Minutes" class="w-full h-64 object-cover rounded-2xl border-2 border-border">
</div>
<div class="space-y-4">
<div class="bg-card border border-border rounded-2xl p-6 hover:bg-card-hover hover:border-border-hover transition-all duration-300">
<div class="flex items-start gap-4">
<div class="w-12 h-12 rounded-lg bg-secondary/10 flex items-center justify-center flex-shrink-0">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-6 h-6 text-secondary"><path d="M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"></path><path d="M14 2v4a2 2 0 0 0 2 2h4"></path></svg>
</div>
<div>
<h4 class="text-lg font-semibold mb-1">About</h4>
<p class="text-foreground-secondary text-sm">Transforms board meeting recordings into formal meeting minutes. Transcribes audio with speaker diarization to identify who said what, then uses AI to generate structured minutes with attendees, motions, votes, and action items.</p>
</div>
</div>
</div>
<div class="bg-card border border-border rounded-2xl p-6 hover:bg-card-hover hover:border-border-hover transition-all duration-300">
<div class="flex items-start gap-4">
<div class="w-12 h-12 rounded-lg bg-secondary/10 flex items-center justify-center flex-shrink-0">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-6 h-6 text-secondary"><polyline points="16 18 22 12 16 6"></polyline><polyline points="8 6 2 12 8 18"></polyline></svg>
</div>
<div>
<h4 class="text-lg font-semibold mb-1">Tech Stack</h4>
<div class="flex flex-wrap gap-3 mt-1">
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">Python</span>
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">FastAPI</span>
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">WhisperX</span>
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">pyannote</span>
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">Claude</span>
</div>
</div>
</div>
</div>
</div>
</div>
<hr style="border: none; height: 4px; background: var(--secondary); margin: 3rem 0; border-radius: 2px;">
<!-- Mi Pueblo -->
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12 lg:gap-20 items-center">
<div class="lg-order-2">
<h3 class="text-2xl font-bold mb-3">Mi Pueblo</h3>
<img src="images/mipueblo.png" alt="Mi Pueblo" class="h-64 object-contain mx-auto rounded-2xl border-2 border-border">
</div>
<div class="space-y-4 lg-order-1">
<div class="bg-card border border-border rounded-2xl p-6 hover:bg-card-hover hover:border-border-hover transition-all duration-300">
<div class="flex items-start gap-4">
<div class="w-12 h-12 rounded-lg bg-secondary/10 flex items-center justify-center flex-shrink-0">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-6 h-6 text-secondary"><path d="M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"></path><path d="M14 2v4a2 2 0 0 0 2 2h4"></path></svg>
</div>
<div>
<h4 class="text-lg font-semibold mb-1">About</h4>
<p class="text-foreground-secondary text-sm">Real-time family location sharing app. Create geofences with smart notifications, manage groups with invite links, and always know where your people are. Multi-language support in English and Spanish.</p>
</div>
</div>
</div>
<a href="blog/mi-pueblo-flutter-elixir.html" class="block bg-card border border-border rounded-2xl p-6 hover:bg-card-hover hover:border-border-hover transition-all duration-300">
<div class="flex items-start gap-4">
<div class="w-12 h-12 rounded-lg bg-secondary/10 flex items-center justify-center flex-shrink-0">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-6 h-6 text-secondary"><path d="M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"></path><path d="M14 2v4a2 2 0 0 0 2 2h4"></path></svg>
</div>
<div>
<h4 class="text-lg font-semibold mb-1">Related Blog Post — Do You Need to Know the Language for It to Be the Best Tool for the Job?</h4>
<p class="text-foreground-secondary text-sm">Building a production app with Flutter and Elixir — two languages I'd never used before.</p>
</div>
</div>
</a>
<div class="bg-card border border-border rounded-2xl p-6 hover:bg-card-hover hover:border-border-hover transition-all duration-300">
<div class="flex items-start gap-4">
<div class="w-12 h-12 rounded-lg bg-secondary/10 flex items-center justify-center flex-shrink-0">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-6 h-6 text-secondary"><polyline points="16 18 22 12 16 6"></polyline><polyline points="8 6 2 12 8 18"></polyline></svg>
</div>
<div>
<h4 class="text-lg font-semibold mb-1">Tech Stack</h4>
<div class="flex flex-wrap gap-3 mt-1">
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">Elixir</span>
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">Phoenix</span>
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">Flutter</span>
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">PostGIS</span>
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">WebSockets</span>
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">RevenueCat</span>
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">FCM</span>
</div>
</div>
</div>
</div>
</div>
</div>
<hr style="border: none; height: 4px; background: var(--secondary); margin: 3rem 0; border-radius: 2px;">
<!-- Cutting Boards -->
<div>
<h3 class="text-2xl font-bold mb-3">Cutting Boards</h3>
<p class="text-foreground-secondary mb-8 text-lg">I also enjoy working with real things. Each board is individually designed and handcrafted from hardwoods like walnut, maple, cherry, and purpleheart.</p>
<style>
.carousel-track {
display: flex;
align-items: center;
justify-content: center;
gap: 0.75rem;
padding: 2rem 0;
}
.carousel-item {
flex: 1 1 0;
max-width: 12rem;
height: 16rem;
border-radius: 1rem;
overflow: hidden;
border: 2px solid var(--border);
cursor: pointer;
transition: all 0.4s ease;
position: relative;
}
.carousel-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
}
.carousel-item:hover {
flex: 2.5 1 0;
max-width: 28rem;
border-color: var(--primary);
box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}
.carousel-item:hover img {
transform: scale(1.05);
}
</style>
<div class="carousel-track">
<div class="carousel-item">
<img src="images/board-hexagon.jpg" alt="Hexagon cutting board">
</div>
<div class="carousel-item">
<img src="images/board-striped.jpg" alt="Striped cutting board">
</div>
<div class="carousel-item">
<img src="images/board-checker.jpg" alt="Checker cutting board">
</div>
<div class="carousel-item">
<img src="images/board-chaotic.jpg" alt="Chaotic cutting board">
</div>
<div class="carousel-item">
<img src="images/board-walnut.jpg" alt="Walnut cutting board">
</div>
</div>
</div>
<hr style="border: none; height: 4px; background: var(--secondary); margin: 3rem 0; border-radius: 2px;">
<!-- Voltvoice -->
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12 lg:gap-20 items-center">
<div class="lg-order-2">
<h3 class="text-2xl font-bold mb-3">Voltvoice</h3>
<img src="images/voltvoice.svg" alt="Voltvoice" class="w-full h-64 object-contain rounded-2xl border-2 border-border bg-card p-4">
</div>
<div class="space-y-4 lg-order-1">
<div class="bg-card border border-border rounded-2xl p-6 hover:bg-card-hover hover:border-border-hover transition-all duration-300">
<div class="flex items-start gap-4">
<div class="w-12 h-12 rounded-lg bg-secondary/10 flex items-center justify-center flex-shrink-0">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-6 h-6 text-secondary"><path d="M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"></path><path d="M14 2v4a2 2 0 0 0 2 2h4"></path></svg>
</div>
<div>
<h4 class="text-lg font-semibold mb-1">About</h4>
<p class="text-foreground-secondary text-sm">A Bitcoin/Lightning donation platform for streamers — like YouTube SuperChat, but self-custodial. Creators accept cryptocurrency donations with real-time notifications and full control of their wallets, powered by BTCPay Server.</p>
</div>
</div>
</div>
<a href="https://voltvoice.io" target="_blank" rel="noopener noreferrer" class="block bg-card border border-border rounded-2xl p-6 hover:bg-card-hover hover:border-border-hover transition-all duration-300">
<div class="flex items-start gap-4">
<div class="w-12 h-12 rounded-lg bg-primary/10 flex items-center justify-center flex-shrink-0">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-6 h-6 text-primary"><path d="M15 3h6v6"></path><path d="M10 14 21 3"></path><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path></svg>
</div>
<div>
<h4 class="text-lg font-semibold mb-1">Try It Out</h4>
<p class="text-foreground-secondary text-sm">voltvoice.io</p>
</div>
</div>
</a>
<div class="bg-card border border-border rounded-2xl p-6 hover:bg-card-hover hover:border-border-hover transition-all duration-300">
<div class="flex items-start gap-4">
<div class="w-12 h-12 rounded-lg bg-secondary/10 flex items-center justify-center flex-shrink-0">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-6 h-6 text-secondary"><polyline points="16 18 22 12 16 6"></polyline><polyline points="8 6 2 12 8 18"></polyline></svg>
</div>
<div>
<h4 class="text-lg font-semibold mb-1">Tech Stack</h4>
<div class="flex flex-wrap gap-3 mt-1">
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">React</span>
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">Go</span>
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">Lightning</span>
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">BTCPay</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- BLOG -->
<section id="blog" class="py-20 md:py-28 lg:py-32 bg-background">
<div class="mx-auto px-4 sm:px-6 lg:px-8 max-w-7xl">
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12 lg:gap-20 items-center">
<div>
<span class="text-primary font-medium mb-4 block">My Blog</span>
<h2 class="text-3xl sm:text-4xl md:text-5xl font-bold mb-6">My Technical Musings in an <span class="gradient-text">AI Age</span></h2>
<p class="text-foreground-secondary mb-6 text-lg">AI is the most transformational tool for software engineers since we switched from punch cards. It's changed a lot about my workflow and how I approach the craft.</p>
<p class="text-foreground-secondary mb-8">Here's where I document my thoughts with each project.</p>
<div class="grid grid-cols-2 gap-3">
<div class="flex items-center gap-2">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-5 h-5 text-primary flex-shrink-0">
<circle cx="12" cy="12" r="10"></circle>
<path d="m9 12 2 2 4-4"></path>
</svg>
<span class="text-sm text-foreground-secondary">Agile development methodology</span>
</div>
<div class="flex items-center gap-2">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-5 h-5 text-primary flex-shrink-0">
<circle cx="12" cy="12" r="10"></circle>
<path d="m9 12 2 2 4-4"></path>
</svg>
<span class="text-sm text-foreground-secondary">Transparent communication</span>
</div>
<div class="flex items-center gap-2">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-5 h-5 text-primary flex-shrink-0">
<circle cx="12" cy="12" r="10"></circle>
<path d="m9 12 2 2 4-4"></path>
</svg>
<span class="text-sm text-foreground-secondary">Dedicated project managers</span>
</div>
<div class="flex items-center gap-2">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-5 h-5 text-primary flex-shrink-0">
<circle cx="12" cy="12" r="10"></circle>
<path d="m9 12 2 2 4-4"></path>
</svg>
<span class="text-sm text-foreground-secondary">Post-launch support</span>
</div>
<div class="flex items-center gap-2">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-5 h-5 text-primary flex-shrink-0">
<circle cx="12" cy="12" r="10"></circle>
<path d="m9 12 2 2 4-4"></path>
</svg>
<span class="text-sm text-foreground-secondary">Scalable architecture</span>
</div>
<div class="flex items-center gap-2">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-5 h-5 text-primary flex-shrink-0">
<circle cx="12" cy="12" r="10"></circle>
<path d="m9 12 2 2 4-4"></path>
</svg>
<span class="text-sm text-foreground-secondary">Modern tech stack</span>
</div>
</div>
</div>
<div class="space-y-6">
<a href="blog/evofactory-taste.html" class="block bg-card border border-border rounded-2xl p-6 hover:bg-card-hover hover:border-border-hover transition-all duration-300">
<div class="flex items-start gap-4">
<div class="w-12 h-12 rounded-lg bg-secondary/10 flex items-center justify-center flex-shrink-0">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-6 h-6 text-secondary">
<path d="M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"></path>
<path d="M14 2v4a2 2 0 0 0 2 2h4"></path>
</svg>
</div>
<div>
<h3 class="text-lg font-semibold mb-2">When Humans Have to Be in the Loop Still</h3>
<p class="text-foreground-secondary">Tests catch correctness. They can't catch whether a game feels good to play.</p>
</div>
</div>
</a>
<a href="blog/vibe-coding-haskell.html" class="block bg-card border border-border rounded-2xl p-6 hover:bg-card-hover hover:border-border-hover transition-all duration-300">
<div class="flex items-start gap-4">
<div class="w-12 h-12 rounded-lg bg-secondary/10 flex items-center justify-center flex-shrink-0">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-6 h-6 text-secondary">
<path d="M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"></path>
<path d="M14 2v4a2 2 0 0 0 2 2h4"></path>
</svg>
</div>
<div>
<h3 class="text-lg font-semibold mb-2">Are More Compile Time Checks Helpful?</h3>
<p class="text-foreground-secondary">AI has the same failure modes as a junior engineer. Strict types, aggressive compilers, and comprehensive tests keep both in line.</p>
</div>
</div>
</a>
<a href="blog/resume-pipeline.html" class="block bg-card border border-border rounded-2xl p-6 hover:bg-card-hover hover:border-border-hover transition-all duration-300">
<div class="flex items-start gap-4">
<div class="w-12 h-12 rounded-lg bg-secondary/10 flex items-center justify-center flex-shrink-0">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-6 h-6 text-secondary">
<path d="M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"></path>
<path d="M14 2v4a2 2 0 0 0 2 2h4"></path>
</svg>
</div>
<div>
<h3 class="text-lg font-semibold mb-2">Building a Resume Tailoring Pipeline with Claude Code</h3>
<p class="text-foreground-secondary">A master resume, a slash command, an ATS validator, and a generate-validate loop that turns job postings into tailored PDFs.</p>
</div>
</div>
</a>
<a href="/?page=/pages/blog" class="block bg-gradient-to-r from-primary/10 to-secondary/10 border border-border rounded-2xl p-6 hover:border-border-hover transition-all duration-300 group">
<p class="text-foreground font-medium flex items-center gap-2">See all blog posts <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="group-hover:translate-x-1 transition-transform"><path d="M5 12h14"></path><path d="m12 5 7 7-7 7"></path></svg></p>
</a>
</div>
</div>
</div>
</section>
<!-- CAREER -->
<section id="career" class="py-20 md:py-28 lg:py-32 bg-background-secondary">
<div class="mx-auto px-4 sm:px-6 lg:px-8 max-w-7xl">
<div class="text-center mb-16">
<span class="text-primary font-medium mb-4 block">My Career</span>
<h2 class="text-3xl sm:text-4xl md:text-5xl font-bold mb-4">What People Have <span class="gradient-text">Paid Me</span> To Build</h2>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<!-- Oversize -->
<div class="bg-card border-2 border-border rounded-2xl p-6 transition-all duration-300 hover:bg-card-hover hover:border-border-hover">
<h3 class="text-xl font-bold mb-2">RouteMyPermit</h3>
<p class="text-foreground-secondary text-sm mb-4">AI-powered permit route converter for oversize/overweight trucking. Carriers upload PDF permits and the system extracts route data, geocodes highways and mileposts across 13+ states, and generates interactive maps with turn-by-turn directions and shareable Google Maps links.</p>
<div class="flex flex-wrap gap-3">
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">Python</span>
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">FastAPI</span>
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">PostGIS</span>
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">OSRM</span>
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">ArcGIS LRS</span>
</div>
</div>
<!-- Recruiter -->
<div class="bg-card border-2 border-border rounded-2xl p-6 transition-all duration-300 hover:bg-card-hover hover:border-border-hover">
<h3 class="text-xl font-bold mb-2">AI-Powered Logistics Recruiter</h3>
<p class="text-foreground-secondary text-sm mb-4">AI-powered driver recruitment platform using verified ELD data. Instead of self-reported resumes, recruiters search GPS-verified miles, Hours of Service compliance, weather experience, and daily driving patterns. Features an interactive globe UI and natural language search via MCP.</p>
<div class="flex flex-wrap gap-3">
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">Next.js</span>
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">MCP</span>
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">PostgreSQL</span>
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">Mapbox GL</span>
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">Claude</span>
</div>
</div>
<!-- Honk -->
<div class="bg-card border-2 border-border rounded-2xl p-6 transition-all duration-300 hover:bg-card-hover hover:border-border-hover">
<h3 class="text-xl font-bold mb-2">Honk</h3>
<p class="text-foreground-secondary text-sm mb-4">Driver-owned trucking profile platform. Converts GPS-backed driving data into verified career records with real-time location tracking, HOS compliance monitoring, social leaderboards, and ELD provider aggregation. Mobile-first with a consumer-grade design philosophy.</p>
<div class="flex flex-wrap gap-3">
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">Next.js</span>
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">React Native</span>
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">Expo</span>
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">Convex</span>
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">Mapbox GL</span>
</div>
</div>
<!-- RoboWrangle -->
<div class="bg-card border-2 border-border rounded-2xl p-6 transition-all duration-300 hover:bg-card-hover hover:border-border-hover">
<h3 class="text-xl font-bold mb-2">RoboWrangle @ Amazon Robotics</h3>
<p class="text-foreground-secondary text-sm mb-4">Orchestration tooling for warehouse robotic systems at Amazon Robotics. Built software for coordinating robotic arms and gantry systems in fulfillment centers.</p>
<div class="flex flex-wrap gap-3">
<span class="text-sm px-3 py-1 rounded-full bg-primary/10 text-primary">Amazon Robotics</span>
</div>
</div>
</div>
</div>
</section>
<!-- APPROPOS / BUILD WITH ME -->
<section id="appropos" class="py-20 md:py-28 lg:py-32 bg-background">
<div class="mx-auto px-4 sm:px-6 lg:px-8 max-w-7xl">
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12 lg:gap-20">
<div>
<span class="text-primary font-medium mb-4 block">Appropos</span>
<h2 class="text-3xl sm:text-4xl md:text-5xl font-bold mb-6">Let's <span class="gradient-text">Build</span> Together</h2>
<p class="text-foreground-secondary mb-8 text-lg">Appropos is a software consultancy I run with Jeff Pelton, specializing in AI-powered projects. Whether you need intelligent automation, LLM integrations, or full-stack product development — we can help.</p>
<div class="space-y-4">
<a href="mailto:hello@appropos.ai" class="flex items-center gap-4 p-4 rounded-xl bg-card border border-border hover:bg-card-hover hover:border-border-hover transition-all duration-300 group">
<div class="w-12 h-12 rounded-lg bg-primary/10 flex items-center justify-center group-hover:bg-primary/20 transition-colors">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-5 h-5 text-primary">
<path d="m22 7-8.991 5.727a2 2 0 0 1-2.009 0L2 7"></path>
<rect x="2" y="4" width="20" height="16" rx="2"></rect>
</svg>
</div>
<div>
<div class="text-sm text-foreground-secondary">Email</div>
<div class="font-medium">hello@appropos.ai</div>
</div>
</a>
<a href="https://appropos.ai/book/" class="flex items-center gap-4 p-4 rounded-xl bg-card border border-border hover:bg-card-hover hover:border-border-hover transition-all duration-300 group">
<div class="w-12 h-12 rounded-lg bg-primary/10 flex items-center justify-center group-hover:bg-primary/20 transition-colors">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-5 h-5 text-primary">
<path d="M8 2v4"></path>
<path d="M16 2v4"></path>
<rect width="18" height="18" x="3" y="4" rx="2"></rect>
<path d="M3 10h18"></path>
</svg>
</div>
<div>
<div class="text-sm text-foreground-secondary">Book a Call</div>
<div class="font-medium">Schedule an intro call</div>
</div>
</a>
</div>
</div>
<div class="bg-card border-2 border-border rounded-2xl p-6 sm:p-8 shadow-lg shadow-black/20">
<form class="space-y-6">
<div>
<label for="name" class="block text-sm font-medium mb-2">Name <span class="text-primary">*</span></label>
<input type="text" id="name" class="w-full px-4 py-3 rounded-lg bg-input-bg border-2 text-foreground border-input-border focus:border-input-focus focus:ring-2 focus:ring-input-focus/30 outline-none transition-all placeholder:text-foreground-secondary/60" placeholder="John Doe" name="name">
</div>
<div>
<label for="email" class="block text-sm font-medium mb-2">Email <span class="text-primary">*</span></label>
<input type="email" id="email" class="w-full px-4 py-3 rounded-lg bg-input-bg border-2 text-foreground border-input-border focus:border-input-focus focus:ring-2 focus:ring-input-focus/30 outline-none transition-all placeholder:text-foreground-secondary/60" placeholder="john@example.com" name="email">
</div>
<div>
<label for="message" class="block text-sm font-medium mb-2">Message <span class="text-primary">*</span></label>
<textarea id="message" rows="5" name="message" class="w-full px-4 py-3 rounded-lg bg-input-bg border-2 text-foreground border-input-border focus:border-input-focus focus:ring-2 focus:ring-input-focus/30 outline-none transition-all resize-none placeholder:text-foreground-secondary/60" placeholder="Tell us about your project..."></textarea>
</div>
<button class="relative inline-flex items-center justify-center font-semibold tracking-wide rounded-xl transition-all duration-300 overflow-hidden bg-gradient-to-r from-primary via-secondary to-accent text-white shadow-lg shadow-primary/30 hover:shadow-xl hover:shadow-primary/40 border border-white/20 backdrop-blur-sm px-10 py-5 text-lg w-full" type="submit">
<span class="relative z-10 flex items-center gap-2">
Send Message
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="ml-2 w-5 h-5">
<path d="M14.536 21.686a.5.5 0 0 0 .937-.024l6.5-19a.496.496 0 0 0-.635-.635l-19 6.5a.5.5 0 0 0-.024.937l7.93 3.18a2 2 0 0 1 1.112 1.11z"></path>
<path d="m21.854 2.147-10.94 10.939"></path>
</svg>
</span>
</button>
</form>
</div>
</div>
</div>
</section>
</main>
<!-- FOOTER -->
<footer class="bg-background-secondary border-t border-border py-12">
<div class="mx-auto px-4 sm:px-6 lg:px-8 max-w-7xl">
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 items-center">
<div class="text-center md:text-left">
<a href="/" class="text-xl font-bold gradient-text cursor-pointer inline-block">Eric Klinkhammer</a>
<p class="text-foreground-secondary text-sm mt-2">© 2026 Eric Klinkhammer</p>
</div>
<div class="flex justify-center gap-6">
<a href="/#projects" class="text-foreground-secondary hover:text-foreground text-sm transition-colors duration-200">Projects</a>
<a href="/?page=/pages/blog" class="text-foreground-secondary hover:text-foreground text-sm transition-colors duration-200">Blog</a>
<a href="/#career" class="text-foreground-secondary hover:text-foreground text-sm transition-colors duration-200">Career</a>
<a href="/#contact" class="text-foreground-secondary hover:text-foreground text-sm transition-colors duration-200">Contact</a>
</div>
<div class="flex justify-center md:justify-end gap-4">
<a href="https://github.com/eklinkhammer" aria-label="GitHub" class="text-foreground-secondary hover:text-primary p-2 rounded-lg hover:bg-card transition-all duration-200">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="currentColor">
<path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/>
</svg>
</a>
<a href="https://www.linkedin.com/in/eklinkhammer/" aria-label="LinkedIn" class="text-foreground-secondary hover:text-primary p-2 rounded-lg hover:bg-card transition-all duration-200">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="currentColor">
<path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"/>
</svg>
</a>
</div>
</div>
</div>
</footer>
<div id="site-shell"></div>
<script>
(function() {
var params = new URLSearchParams(window.location.search);
var page = params.get('page');
if (page) {
var file = page.replace(/^\//, '') + '.html';
fetch(file)
.then(function(r) { return r.text(); })
.then(function(html) {
html = html.replace(/<script>[\s\S]*?<\/script>/, '');
var main = document.querySelector('main');
main.innerHTML = '<div style="padding-top:7rem;padding-bottom:4rem;max-width:48rem;margin:0 auto;padding-left:1rem;padding-right:1rem;">'
+ html
+ '</div>';
document.querySelector('footer').style.display = 'none';
window.scrollTo({top: 0, behavior: 'instant'});
});
}
})();
</script>
</body>
</html>