Tooling
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
<!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 — World Orogen</title>
|
||||
<meta name="robots" content="noindex">
|
||||
<style>
|
||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||
body {
|
||||
background: #030308; color: #fff;
|
||||
font-family: 'Segoe UI', system-ui, sans-serif;
|
||||
display: flex; align-items: center; justify-content: center;
|
||||
min-height: 100vh; text-align: center; padding: 20px;
|
||||
}
|
||||
.card { max-width: 480px; }
|
||||
h1 { font-size: 72px; margin-bottom: 8px; }
|
||||
h2 { font-size: 22px; font-weight: 600; margin-bottom: 12px; color: #ccd; }
|
||||
p { color: #889; margin-bottom: 24px; line-height: 1.6; }
|
||||
a {
|
||||
display: inline-block; padding: 12px 28px;
|
||||
background: rgba(80, 140, 255, 0.15); color: #7ab;
|
||||
border: 1px solid rgba(80, 140, 255, 0.3); border-radius: 8px;
|
||||
text-decoration: none; font-weight: 500; transition: background 0.2s;
|
||||
}
|
||||
a:hover { background: rgba(80, 140, 255, 0.25); }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="card">
|
||||
<h1>404</h1>
|
||||
<h2>This planet doesn't exist yet</h2>
|
||||
<p>The page you're looking for wasn't found. Head back to World Orogen and generate a new world instead.</p>
|
||||
<a href="/">Build a New World</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user