File size: 860 Bytes
5e57fbe
 
 
 
 
9dfcb2b
5e57fbe
 
 
9dfcb2b
5e57fbe
9dfcb2b
5e57fbe
9dfcb2b
 
 
b43bb94
9dfcb2b
 
b43bb94
9dfcb2b
 
 
b43bb94
9dfcb2b
 
a993cac
 
9dfcb2b
 
 
 
 
a993cac
9dfcb2b
6084446
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Under Maintenance</title>
    <style>
        body {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            font-family: Arial, sans-serif;
            background-color: #f2f2f2;
            color: #333;
        }
        .container {
            text-align: center;
        }
        h1 {
            font-size: 3em;
            margin-bottom: 0.5em;
        }
        p {
            font-size: 1.2em;
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>We are under maintenance</h1>
        <p>Sorry for the inconvenience. We'll be back soon.</p>
    </div>
</body>
</html>