-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmaintenance.html
More file actions
51 lines (51 loc) · 1.24 KB
/
Copy pathmaintenance.html
File metadata and controls
51 lines (51 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noindex, nofollow, noarchive, nositelinkssearchbox">
<meta name="googlebot" content="noindex, nofollow, nosnippet">
<meta http-equiv="refresh" content="300">
<link rel="icon" href="data:,">
<title>Maintenance in progress</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
background: #f8f9fa;
color: #333;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
padding: 2rem;
}
.container {
text-align: center;
max-width: 480px;
}
.icon {
font-size: 3rem;
margin-bottom: 1.5rem;
opacity: 0.7;
}
h1 {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 0.75rem;
}
p {
font-size: 1rem;
line-height: 1.6;
color: #666;
}
</style>
</head>
<body>
<div class="container">
<div class="icon">⚙</div>
<h1>Site is undergoing maintenance</h1>
<p>We're making some updates and will be back shortly. Please check back in a few minutes.</p>
</div>
</body>
</html>