diff options
Diffstat (limited to 'ui/index.html')
| -rw-r--r-- | ui/index.html | 30 |
1 files changed, 12 insertions, 18 deletions
diff --git a/ui/index.html b/ui/index.html index 1acd3ab..0b17b67 100644 --- a/ui/index.html +++ b/ui/index.html @@ -1,19 +1,13 @@ -<!DOCTYPE html> +<!doctype html> <html lang="en"> -<head> - <meta charset="UTF-8"> - <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <title>Minecraft 启动器</title> - <link rel="stylesheet" href="style.css"> - <script src="main.js" defer></script> -</head> -<body> - <main class="container"> - <h1>Minecraft DropOut Launcher</h1> - <div class="status-container"> - <p id="status-text">准备就绪</p> - </div> - <button id="start-game-btn">开始游戏</button> - </main> -</body> -</html>
\ No newline at end of file + <head> + <meta charset="UTF-8" /> + <link rel="icon" type="image/svg+xml" href="/vite.svg" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> + <title>ui</title> + </head> + <body> + <div id="app"></div> + <script type="module" src="/src/main.ts"></script> + </body> +</html> |