-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
31 lines (31 loc) · 1.95 KB
/
404.html
File metadata and controls
31 lines (31 loc) · 1.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Not Found - SaneSales</title>
<link rel="icon" type="image/png" sizes="32x32" href="favicon.png">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<meta name="theme-color" content="#08080c">
<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=DM+Sans:wght@400;500;600&family=Playfair+Display:wght@600&display=swap" rel="stylesheet">
<style>
:root { --bg-primary: #08080c; --accent: #4f8ffa; --text-primary: #f5f5f8; --text-secondary: #c0c0d0; --border: #252530; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg-primary); color: var(--text-primary); min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 24px; }
h1 { font-family: 'Playfair Display', serif; font-size: 4rem; margin-bottom: 12px; color: var(--accent); }
p { color: var(--text-secondary); font-size: 1.15rem; margin-bottom: 32px; max-width: 400px; }
a { display: inline-block; padding: 14px 32px; background: var(--accent); color: #fff; text-decoration: none; border-radius: 12px; font-weight: 600; transition: transform 0.2s; }
a:hover { transform: translateY(-2px); }
.subtitle { font-size: 1.5rem; color: var(--text-secondary); margin-bottom: 8px; }
</style>
</head>
<body>
<h1>404</h1>
<p class="subtitle">That page went off the grid.</p>
<p>The page you're looking for doesn't exist. But your sales data is safe and sound on your device.</p>
<a href="/">Back to SaneSales</a>
</body>
</html>