Skip to content

Commit

Permalink
Update 50x.html
Browse files Browse the repository at this point in the history
- Dark mode ftw
  • Loading branch information
MattHalloran committed Jul 16, 2024
1 parent a02b15c commit 143a011
Showing 1 changed file with 27 additions and 5 deletions.
32 changes: 27 additions & 5 deletions 50x.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,35 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Service Unavailable</title>
<style>
body { font-family: Arial, sans-serif; text-align: center; padding: 50px; }
h1 { color: #444; }
p { color: #666; }
body {
font-family: Arial, sans-serif;
background-color: #222;
color: #fff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.error-container {
text-align: center;
padding: 20px;
}
h1 {
font-size: 24px;
margin-bottom: 20px;
}
p {
font-size: 16px;
margin-bottom: 10px;
}
</style>
</head>
<body>
<h1>Service Unavailable</h1>
<p>We're sorry, but our service is temporarily unavailable. Please try again later.</p>
<div class="error-container">
<h1>Service Temporarily Unavailable</h1>
<p>We apologize, but our service is currently undergoing maintenance.</p>
<p>Please check back shortly. Thank you for your patience.</p>
</div>
</body>
</html>

0 comments on commit 143a011

Please sign in to comment.