404.html•1.56 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 - Blackhole Core MCP</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
padding-top: 5rem;
background-color: #f8f9fa;
text-align: center;
}
.error-container {
max-width: 600px;
margin: 0 auto;
padding: 2rem;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.error-code {
font-size: 6rem;
font-weight: bold;
color: #dc3545;
margin-bottom: 1rem;
}
.error-message {
font-size: 1.5rem;
margin-bottom: 2rem;
}
</style>
</head>
<body>
<div class="container">
<div class="error-container">
<div class="error-code">404</div>
<div class="error-message">Page Not Found</div>
<p>The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.</p>
<a href="/" class="btn btn-primary mt-3">Go to Homepage</a>
<a href="/netlify.html" class="btn btn-outline-secondary mt-3 ms-2">Deployment Guide</a>
</div>
</div>
</body>
</html>