<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Website Sedang Maintance</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f8f9fa;
color: #333;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
text-align: center;
}
.box {
max-width: 400px;
padding: 40px;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
h1 {
font-size: 22px;
margin-bottom: 16px;
}
p {
font-size: 16px;
color: #666;
}
.emoji {
font-size: 48px;
margin-bottom: 16px;
}
button {
margin-top: 20px;
padding: 10px 24px;
font-size: 14px;
background-color: #007bff;
color: white;
border: none;
border-radius: 6px;
cursor: pointer;
}
button:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<div class="box">
<div class="emoji">⚠️</div>
<h1>Website Sedang Maintance</h1>
<p>Mohon maaf atas ketidaknyamanan ini. Tim teknis kami sedang bekerja untuk menyelesaikannya secepat mungkin.</p>
<button onclick="location.reload()">Coba Lagi</button>
</div>
</body>
</html>