-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
117 lines (117 loc) · 4.06 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Important Notice - NexusAI</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Important notice regarding the transition to www.nexusmind.tech.">
<link rel="icon" href="https://cdn.discordapp.com/icons/1284342597262770236/d3d2ace5762d5491367fd50808576c89.png?size=56">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
background-color: #121212;
color: #e0e0e0;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
background-image: radial-gradient(circle at center, #1d1d1d 0%, #121212 100%);
}
.container {
text-align: center;
padding: 40px;
background: #1e1e1e;
border-radius: 8px;
box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}
.logo {
max-width: 200px;
margin-bottom: 20px;
}
.notice h1 {
font-size: 2em;
margin-bottom: 20px;
font-weight: 700;
color: #ffffff;
}
.notice p {
font-size: 1.1em;
line-height: 1.6;
margin-bottom: 30px;
}
.btn {
display: inline-block;
padding: 12px 25px;
font-size: 1em;
color: #ffffff;
background: linear-gradient(90deg, #00d2ff, #3a7bd5);
text-decoration: none;
border-radius: 5px;
transition: background 0.3s ease;
}
.btn:hover {
background: linear-gradient(90deg, #3a7bd5, #00d2ff);
}
.countdown {
margin-top: 20px;
font-size: 0.9em;
color: #cccccc;
}
footer {
margin-top: 40px;
font-size: 0.8em;
color: #777777;
}
@media (max-width: 600px) {
.container {
padding: 20px;
}
.notice h1 {
font-size: 1.5em;
}
.notice p {
font-size: 1em;
}
}
</style>
</head>
<body>
<div class="container">
<img src="https://cdn.discordapp.com/icons/1284342597262770236/d3d2ace5762d5491367fd50808576c89.png?size=128" alt="NexusAI Logo" class="logo">
<div class="notice">
<h1>Important Notice</h1>
<p>
We are excited to announce that we are moving to a new domain! To continue accessing our content and services, please update your bookmarks to our new website:
</p>
<a href="https://www.nexusmind.tech/" class="btn">Go to www.nexusmind.tech</a>
<p>
This domain <strong>(nexusapi.tech)</strong> will be archived soon as part of our efforts to consolidate our online presence and improve your experience.
If you have any questions or need assistance, please don't hesitate to <a href="https://discord.gg/sk8eddGwmP">contact us</a>.
</p>
<p class="countdown">You will be redirected automatically in <span id="countdown">10</span> seconds.</p>
</div>
</div>
<footer>
© 2024 NexusAI. All rights reserved.
</footer>
<script>
// Countdown Timer Script
let timeLeft = 10;
const countdownElement = document.getElementById('countdown');
const timerId = setInterval(() => {
if (timeLeft <= 0) {
clearInterval(timerId);
window.location.href = "https://www.nexusmind.tech/";
} else {
countdownElement.textContent = timeLeft;
}
timeLeft -= 1;
}, 1000);
</script>
</body>
</html>