designscnc.com 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>Maintenance - DesignsCNC</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.0/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
background: linear-gradient(135deg, #28a745, #20c997);
color: #fff;
font-family: 'Arial', sans-serif;
text-align: center;
padding: 50px;
}
.container {
max-width: 600px;
margin: auto;
background: rgba(255, 255, 255, 0.95);
padding: 30px;
border-radius: 15px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
h1 {
font-size: 2.8rem;
color: #333;
font-weight: bold;
}
p {
font-size: 1.2rem;
color: #555;
margin-bottom: 20px;
}
.countdown {
font-size: 2.5rem;
color: #28a745;
font-weight: bold;
margin: 20px 0;
}
.email {
margin-top: 20px;
font-size: 1rem;
color: #555;
}
.email a {
color: #28a745;
text-decoration: none;
font-weight: bold;
}
.email a:hover {
text-decoration: underline;
}
.icon {
font-size: 4rem;
color: #28a745;
margin-bottom: 20px;
}
.btn-back {
margin-top: 20px;
padding: 10px 20px;
font-size: 1rem;
color: #fff;
background-color: #28a745;
border: none;
border-radius: 5px;
text-decoration: none;
display: inline-block;
transition: background-color 0.3s ease;
}
.btn-back:hover {
background-color: #1e7e34;
}
</style>
<script>
// Redirect any subpath to the homepage
if (window.location.pathname !== "/") {
window.location.href = "/";
}
</script>
</head>
<body>
<div class="container">
<i class="fas fa-cogs icon"></i>
<h1>We're Improving DesignsCNC!</h1>
<p>Our website is currently undergoing maintenance to bring you the best CNC designs and services.</p>
<p>We’ll be back online in:</p>
<div class="countdown" id="countdown">2d 00h 00m 00s</div>
<p>Thank you for your patience and understanding!</p>
<div class="email">
If you have any questions, feel free to contact us at <a href="mailto:admin@designscnc.com">admin@designscnc.com</a>
</div>
<a href="#" class="btn-back">Back to Homepage</a>
</div>
<script>
// Countdown Timer Script
const countdownElement = document.getElementById('countdown');
const targetDate = new Date();
targetDate.setDate(targetDate.getDate() + 2); // Set countdown for 2 days
function updateCountdown() {
const now = new Date();
const timeLeft = targetDate - now;
if (timeLeft <= 0) {
countdownElement.textContent = "We're back online!";
return;
}
const days = Math.floor(timeLeft / (1000 * 60 * 60 * 24));
const hours = Math.floor((timeLeft % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
const minutes = Math.floor((timeLeft % (1000 * 60 * 60)) / (1000 * 60));
const seconds = Math.floor((timeLeft % (1000 * 60)) / 1000);
countdownElement.textContent = `${days}d ${hours}h ${minutes}m ${seconds}s`;
}
setInterval(updateCountdown, 1000);
</script>
</body>
</html>