-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
38 lines (38 loc) · 1.58 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Riichi Tracker</title>
<meta name="description" content="Riichi mahjong score calculator and game tracker. Supports many game variants!" />
<!-- Facebook -->
<meta property="og:url" content="https://riichi.onecomp.one/" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Riichi Tracker" />
<meta
property="og:description"
content="Riichi mahjong score calculator and game tracker. Supports many game variants!"
/>
<meta property="og:image" content="/riichi512.png" />
<!-- Twitter -->
<meta name="twitter:card" content="summary" />
<meta property="twitter:domain" content="riichi.onecomp.one" />
<meta property="twitter:url" content="https://riichi.onecomp.one/" />
<meta name="twitter:title" content="Riichi Tracker" />
<meta
name="twitter:description"
content="Riichi mahjong score calculator and game tracker. Supports many game variants!"
/>
<meta property="twitter:image" content="/riichi512.png" />
<!-- Icons -->
<link rel="icon" type="image/png" sizes="16x16" href="/riichi16.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/riichi32.png" />
<link rel="apple-touch-icon" href="/riichi-apple-touch-icon.png" sizes="180x180" />
<link rel="mask-icon" href="/riichi-mask-icon.svg" color="#b93c3c" />
<meta name="theme-color" content="#b93c3c" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>