-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (63 loc) · 1.61 KB
/
index.html
File metadata and controls
69 lines (63 loc) · 1.61 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
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Work in Progress — Kestrun</title>
<style>
body {
margin: 0;
padding: 0;
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
background: linear-gradient(135deg, #1d3557, #457b9d, #a8dadc);
background-size: 400% 400%;
animation: gradientShift 15s ease infinite;
color: #fff;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
}
@keyframes gradientShift {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
h1 {
font-size: 3rem;
margin-bottom: 1rem;
}
p {
font-size: 1.25rem;
max-width: 600px;
}
.spinner {
margin: 2rem auto;
width: 48px;
height: 48px;
border: 4px solid rgba(255, 255, 255, 0.3);
border-top-color: #fff;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
footer {
position: absolute;
bottom: 1rem;
font-size: 0.9rem;
opacity: 0.8;
}
</style>
</head>
<body>
<h1>🚧 Work in Progress 🚧</h1>
<p>Something exciting is coming soon to <strong>Kestrun</strong>.<br>
Stay tuned while we craft it with care.</p>
<div class="spinner"></div>
<footer>© 2025 Kestrun</footer>
</body>
</html>