Skip to content

Commit 808b7d8

Browse files
committed
fix(og): set og:type
1 parent fe74871 commit 808b7d8

File tree

1 file changed

+19
-22
lines changed

1 file changed

+19
-22
lines changed

client/index.html

Lines changed: 19 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,22 @@
11
<!doctype html>
22
<html lang="ja" style="height: 100%" prefix="og: http://ogp.me/ns#">
3-
<head>
4-
<meta charset="UTF-8" />
5-
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
6-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<meta property="og:locale" content="ja_JP" />
8-
<!-- TODO: make these SEO tags dynamic if needed -->
9-
<meta
10-
property="og:image"
11-
content="https://itsuhima.utcode.net/og-image.webp"
12-
/>
13-
<meta property="og:site_name" content="イツヒマ" />
14-
<meta
15-
property="og:title"
16-
content="イツヒマ - 「いつ暇?」で日程調整しよう"
17-
/>
18-
<title>イツヒマ</title>
19-
</head>
203

21-
<body style="height: 100%" class="text-gray-600">
22-
<div id="root" style="height: 100%"></div>
23-
<script type="module" src="/src/main.tsx"></script>
24-
</body>
25-
</html>
4+
<head>
5+
<meta charset="UTF-8" />
6+
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8+
<meta property="og:locale" content="ja_JP" />
9+
<!-- TODO: make these SEO tags dynamic if needed -->
10+
<meta property="og:image" content="https://itsuhima.utcode.net/og-image.webp" />
11+
<meta property="og:site_name" content="イツヒマ" />
12+
<meta property="og:type" content="website" />
13+
<meta property="og:title" content="イツヒマ - 「いつ暇?」で日程調整しよう" />
14+
<title>イツヒマ</title>
15+
</head>
16+
17+
<body style="height: 100%" class="text-gray-600">
18+
<div id="root" style="height: 100%"></div>
19+
<script type="module" src="/src/main.tsx"></script>
20+
</body>
21+
22+
</html>

0 commit comments

Comments
 (0)