
        <!DOCTYPE html>
        <html lang="en">
        <head>
            <meta charset="UTF-8">
            <title>chirpchirp server</title>
            <style>
                body {
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    height: 100vh;
                    margin: 0;
                    font-family: sans-serif;
                    background: #f9f9f9;
                }
                .content {
                    font-size: 32px;
                    font-weight: bold;
                    color: #333;
                }
                .beian {
                    font-size: 14px;
                    margin-top: 20px;
                    color: #888;
                }
                .beian a {
                    color: #888;
                    text-decoration: none;
                }
                .beian a:hover {
                    text-decoration: underline;
                }
            </style>
        </head>
        <body>
            <div class="content">chirpchirp server</div>
            <div class="beian">
                <a href="https://beian.miit.gov.cn/" target="_blank" rel="noopener noreferrer">粤ICP备2024304242号</a>
            </div>
        </body>
        </html>