-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (39 loc) · 2.09 KB
/
index.html
File metadata and controls
43 lines (39 loc) · 2.09 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<link rel="shortcut icon" href="./favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- 基础SEO -->
<title>AI美食大师 - AI智能菜谱生成平台</title>
<meta
name="description"
content="AI美食大师是专业的AI智能菜谱生成平台,汇聚中华八大菜系厨艺大师,根据您的食材智能生成个性化菜谱。支持营养分析、效果图生成,让烹饪变得简单有趣。"
/>
<meta name="keywords" content="AI菜谱,智能菜谱生成,八大菜系,川菜,粤菜,苏菜,鲁菜,浙菜,湘菜,闽菜,徽菜,营养分析,烹饪指导,食材搭配,美食推荐" />
<meta name="author" content="liuziting" />
<meta name="robots" content="index, follow" />
<meta name="googlebot" content="index, follow" />
<meta name="baiduspider" content="index, follow" />
<!-- 移动端优化 -->
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="apple-mobile-web-app-title" content="AI美食大师" />
<meta name="application-name" content="AI美食大师" />
<meta name="theme-color" content="#fbbf24" />
<meta name="msapplication-TileColor" content="#fbbf24" />
<meta name="msapplication-navbutton-color" content="#fbbf24" />
<!-- 图标和清单 -->
<link rel="icon" type="image/x-icon" href="./favicon.ico" />
<!-- 预连接和DNS预解析 -->
<link rel="preconnect" href="https://api.deepseek.com" />
<link rel="preconnect" href="https://open.bigmodel.cn" />
<link rel="dns-prefetch" href="https://fonts.googleapis.com" />
<link rel="dns-prefetch" href="https://www.clarity.ms" />
</head>
<body>
<div id="app"></div>
<script type="module" src="./src/main.ts"></script>
</body>
</html>