Spaces:
Running
Running
File size: 2,640 Bytes
dced274 aec99e6 dced274 6c5791f 7aaab2a 6c5791f 7aaab2a 6c5791f 7aaab2a 6c5791f 7aaab2a 6c5791f 7e7ee59 6c5791f aec99e6 6c5791f aec99e6 6c5791f aec99e6 6c5791f aec99e6 de4dd96 aec99e6 6c5791f 310553f 6c5791f 310553f 6c5791f aec99e6 6c5791f de4dd96 dced274 6c5791f b3c410d 7878731 310553f e2300d5 8e90460 310553f aec99e6 dced274 b708529 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alteração de Domínio</title>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #2d3436;
color: #ffffff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
}
.container {
background-color: #34495e;
padding: 40px;
border-radius: 15px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
width: 80%;
max-width: 500px;
}
h1 {
font-size: 30px;
margin-bottom: 20px;
font-weight: bold;
color: #ffffff;
}
p {
font-size: 18px;
margin-bottom: 30px;
color: #ecf0f1;
}
.redirect-btn {
display: inline-block;
background-color: #00BFAE;
color: white;
padding: 12px 30px;
border-radius: 30px;
text-decoration: none;
font-size: 18px;
font-weight: bold;
transition: background-color 0.3s ease;
margin-bottom: 20px;
}
.redirect-btn:hover {
background-color: #1abc9c;
}
.discord-btn {
display: inline-block;
background-color: #7289da;
color: white;
padding: 12px 30px;
border-radius: 30px;
text-decoration: none;
font-size: 18px;
font-weight: bold;
transition: background-color 0.3s ease;
}
.discord-btn:hover {
background-color: #6a7fb7;
}
footer {
margin-top: 20px;
font-size: 16px;
color: #bdc3c7;
}
</style>
</head>
<body>
<div class="container">
<h1>O Domínio do Site Mudou</h1>
<p>O nosso site foi movido para um novo domínio. Para continuar acessando, clique no botão abaixo:</p>
<a href="https://minecraft-status-ip.vercel.app/" class="redirect-btn" target="_blank" rel="noopener noreferrer">Ir Para o Novo Domínio</a>
<p>Se você tiver algum problema, entre em contato conosco.</p>
<a href="https://discord.gg/AGDmFu4CDG" class="discord-btn" target="_blank" rel="noopener noreferrer">Entrar no Discord</a>
</div>
</body>
</html>
|