-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
26 lines (26 loc) · 1018 Bytes
/
Copy path404.html
File metadata and controls
26 lines (26 loc) · 1018 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Page not found — Christian Tchuente</title>
<meta name="robots" content="noindex">
<style>
html,body{height:100%;margin:0}
body{display:flex;align-items:center;justify-content:center;
background:#0B0D12;color:#E6E8EC;font-family:'Inter',system-ui,sans-serif;text-align:center;padding:24px}
.code{font-family:ui-monospace,'JetBrains Mono',monospace;font-size:5rem;font-weight:700;
background:linear-gradient(100deg,#6D5EF6,#22D3EE);-webkit-background-clip:text;background-clip:text;color:transparent}
p{color:#98A0AD;margin:8px 0 24px}
a{display:inline-block;padding:11px 20px;border-radius:999px;color:#fff;font-weight:600;text-decoration:none;
background:linear-gradient(100deg,#6D5EF6,#8b7cff)}
</style>
</head>
<body>
<div>
<div class="code">404</div>
<p>This page doesn't exist.</p>
<a href="/">Back to home</a>
</div>
</body>
</html>