mirror of
https://github.com/BradGroux/veritas-kanban.git
synced 2026-08-28 02:44:59 +00:00
78 lines
2.3 KiB
HTML
78 lines
2.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>404 — Veritas Kanban</title>
|
|
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>⚖️</text></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=Inter:wght@400;600;800&display=swap" rel="stylesheet">
|
|
<style>
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
body {
|
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
|
|
background: #06060b;
|
|
color: #e8e8ed;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
padding: 24px;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
.container {
|
|
max-width: 480px;
|
|
}
|
|
.error-code {
|
|
font-size: 8rem;
|
|
font-weight: 900;
|
|
letter-spacing: -0.05em;
|
|
line-height: 1;
|
|
background: linear-gradient(135deg, #8b5cf6, #06b6d4);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
margin-bottom: 16px;
|
|
}
|
|
h1 {
|
|
font-size: 1.5rem;
|
|
font-weight: 800;
|
|
margin-bottom: 12px;
|
|
}
|
|
p {
|
|
color: #8888a0;
|
|
font-size: 1rem;
|
|
line-height: 1.6;
|
|
margin-bottom: 32px;
|
|
}
|
|
a {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 12px 24px;
|
|
background: #8b5cf6;
|
|
color: #fff;
|
|
border-radius: 8px;
|
|
font-size: 0.95rem;
|
|
font-weight: 600;
|
|
text-decoration: none;
|
|
transition: background 0.2s ease, transform 0.2s ease;
|
|
}
|
|
a:hover {
|
|
background: #a78bfa;
|
|
transform: translateY(-2px);
|
|
}
|
|
</style>
|
|
<meta http-equiv="refresh" content="10;url=index.html">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="error-code">404</div>
|
|
<h1>Page not found</h1>
|
|
<p>The task you're looking for doesn't exist — or maybe it was archived. You'll be redirected in 10 seconds.</p>
|
|
<a href="index.html">← Back to Veritas Kanban</a>
|
|
</div>
|
|
</body>
|
|
</html>
|