<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Maintenance</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
background-color: #f0f0f0;
}
.container {
text-align: center;
padding: 20px;
background: #fff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
h1 {
font-size: 2.5em;
margin: 0 0 20px;
}
p {
font-size: 1.2em;
margin: 0 0 20px;
}
.contact {
font-size: 1em;
}
.contact a {
color: #007BFF;
text-decoration: none;
}
.contact a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<script>
document.body.innerHTML = `
<div class="container">
<h1>We'll be back soon!</h1>
<p>Sorry for the inconvenience but we’re performing some maintenance at the moment. We’ll be back online shortly!</p>
<p class="contact">— The Team</p>
<p class="contact">If you need to you can always <a href="mailto:support@example.com">contact us</a>, otherwise we’ll be back online shortly!</p>
</div>
`;
</script>
</body>
</html>