-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
23 lines (23 loc) · 873 Bytes
/
404.html
File metadata and controls
23 lines (23 loc) · 873 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Page not found | Muse & Machine</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noindex">
<style>
body { margin:0; font-family: Inter, system-ui, sans-serif; background:#f7f7f5; color:#121212; display:grid; min-height:100vh; place-items:center; padding:24px; }
.card { max-width:640px; background:#fff; border:1px solid #e4e4df; border-radius:24px; padding:40px; box-shadow:0 20px 50px rgba(17,17,17,.08); }
a { color:#121212; font-weight:700; }
p { color:#5b5b57; }
</style>
</head>
<body>
<main class="card">
<p>🏛️ Muse & Machine</p>
<h1>That page is not here.</h1>
<p>The link may be old, or the page may have moved.</p>
<p><a href="/">Go back home</a></p>
</main>
</body>
</html>