-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
51 lines (51 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ASINGULARITY AI | Redirecting...</title>
<meta http-equiv="refresh" content="0;url=src/index.html">
<style>
body {
font-family: Arial, sans-serif;
background-color: #050a18;
color: #ffffff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
padding: 0;
}
.loader {
border: 5px solid rgba(0, 0, 0, 0.1);
border-radius: 50%;
border-top: 5px solid #6e00ff;
width: 50px;
height: 50px;
animation: spin 1s linear infinite;
margin-bottom: 20px;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.container {
text-align: center;
}
h1 {
margin-bottom: 10px;
}
p {
color: #a0a0a0;
}
</style>
</head>
<body>
<div class="container">
<div class="loader"></div>
<h1>ASINGULARITY AI</h1>
<p>Redirecting to the main page...</p>
</div>
</body>
</html>