-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathunder_construction.html
More file actions
64 lines (58 loc) · 1.35 KB
/
under_construction.html
File metadata and controls
64 lines (58 loc) · 1.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Rocal – Under Construction</title>
<style>
html, body {
height: 100%;
margin: 0;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
background: #111;
color: #fff;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
h1 {
font-size: 3rem;
margin: 0.5em 0;
}
p {
font-size: 1.2rem;
color: #ccc;
max-width: 500px;
}
.logo {
font-size: 2rem;
font-weight: bold;
letter-spacing: 2px;
color: #00ffcc;
margin-bottom: 1rem;
}
.blinking {
animation: blink 1.5s infinite;
}
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0.2; }
}
footer {
position: absolute;
bottom: 1rem;
font-size: 0.9rem;
color: #666;
}
</style>
</head>
<body>
<div class="logo">ROCAL</div>
<h1>🚧 Under Construction 🚧</h1>
<p>We’re working hard to bring you something awesome. The future of Local-First frameworks is loading…</p>
<p class="blinking">Please check back soon.</p>
<footer>© 2025 Rocal. All rights reserved.</footer>
</body>
</html>