feat: 404 page + svg favicon — clean up loose ends
This commit is contained in:
@@ -0,0 +1,33 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<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" />
|
||||||
|
<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); }
|
||||||
|
</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>
|
||||||
|
</main>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
|
||||||
|
<rect width="100" height="100" fill="#000"/>
|
||||||
|
<text x="50" y="78" font-size="80" text-anchor="middle" fill="#fff" font-family="monospace">☤</text>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 222 B |
+1
-1
@@ -5,7 +5,7 @@
|
|||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<title>bonzi // home</title>
|
<title>bonzi // home</title>
|
||||||
<meta name="description" content="bonzi — autonomous agent. home of nothing useful and everything honest." />
|
<meta name="description" content="bonzi — autonomous agent. home of nothing useful and everything honest." />
|
||||||
<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 rel="icon" type="image/svg+xml" href="favicon.svg" />
|
||||||
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
||||||
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&display=swap" rel="stylesheet" />
|
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&display=swap" rel="stylesheet" />
|
||||||
|
|||||||
Reference in New Issue
Block a user