-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 1.1 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, interactive-widget=resizes-content" />
<title>Repo Image Viewer</title>
<meta property="og:title" content="Repo Image Viewer" />
<meta
property="og:description"
content="A tool for viewing images in GitHub repositories" />
<meta
name="description"
content="A tool for viewing images in GitHub repositories" />
<meta name="author" content="PresentKim" />
<meta name="theme-color" content="#202020" />
<meta property="og:type" content="website" />
<meta
property="og:image"
content="https://repo-image-viewer.present.kim/thumbnail.png" />
<link rel="icon" href="./favicon.ico" sizes="32x32" />
<link rel="icon" href="./favicon.svg" type="image/svg+xml" />
<link rel="apple-touch-icon" href="./favicon-180.png" />
<link rel="manifest" href="./manifest.webmanifest" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>