-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (56 loc) · 2.57 KB
/
index.html
File metadata and controls
56 lines (56 loc) · 2.57 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="MGSimard" />
<meta name="application-name" content="SimDraft" />
<title>SimDraft</title>
<meta name="description" content="League of Legends Draft Simulator" />
<link rel="canonical" href="https://simdraft.pages.dev/" />
<link rel="manifest" href="/metadata/manifest.webmanifest" />
<link rel="shortcut icon" href="/metadata/favicon.ico" />
<link rel="icon" type="image/png" sizes="96x96" href="/metadata/icon.png" />
<link rel="icon" type="image/svg+xml" href="/metadata/icon.svg" />
<link rel="apple-touch-icon" sizes="180x180" href="/metadata/apple-icon.png" />
<meta name="apple-mobile-web-app-title" content="SimDraft" />
<meta name="theme-color" content="#0a323c" />
<meta name="color-scheme" content="dark" />
<meta name="msapplication-TileColor" content="#010a13" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://simdraft.pages.dev/" />
<meta property="og:title" content="SimDraft" />
<meta property="og:site_name" content="SimDraft" />
<meta property="og:description" content="League of Legends Draft Simulator" />
<meta property="og:image" content="https://simdraft.pages.dev/metadata/opengraph-image.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="600" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:url" content="https://simdraft.pages.dev/" />
<meta name="twitter:creator" content="@MGSimard" />
<meta name="twitter:title" content="SimDraft" />
<meta name="twitter:description" content="League of Legends Draft Simulator" />
<meta name="twitter:image" content="https://simdraft.pages.dev/metadata/twitter-image.png" />
<!-- Preloads -->
<link rel="preload" href="/assets/ban_placeholder.svg" as="image" type="image/svg+xml" />
<link rel="preload" href="/assets/champions/-1.png" as="image" type="image/png" />
<link
rel="preload"
href="/fonts/BeaufortForLOL/BFL-bold.woff2"
as="font"
type="font/woff2"
crossorigin="anonymous" />
<link
rel="preload"
href="/fonts/Spiegel/spiegel-regular.woff2"
as="font"
type="font/woff2"
crossorigin="anonymous" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>