Initial commit
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
35
nginx/html/404.html
Normal file
35
nginx/html/404.html
Normal file
@@ -0,0 +1,35 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>404 Not Found — Eggtracker</title>
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
<style>
|
||||
.error-center { text-align: center; padding: 5rem 1rem; }
|
||||
.error-center .code { font-size: 5rem; font-weight: 700; color: var(--border); line-height: 1; }
|
||||
.error-center p { color: var(--muted); margin: 1rem 0 2rem; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<nav class="nav">
|
||||
<a class="nav-brand" href="/">🥚 Eggtracker</a>
|
||||
<ul class="nav-links">
|
||||
<li><a href="/">Dashboard</a></li>
|
||||
<li><a href="/log">Log Eggs</a></li>
|
||||
<li><a href="/history">History</a></li>
|
||||
<li><a href="/flock">Flock</a></li>
|
||||
<li><a href="/budget">Budget</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<main class="container">
|
||||
<div class="error-center">
|
||||
<div class="code">404</div>
|
||||
<h1>Page not found</h1>
|
||||
<p>The page you're looking for doesn't exist.</p>
|
||||
<a href="/" class="btn btn-primary">Go to Dashboard</a>
|
||||
</div>
|
||||
</main>
|
||||
<script src="/js/api.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user