-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
71 lines (71 loc) · 2.63 KB
/
404.html
File metadata and controls
71 lines (71 loc) · 2.63 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - Page Not Found | Kodra</title>
<meta name="robots" content="noindex">
<link rel="canonical" href="https://kodra.codetocloud.io">
<link rel="icon" type="image/png" href="/assets/favicon.ico.png">
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<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=Inter:wght@400;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background: #0d1117;
color: #e6edf3;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 2rem;
}
.container { max-width: 500px; }
.code {
font-family: 'JetBrains Mono', monospace;
font-size: 6rem;
font-weight: 700;
background: linear-gradient(135deg, #58a6ff, #a371f7);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 1rem;
}
h1 { font-size: 1.5rem; margin-bottom: 0.5rem; }
p { color: #8b949e; margin-bottom: 2rem; line-height: 1.6; }
.terminal {
background: #161b22;
border: 1px solid #30363d;
border-radius: 8px;
padding: 1.5rem;
text-align: left;
font-family: 'JetBrains Mono', monospace;
font-size: 0.85rem;
margin-bottom: 2rem;
}
.terminal .prompt { color: #3fb950; }
.terminal .cmd { color: #58a6ff; }
a {
color: #58a6ff;
text-decoration: none;
font-weight: 600;
}
a:hover { text-decoration: underline; }
</style>
</head>
<body>
<div class="container">
<div class="code">404</div>
<h1>Page Not Found</h1>
<p>Looks like this path doesn't exist. Maybe you were looking for the install command?</p>
<div class="terminal">
<span class="prompt">$</span> <span class="cmd">curl -fsSL https://kodra.codetocloud.io/boot.sh | bash</span>
</div>
<a href="/">← Back to Kodra</a>
</div>
</body>
</html>