
        <html>
        <head>
            <meta charset="UTF-8">
            <title>Welcome to Chaoting Group</title>
            <style>
                body {
                    margin: 0;
                    padding: 0;
                    min-height: 100vh;
                    display: flex;
                    flex-direction: column;
                    font-family: sans-serif;
                    background-color: #f9f9f9;
                }
                main {
                    flex: 1;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    text-align: center;
                }
                footer {
                    background-color: #f0f0f0;
                    text-align: center;
                    padding: 10px 0;
                    font-size: 14px;
                    color: #666;
                }
                a {
                    color: #666;
                    text-decoration: none;
                }
                a:hover {
                    text-decoration: underline;
                }
            </style>
        </head>
        <body>
            <main>
                <h1>Welcome to cloud native Cafe</h1>
            </main>
            <footer>
                <p><a href="https://beian.miit.gov.cn/" target="_blank">陇ICP备2022003159-2号</a></p>
            </footer>
        </body>
        </html>