| 1234567891011121314151617181920212223242526272829303132 |
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <link rel="icon" type="image/png" href="./favicon-96x96.png" sizes="96x96" />
- <link rel="icon" type="image/svg+xml" href="./favicon.svg" />
- <link rel="shortcut icon" href="./favicon.ico" />
- <link rel="apple-touch-icon" sizes="180x180" href="./apple-touch-icon.png" />
- <link rel="manifest" href="./site.webmanifest" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title>GUEST EXPERIENCE COMMAND CENTRE</title>
- </head>
- <style>
- body {
- background: #082653;
- }
- </style>
- <body>
- <!-- 定义circle渐变色 -->
- <svg>
- <defs>
- <linearGradient id="circleGradient" x1="0%" y1="0%" x2="100%" y2="100%">
- <stop offset="0%" stop-color="#0496FF" />
- <stop offset="100%" stop-color="#00DBFF" />
- </linearGradient>
- </defs>
- </svg>
- <div id="app"></div>
- <script type="module" src="/src/main.ts"></script>
- </body>
- </html>
|