forked from asklokesh/loki-mode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
67 lines (67 loc) · 1.91 KB
/
404.html
File metadata and controls
67 lines (67 loc) · 1.91 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="refresh" content="0; url=https://www.autonomi.dev/">
<link rel="canonical" href="https://www.autonomi.dev/">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Loki Mode - Redirecting to Autonomi</title>
<style>
body {
font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
background-color: #FFFFFF;
color: #18181B;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
text-align: center;
}
.container {
max-width: 500px;
padding: 2rem;
}
h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
color: #18181B;
}
p {
font-size: 1.1rem;
color: #374151;
margin-bottom: 1.5rem;
}
a {
color: #5B4EEA;
text-decoration: none;
font-weight: 600;
border-bottom: 2px solid transparent;
transition: border-color 0.3s;
}
a:hover {
border-bottom-color: #5B4EEA;
}
.spinner {
margin: 2rem auto;
width: 40px;
height: 40px;
border: 4px solid #E5E7EB;
border-top-color: #5B4EEA;
border-radius: 50%;
animation: spin 0.8s linear infinite;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
</style>
</head>
<body>
<div class="container">
<h1>Loki Mode</h1>
<div class="spinner"></div>
<p>Redirecting to <a href="https://www.autonomi.dev/">autonomi.dev</a>...</p>
</div>
<script>window.location.replace("https://www.autonomi.dev/");</script>
</body>
</html>