summaryrefslogtreecommitdiff
path: root/nginx/error-pages/unknown-host.html
blob: ab0fa1b1e33699cdbfb63d24be6e317e8fb3927c (plain)
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
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Not Found — swave.lol</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #0a0a0a;
            color: #e0e0e0;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }

        .container {
            text-align: center;
            padding: 2rem;
        }

        .code {
            font-size: 8rem;
            font-weight: 700;
            letter-spacing: -0.05em;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
            margin-bottom: 1rem;
        }

        .message {
            font-size: 1.5rem;
            color: #888;
            margin-bottom: 2rem;
        }

        .detail {
            font-size: 0.95rem;
            color: #555;
            max-width: 400px;
            margin: 0 auto 2.5rem;
            line-height: 1.6;
        }

        .home-link {
            display: inline-block;
            padding: 0.75rem 2rem;
            border: 1px solid #333;
            border-radius: 6px;
            color: #aaa;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.2s ease;
        }

        .home-link:hover {
            border-color: #667eea;
            color: #667eea;
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="code">404</div>
        <div class="message">This page doesn't exist</div>
        <div class="detail">
            The subdomain you requested is not configured on this server.
        </div>
        <a href="https://swave.lol" class="home-link">Go to swave.lol</a>
    </div>
</body>
</html>