[Back] <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Site in Progress</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f4f4f4;
font-family: Arial, sans-serif;
color: #333;
}
.message {
text-align: center;
}
.message h1 {
font-size: 3rem;
margin-bottom: 10px;
}
.message p {
font-size: 1.2rem;
color: #666;
}
</style>
</head>
<body>
<div class="message">
<h1>🚧 Site in Progress 🚧</h1>
<p>We’re working hard to bring this page to life. Please check back soon!</p>
</div>
</body>
</html>