smartclub.co.za Ads.txt file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SmartClub - Temporary Maintenance</title>
<style>
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
background: #f8f9fa;
color: #333;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
text-align: center;
}
.container {
max-width: 600px;
padding: 20px;
background: #fff;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
h1 {
color: #2a7de1;
margin-bottom: 16px;
}
p {
font-size: 1.1rem;
margin-bottom: 12px;
}
.footer {
margin-top: 20px;
font-size: 0.9rem;
color: #777;
}
</style>
</head>
<body>
<div class="container">
<h1>We'll Be Back Soon</h1>
<p>SmartClub is currently undergoing maintenance.</p>
<p>Thank you for your patience.</p>
<div class="footer">
© <span id="year"></span> SmartClub
</div>
</div>
<script>
document.getElementById("year").textContent = new Date().getFullYear();
</script>
</body>
</html>