Skip to content

Commit

Permalink
Merge pull request #77 from cybsecmaster/feature/doc-53-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromeleonard authored Nov 8, 2024
2 parents 6a239ec + c20f924 commit 8db0682
Showing 1 changed file with 72 additions and 0 deletions.
72 changes: 72 additions & 0 deletions overrides/404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
<!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</title>
<style>
body, html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
font-family: Arial, sans-serif;
background-color: #ececec;
color: #1b1b34;
overflow: hidden;
}
.container {
text-align: center;
}
.logo img {
width: 15vw;
max-width: 200px;
margin-bottom: 40px;
}
.error-code {
font-size: 6rem;
margin-bottom: 20px;
}
.error-message {
font-size: 2rem;
margin-bottom: 40px;
}
.home-button {
background-color: #007BFF;
color: white;
border: none;
padding: 15px 30px;
font-size: 1.25rem;
cursor: pointer;
border-radius: 5px;
text-decoration: none;
}
.home-button:hover {
background-color: #0056b3;
}
.copyright {
margin-top: 40px;
font-size: 0.875rem;
color: #333333;
}
</style>
</head>
<body>
<div class="container">
<div class="logo">
<img src="/assets/images/strangebee-logo.svg" alt="StrangeBee Company Logo">
</div>
<div class="error-code">
404
</div>
<div class="error-message">
Oops! Page not found.
</div>
<a href="/" class="home-button" aria-label="Return to the homepage" role="button">Return to Homepage</a>
</div>
</body>
</html>

0 comments on commit 8db0682

Please sign in to comment.