-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
34 lines (31 loc) · 1.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic data -->
<meta charset="UTF-8" />
<title>PWA-Template</title>
<link rel="manifest" href="/manifest.webmanifest" />
<meta name="description" content="PWA template standart description" />
<!-- Site styling -->
<meta name="theme-color" content="#000000" />
<meta name="msapplication-TileColor" content="#000000" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no, viewport-fit=cover" />
<!-- Site icons -->
<link rel="apple-touch-icon" href="/favicons/favicon-180-180.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicons/favicon-32-32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicons/favicon-16-16.png" />
<!-- Data when sending a link to the site -->
<meta property="og:url" content="/" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="PWA-Template" />
<meta property="og:title" content="PWA template title" />
<meta property="og:description" content="PWA template og description" />
<meta property="og:image" content="/favicons/favicon-512-512.png" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>