-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
89 lines (78 loc) · 4.37 KB
/
about.html
File metadata and controls
89 lines (78 loc) · 4.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile | Will Hermann</title>
<link href="https://api.fontshare.com/v2/css?f[]=editorial-new@400,700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=JetBrains+Mono:wght@400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="cursor-dot"></div>
<div class="cursor-outline"></div>
<header>
<div class="container nav-container">
<div class="logo">
<a href="index.html">WILL HERMANN_</a>
</div>
<nav>
<ul class="nav-menu">
<li><a href="index.html">Index</a></li>
<li><a href="projects.html">Archive</a></li>
<li><a href="about.html" class="active">Profile</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section class="section">
<div class="container">
<div style="display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;">
<!-- Left: Bio -->
<div>
<h1 style="margin-bottom: 3rem;">Profile_</h1>
<p style="margin-bottom: 2rem; font-size: 1.25rem; color: var(--text-lumen);">
I am an AI architect and researcher specializing in decentralized systems.
My work focuses on challenging big tech monopolies by building open-source
alternatives that restore user sovereignty.
</p>
<p style="margin-bottom: 2rem;">
With a BSc in Artificial Intelligence from the University of Groningen, I combine academic rigor with entrepreneurial drive.
My expertise spans from cognitive modeling (ACT-R) to full-stack engineering (RAG, Neo4j) and hardware innovation.
</p>
<a href="Will Hermann CV.pdf" class="btn btn-primary" target="_blank">Download CV</a>
</div>
<!-- Right: Timeline -->
<div class="timeline-section">
<span class="hero-label" style="margin-bottom: 2rem; display: block;">// EXPERIENCE LOG</span>
<div class="timeline-item">
<span class="timeline-year">2024 — 2025</span>
<h3>Lead Developer / <a href="https://linglang.app" target="_blank" style="text-decoration: underline; text-decoration-color: var(--accent-glow);">linglang.app</a></h3>
<p>Full-stack development of a conversational AI platform for adaptive education (React, Python, Neo4j).</p>
</div>
<div class="timeline-item">
<span class="timeline-year">2025</span>
<h3>Project Lead / AIfordable Groceries</h3>
<p>Transformed legacy systems into an AI-powered platform with predictive analytics and automated workflows.</p>
</div>
<div class="timeline-item">
<span class="timeline-year">2018 — 2022</span>
<h3>Product Designer / Purple Mountain</h3>
<p>Lead CAD designer. Secured U.S. Patent #11,220,244 for braking systems.</p>
</div>
<span class="hero-label" style="margin: 3rem 0 2rem; display: block;">// EDUCATION</span>
<div class="timeline-item">
<span class="timeline-year">2022 — 2025</span>
<h3>University of Groningen</h3>
<p>BSc Artificial Intelligence. Thesis: Agent-based Conversational Tutoring.</p>
</div>
</div>
</div>
</div>
</section>
</main>
<script src="js/script.js"></script>
</body>
</html>