404.html•1.92 kB
<!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 - GitHub CLI MCP</title>
<style>
:root {
--primary-color: #2ea44f;
--dark-color: #24292e;
--light-color: #f6f8fa;
--text-color: #24292e;
--link-color: #0366d6;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
line-height: 1.6;
color: var(--text-color);
margin: 0;
padding: 0;
background-color: var(--light-color);
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 2rem;
background-color: white;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
h1 {
color: var(--primary-color);
margin-top: 0;
font-size: 2.5rem;
}
.btn {
display: inline-block;
background-color: var(--primary-color);
color: white;
padding: 0.7rem 1.5rem;
border-radius: 6px;
text-decoration: none;
font-weight: bold;
transition: background-color 0.3s;
margin-top: 1.5rem;
}
.btn:hover {
background-color: #2c974b;
}
a {
color: var(--link-color);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>404 - Page Not Found</h1>
<p>The page you are looking for doesn't exist or has been moved.</p>
<p>Please visit our <a href="https://github.com/CodingButterBot/gh_cli_mcp/wiki">documentation</a> for more information about GitHub CLI MCP.</p>
<a href="/" class="btn">Return to Homepage</a>
</div>
</body>
</html>