BodyBalanceEvaluation/frontend/src/renderer/index.html

35 lines
780 B
HTML
Raw Normal View History

2025-07-28 11:59:56 +08:00
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>平衡体态检测系统</title>
<style>
body {
margin: 0;
padding: 0;
font-family: 'Microsoft YaHei', sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
#app {
height: 100vh;
}
.loading {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
color: white;
font-size: 18px;
}
</style>
</head>
<body>
<div id="app">
<div class="loading">
<div>正在加载平衡体态检测系统...</div>
</div>
</div>
<script type="module" src="/src/main.js"></script>
</body>
</html>