-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpreview.html
More file actions
24 lines (24 loc) · 837 Bytes
/
Copy pathpreview.html
File metadata and controls
24 lines (24 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="robots" content="noindex,nofollow" />
<link rel="icon" href="/logo-mini.png" />
<title>Skills Manager · Live Preview</title>
<style>
html, body, #root { height: 100%; margin: 0; background: #f8f9fa; }
.preview-boot {
position: fixed; inset: 0;
display: flex; align-items: center; justify-content: center;
color: #475569; font: 500 14px -apple-system, "Segoe UI", Inter, sans-serif;
}
</style>
</head>
<body>
<div id="root">
<div class="preview-boot">正在加载 Skills Manager 在线体验…</div>
</div>
<script type="module" src="/app/src/preview/main.tsx"></script>
</body>
</html>