-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 1.33 KB
/
Copy pathindex.html
File metadata and controls
32 lines (32 loc) · 1.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
<!doctype html>
<!--
index.html
----------
Prrr (Fodpr Web Client) のエントリ HTML。
- `viewport-fit=cover` / `apple-mobile-web-app-capable=yes` により
iOS の PWA(ホーム画面アイコン起動)で安全領域(セイフエリア)や
ブラウザ下部ナビの被りを制御できる。
- `theme-color` はダークテーマ(#0e1012)のページ背景色。
- manifest / apple-touch-icon で PWA インストールを有効化。
-->
<html lang="ja">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<meta name="theme-color" content="#0e1012" />
<meta name="description" content="Prrr - 分散型SNS" />
<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="black-translucent" />
<meta name="apple-mobile-web-app-title" content="Prrr" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="icon" href="/favicon.svg" />
<link rel="apple-touch-icon" href="/icon-180.png" />
<link rel="manifest" href="/manifest.webmanifest" />
<title>Prrr</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>