Created
July 9, 2025 14:20
-
-
Save pavelch/2dc6400ae6d8d9bccc6d3dae1bfe5725 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Service Unavailable</title> | |
<style> | |
body { | |
margin: 0; | |
padding: 0; | |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; | |
background-color: #f1f1f1; | |
color: #444; | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
height: 100vh; | |
text-align: center; | |
} | |
.container { | |
background-color: #fff; | |
padding: 2rem 3rem; | |
border-radius: 8px; | |
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); | |
} | |
h1 { | |
font-size: 2.5rem; | |
color: #d9534f; /* A soft red for error indication */ | |
margin-bottom: 0.5rem; | |
} | |
p { | |
font-size: 1.1rem; | |
line-height: 1.6; | |
} | |
.brand-footer { | |
margin-top: 1.5rem; | |
font-size: 0.9rem; | |
color: #aaa; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="container"> | |
<h1>Oops.. Something wrong</h1> | |
<p>The main application is temporarily offline.</p> | |
<p>You have been routed to this fallback page. We are working to restore service as soon as possible.</p> | |
<div class="brand-footer"> | |
<p>Powered by Cloudflare Workers</p> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment