-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
30 lines (27 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Dovetail</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, viewport-fit=cover">
<meta name="author" content="Brandon Bennett">
<meta name="description" content="A cross-platform NBT editor built on the web!">
<meta property="og:title" content="Dovetail">
<meta property="og:description" content="A cross-platform NBT editor built on the web!">
<!-- <meta property="og:image" content=""> -->
<meta property="og:url" content="https://offroaders123.github.io/Dovetail/">
<meta name="twitter:card" content="summary_large_image">
<meta name="color-scheme" content="light dark">
<meta name="theme-color" content="#445985">
<base href="./" target="_blank">
<link rel="canonical" href="https://offroaders123.github.io/Dovetail/">
<link rel="manifest" href="./manifest.webmanifest">
<link rel="icon" type="image/svg+xml" href="./img/icon.svg">
<link rel="alternate icon" type="image/png" sizes="16x16" href="./img/icon-16.png">
<link rel="alternate icon" type="image/png" sizes="32x32" href="./img/icon-32.png">
</head>
<body>
<div id="root"></div>
<script type="module" src="./src/index.tsx"></script>
</body>
</html>