-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (22 loc) · 1.18 KB
/
index.html
File metadata and controls
24 lines (22 loc) · 1.18 KB
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" class="h-full">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="浏览器端代码结构分析工具 - 快速分析和可视化代码项目结构" />
<meta name="theme-color" content="#3B82F6" />
<meta name="application-name" content="Structure Insight" />
<meta property="og:title" content="Structure Insight - 代码结构分析工具" />
<meta property="og:description" content="浏览器端代码结构分析工具 - 快速分析和可视化代码项目结构" />
<meta property="og:type" content="website" />
<link rel="manifest" href="/manifest.json" />
<title>Structure Insight</title>
<link rel="icon" type="image/svg+xml" href="/icon.svg">
<link rel="stylesheet" href="/hljs-light.css" id="hljs-light-theme">
<link rel="stylesheet" href="/hljs-dark.css" id="hljs-dark-theme" disabled>
</head>
<body class="h-full bg-light-bg dark:bg-dark-bg text-light-text dark:text-dark-text font-sans antialiased overflow-hidden">
<div id="root" class="h-full"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>