Skip to content

Commit

Permalink
Add simple maintenance page (setup on provider) (#516)
Browse files Browse the repository at this point in the history
* Add simple maintenance page (setup on provider)

* Fix formatting

* Remove favico from maintenance page
  • Loading branch information
adamiak authored Oct 15, 2024
1 parent cc6141d commit 32dee7b
Showing 1 changed file with 72 additions and 0 deletions.
72 changes: 72 additions & 0 deletions packages/frontend/maintenance.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta
content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no"
name="viewport"
/>
<title>Offline for maintenance</title>
<style>
html,
body {
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
background-color: #000000;
background-image: linear-gradient(
rgb(38, 38, 70),
rgba(0, 0, 0, 0),
rgba(0, 0, 0, 0)
);

line-height: 1.5;
-webkit-text-size-adjust: 100%;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
font-family: Inter, sans-serif;
font-feature-settings: normal;
font-variation-settings: normal;

height: 100%;
-webkit-font-smoothing: antialiased;
}

body {
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: #ffffff;
}

.message {
text-align: center;
align-self: center;
display: flex;
flex-direction: column;
align-items: center;
padding: 0px 20px;
max-width: 450px;
}

.message__title {
font-size: 22px;
font-weight: 100;
margin-top: 15px;
margin-bottom: 8px;
}
</style>
<base target="_parent" />
</head>

<body>
<div class="spacer"></div>
<div class="message">
<div class="message__title">The Explorer is offline for maintenance</div>
<p>Please check back later</p>
</div>
</body>
</html>

0 comments on commit 32dee7b

Please sign in to comment.