-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
24 lines (24 loc) · 999 Bytes
/
404.html
File metadata and controls
24 lines (24 loc) · 999 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en" data-theme="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 — HeadyKey</title>
<style>
:root{--bg:#05050a;--text:#e8e8f0;--accent:#f59e0b;--muted:#9898a8}
*{margin:0;padding:0;box-sizing:border-box}
body{background:var(--bg);color:var(--text);font-family:'Inter',system-ui,sans-serif;min-height:100vh;display:flex;align-items:center;justify-content:center;text-align:center}
h1{font-size:5rem;background:linear-gradient(135deg,var(--accent),#fbbf24);-webkit-background-clip:text;-webkit-text-fill-color:transparent;margin-bottom:13px}
p{color:var(--muted);font-size:1.1rem;margin-bottom:21px}
a{color:var(--accent);text-decoration:none;font-weight:600}
a:hover{text-decoration:underline}
</style>
</head>
<body>
<div>
<h1>404</h1>
<p>This path doesn't exist in the HeadyKey sovereign identity layer.</p>
<a href="/">Return to HeadyKey</a> · <a href="/auth/">Sign In</a>
</div>
</body>
</html>