- 将默认标题 "Vite App" 更改为产品名称 "Nexus AI Sales | 无人销售智能中台" - 引入 Phosphor Icons 作为图标库 - 添加 Google Fonts 中的 JetBrains Mono 和 Inter 字体以提升界面视觉一致性
18 lines
633 B
HTML
18 lines
633 B
HTML
<!DOCTYPE html>
|
|
<html lang="">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<link rel="icon" href="/favicon.ico">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Nexus AI Sales | 无人销售智能中台</title>
|
|
<!-- Phosphor Icons -->
|
|
<script src="https://unpkg.com/@phosphor-icons/web"></script>
|
|
<!-- Google Fonts -->
|
|
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&family=Inter:wght@300;400;600;700&display=swap" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|