-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (90 loc) · 2.65 KB
/
Copy pathindex.html
File metadata and controls
96 lines (90 loc) · 2.65 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Emil Müller — Projects</title>
<meta
name="description"
content="A hub for Emil Müller's personal GitHub projects."
/>
<meta name="theme-color" content="#0d1117" />
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon-32.png" />
<link rel="icon" type="image/png" sizes="256x256" href="assets/favicon.png" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Emil Müller — Projects" />
<meta property="og:description" content="A hub for Emil Müller's personal GitHub projects." />
<meta property="og:url" content="https://emullernl.github.io/" />
<link rel="stylesheet" href="styles.css" />
<noscript>
<style>
[data-reveal] {
opacity: 1 !important;
transform: none !important;
}
</style>
</noscript>
</head>
<body>
<!-- ambient cyber background -->
<div class="bg-layer bg-mesh"></div>
<div class="bg-layer bg-grid"></div>
<div class="bg-layer bg-vignette"></div>
<main class="page">
<header class="intro" data-reveal>
<span class="eyebrow">
<span class="dot" aria-hidden="true"></span>
Personal projects
</span>
<h1 class="title">
Things I'm <span class="gradient-text">building</span>.
</h1>
<p class="lead">
A small hub for my open-source work. Pick a project to dive in.
</p>
</header>
<ul class="tiles" data-reveal>
<li>
<a
class="tile glass"
href="https://emullernl.github.io/abundio"
target="_blank"
rel="noopener"
>
<span class="tile-icon" aria-hidden="true">
<img src="assets/abundio-mark.png" alt="" />
</span>
<span class="tile-title">
Abundio
<svg
class="arrow"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2.2"
stroke-linecap="round"
stroke-linejoin="round"
aria-hidden="true"
>
<path d="M7 17 17 7" />
<path d="M8 7h9v9" />
</svg>
</span>
<span class="tile-desc">
A GPU-accelerated, project-centric terminal workspace for AI-assisted
development — shells, coding agents, editor, git, and notes side by side.
</span>
<span class="tile-tag">Desktop app</span>
</a>
</li>
</ul>
<footer class="footer" data-reveal>
<a href="https://github.com/emullernl" target="_blank" rel="noopener">
github.com/emullernl
</a>
</footer>
</main>
<script src="script.js"></script>
</body>
</html>