mirror of
https://github.com/ReviveMii/website
synced 2025-09-02 19:41:05 +02:00
81 lines
2.1 KiB
HTML
81 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<!-- Google tag (gtag.js) -->
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-1MVYJRKPK2"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
|
|
gtag('config', 'G-1MVYJRKPK2');
|
|
</script>
|
|
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>ReviveMii - Maintenance</title>
|
|
<link rel="icon" href="favicon.ico" type="image/x-icon">
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
font-family: 'Arial', sans-serif;
|
|
background: linear-gradient(135deg, #f8f9fa, #e9ecef);
|
|
color: #333;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
text-align: center;
|
|
}
|
|
|
|
.container {
|
|
max-width: 600px;
|
|
padding: 20px;
|
|
background: #fff;
|
|
border-radius: 15px;
|
|
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
img {
|
|
width: 64px;
|
|
height: 64px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2.5rem;
|
|
margin-bottom: 10px;
|
|
color: #007bff;
|
|
}
|
|
|
|
p {
|
|
font-size: 1.2rem;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
button {
|
|
padding: 10px 20px;
|
|
font-size: 1rem;
|
|
color: #fff;
|
|
background-color: #007bff;
|
|
border: none;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
transition: background-color 0.3s;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #0056b3;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<img src="favicon.ico" alt="ReviveMii Logo">
|
|
<h1>ReviveMii Servers</h1>
|
|
<p>Our servers are currently under maintenance. Please check back later or try reloading the site.</p>
|
|
<button onclick="location.reload()">Reload</button>
|
|
</div>
|
|
</body>
|
|
</html>
|