<!DOCTYPE html>

<html lang="zh-CN">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Fly Slowly 的个人主页</title>

    <style>

        body {

            margin: 0;

            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

            background: linear-gradient(135deg, #1e1e2f 0%, #2a2a40 100%);

            color: #fff;

            display: flex;

            justify-content: center;

            align-items: center;

            height: 100vh;

            text-align: center;

        }

        .container {

            max-width: 600px;

            padding: 40px;

            background: rgba(255, 255, 255, 0.05);

            border-radius: 20px;

            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

            backdrop-filter: blur(10px);

            border: 1px solid rgba(255, 255, 255, 0.1);

        }

        h1 {

            font-size: 2.5rem;

            margin-bottom: 10px;

            background: linear-gradient(90deg, #00f2fe 0%, #4facfe 100%);

            -webkit-background-clip: text;

            -webkit-text-fill-color: transparent;

        }

        p {

            font-size: 1.1rem;

            color: #b0b0c0;

            line-height: 1.6;

        }

        .links {

            margin-top: 30px;

            display: flex;

            justify-content: center;

            gap: 20px;

        }

        .links a {

            color: #4facfe;

            text-decoration: none;

            border: 1px solid #4facfe;

            padding: 10px 20px;

            border-radius: 10px;

            transition: all 0.3s ease;

        }

        .links a:hover {

            background: #4facfe;

            color: #1e1e2f;

        }

    </style>

</head>

<body>

    <div class="container">

        <h1>Fly Slowly</h1>

        <p>欢迎来到我的个人空间。</p>

        <p>这里是我的 NAS 和网络服务的中转站。目前正在搭建中,敬请期待。</p>

        <div class="links">

            <!-- 未来你的 NAS 域名可以写在这里 -->

            <a href="http://nas.372667819.xyz" target="_blank">我的 NAS</a>

            <a href="mailto:xufeiby@gmail.com">联系我</a>

        </div>

    </div>

</body>

</html>