-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
121 lines (118 loc) · 2.81 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!doctype html>
<html lang="en">
<head prefix="og: https://ogp.me/ns#">
<meta charset="UTF-8" />
<link
rel="icon"
href="/favicon.ico"
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<meta
name="description"
content="自分のペースでチンイツと牌理を練習できるWebアプリ"
/>
<meta
name="keywords"
content="麻雀, チンイツ, 牌理, 練習, アプリ"
/>
<meta
name="author"
content="p-craft"
/>
<meta
name="robots"
content="index,follow"
/>
<meta
name="googlebot"
content="index,follow"
/>
<meta
name="google"
content="notranslate"
/>
<meta
name="format-detection"
content="telephone=no"
/>
<title>めんちんどーじょー2 | チンイツ・牌理練習アプリ</title>
<link
href="/node_modules/primeicons/primeicons.css"
rel="stylesheet"
/>
<!-- Open Graph Protocol -->
<meta
property="og:title"
content="めんちんどーじょー2 | チンイツ・牌理練習アプリ"
/>
<meta
property="og:description"
content="自分のペースでチンイツと牌理を練習できるWebアプリ"
/>
<meta
property="og:url"
content="https://menchin.p-craft.dev/"
/>
<meta
property="og:image"
content="https://menchin.p-craft.dev/menchin.png"
/>
<meta
property="og:type"
content="website"
/>
<meta
name="twitter:site"
content="@p_craft"
/>
<meta
name="twitter:creator"
content="@p_craft"
/>
<meta
name="twitter:card"
content="summary"
/>
<meta
name="twitter:image"
content="https://menchin.p-craft.dev/menchin.png"
/>
<meta
name="twitter:title"
content="めんちんどーじょー2 | チンイツ・牌理練習アプリ"
/>
<meta
name="twitter:description"
content="自分のペースでチンイツと牌理を練習できるWebアプリ"
/>
</head>
<body class="light bg-emerald-100 p-2">
<header>
<h1 class="m-4 text-2xl font-black sm:text-4xl">めんちんどーじょー2</h1>
</header>
<main class="m-auto md:max-w-3xl">
<div id="app"></div>
</main>
<footer class="fixed bottom-1 flex h-6 w-full flex-row justify-end gap-1 pr-3">
<a
href="https://www.buymeacoffee.com/p_craft"
target="_blank"
rel="noopener"
rel="noreferrer"
>
<img
src="/bmc-logo-yellow.png"
alt="Buy me a coffee (open in new tab)"
class="h-6 rounded-md object-contain"
/>
</a>
</footer>
<script
type="module"
src="/src/main.ts"
></script>
</body>
</html>