<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NovaxisTech - Coming Soon</title>
<style>
body {
margin: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
font-family: 'Arial', sans-serif;
background: linear-gradient(135deg, #2c3e50, #4ca1af);
color: #fff;
text-align: center;
}
.logo img {
width: 150px; /* 你可以调整大小 */
height: auto;
margin-bottom: 20px;
}
h1 {
font-size: 3em;
margin: 10px 0;
}
p {
font-size: 1.2em;
margin-bottom: 30px;
}
#countdown {
font-size: 1.5em;
margin-bottom: 20px;
}
.contact {
font-size: 1em;
margin-top: 20px;
}
.contact a {
color: #ffd700;
text-decoration: none;
}
</style>
</head>
<body>
<!-- 使用上传的 Logo 图片 -->
<div class="logo">
<img src="NA.png" alt="NovaxisTech Logo">
</div>
<h1>NovaxisTech</h1>
<p>Our website is under construction. Stay tuned!</p>
<div id="countdown"></div>
<div class="contact">
Contact us: <a href="mailto:info@novaxistech.com">info@novaxistech.com</a>
</div>
<script>
// 设置目标日期(例如 2025年12月31日)
const targetDate = new Date("Dec 31, 2025 23:59:59").getTime();
const countdown = document.getElementById("countdown");
const timer = setInterval(() => {
const now = new Date().getTime();
const distance = targetDate - now;
if (distance < 0) {
clearInterval(timer);
countdown.innerHTML = "We are live!";
return;
}
const days = Math.floor(distance / (1000 * 60 * 60 * 24));
const hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
const minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
const seconds = Math.floor((distance % (1000 * 60)) / 1000);
countdown.innerHTML = `${days}d ${hours}h ${minutes}m ${seconds}s`;
}, 1000);
</script>
</body>
</html>