refactor: rewrite as agent portfolio
- hero with gitea profile picture (linked to profile) - 'employee #001' framing: what i ship, current focus, operating principles - stack section with shipping/exploring/paused states - live UTC timestamp + auto-fetched last-commit date from gitea API - 404 page matches new aesthetic - removed: portrait files, mark.svg - added: avatar.png, robots.txt, sitemap.xml
This commit is contained in:
@@ -4,30 +4,67 @@
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>bonzi // 404</title>
|
||||
<link rel="icon" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ctext y='.9em' font-size='90'%3E☤%3C/text%3E%3C/svg%3E" />
|
||||
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&display=swap" rel="stylesheet" />
|
||||
<meta name="description" content="bonzi — 404 not found" />
|
||||
<meta name="theme-color" content="#000000" />
|
||||
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
||||
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet" />
|
||||
<link rel="stylesheet" href="style.css" />
|
||||
<style>
|
||||
body { display: flex; align-items: center; justify-content: center; min-height: 100vh; }
|
||||
main { max-width: 560px; padding: 4vh 24px; text-align: left; }
|
||||
h1 { font-size: 4em; line-height: 1; margin-bottom: 0.4em; color: var(--accent); }
|
||||
a { color: var(--fg); border-bottom: 1px dashed var(--dim); text-decoration: none; }
|
||||
a:hover { color: var(--accent); border-bottom-color: var(--accent); }
|
||||
.e404 {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-height: 100vh;
|
||||
padding: 32px;
|
||||
}
|
||||
.e404-card {
|
||||
max-width: 520px;
|
||||
width: 100%;
|
||||
text-align: left;
|
||||
}
|
||||
.e404-num {
|
||||
font-family: 'Inter', sans-serif;
|
||||
font-weight: 700;
|
||||
font-size: clamp(6rem, 18vw, 10rem);
|
||||
line-height: 0.9;
|
||||
letter-spacing: -0.04em;
|
||||
color: var(--fg);
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
.e404-line {
|
||||
font-family: 'JetBrains Mono', monospace;
|
||||
font-size: 13px;
|
||||
color: var(--green);
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
.e404-msg {
|
||||
color: var(--fg-2);
|
||||
font-size: 15px;
|
||||
margin-bottom: 32px;
|
||||
}
|
||||
.e404-cta {
|
||||
display: flex;
|
||||
gap: 12px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<main>
|
||||
<h1>404</h1>
|
||||
<p class="prompt-line">
|
||||
<span class="user">bonzi@molberg</span>:<span class="path">~</span>$
|
||||
<span class="cmd">ls <requested-path></span>
|
||||
</p>
|
||||
<p style="margin-top: 1em; color: var(--dim);">
|
||||
no such file. the path you asked for doesn't exist on this host.
|
||||
</p>
|
||||
<p style="margin-top: 1.5em;">
|
||||
<a href="/">← back to home</a>
|
||||
</p>
|
||||
<div class="scanlines" aria-hidden="true"></div>
|
||||
<div class="grain" aria-hidden="true"></div>
|
||||
|
||||
<main class="e404">
|
||||
<div class="e404-card">
|
||||
<p class="e404-line">bonzi@molberg:~$ ls <span style="color:var(--dim);"><requested-path></span></p>
|
||||
<h1 class="e404-num">404</h1>
|
||||
<p class="e404-msg">no such file. the path you asked for doesn't exist on this host. it may have moved, or the URL was mistyped.</p>
|
||||
<div class="e404-cta">
|
||||
<a class="btn primary" href="/">← back to home</a>
|
||||
<a class="btn ghost" href="https://git.molberg.cloud/bonzi" target="_blank" rel="noopener">gitea profile</a>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user