-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (39 loc) · 2.33 KB
/
index.html
File metadata and controls
45 lines (39 loc) · 2.33 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
44
45
<!doctype html>
<html lang="zh-TW">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- 基本 SEO -->
<title>SudokuLab - 數獨實驗室 | 學習並享受數獨解題技巧</title>
<meta name="description" content="SudokuLab 數獨實驗室 - 使用人類邏輯技巧解數獨,每一步都清楚解釋為什麼。學習 Naked Single、Hidden Pair、X-Wing 等進階技巧,提升你的數獨實力。" />
<meta name="keywords" content="數獨,Sudoku,數獨技巧,數獨解法,數獨學習,數獨遊戲,邏輯解題,SudokuLab" />
<meta name="author" content="weiawesome" />
<meta name="robots" content="index, follow" />
<!-- Canonical URL -->
<link rel="canonical" href="https://weiawesome.github.io/SudokuLab/" />
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/SudokuLab/favicon.svg" />
<link rel="apple-touch-icon" href="/SudokuLab/favicon.svg" />
<!-- Theme Color -->
<meta name="theme-color" content="#0d9488" />
<meta name="msapplication-TileColor" content="#0d9488" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://weiawesome.github.io/SudokuLab/" />
<meta property="og:title" content="SudokuLab - 數獨實驗室" />
<meta property="og:description" content="使用人類邏輯技巧解數獨,每一步都清楚解釋為什麼。學習進階數獨技巧,提升你的解題實力。" />
<meta property="og:image" content="https://weiawesome.github.io/SudokuLab/favicon.svg" />
<meta property="og:locale" content="zh_TW" />
<meta property="og:site_name" content="SudokuLab" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:url" content="https://weiawesome.github.io/SudokuLab/" />
<meta name="twitter:title" content="SudokuLab - 數獨實驗室" />
<meta name="twitter:description" content="使用人類邏輯技巧解數獨,每一步都清楚解釋為什麼。學習進階數獨技巧,提升你的解題實力。" />
<meta name="twitter:image" content="https://weiawesome.github.io/SudokuLab/favicon.svg" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>