forked from wavebeem/pkmn.help
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
69 lines (69 loc) · 2.21 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en-US" dir="ltr" class="bg2" data-theme="auto">
<head>
<meta charset="UTF-8" />
<title>Pokémon Type Calculator</title>
<meta name="og:title" content="Pokémon Type Calculator" />
<link
rel="prefetch"
href="/data-pkmn.json"
as="fetch"
type="application/json"
/>
<link rel="icon" sizes="16x16" href="/favicon-16.png" />
<link rel="icon" sizes="32x32" href="/favicon-32.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/favicon-180.png" />
<link rel="manifest" href="/manifest.json" />
<meta name="og:image" content="/favicon-192.png" />
<meta
name="twitter:image"
content="/favicon-192.png"
/>
<meta
name="twitter:image:src"
content="/favicon-192.png"
/>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta
name="description"
content="A Pokémon type calculator to show strengths/weaknesses of different type combinations"
/>
<meta
name="og:description"
content="A Pokémon type calculator to show strengths/weaknesses of different type combinations"
/>
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@wavebeem" />
<meta name="twitter:creator" content="@wavebeem" />
<script type="module" src="/src/main.tsx"></script>
</head>
<body>
<div id="app" class="sans-serif bg2 fg1 min-vh-100 flex flex-column">
<div class="center fallback-content">
<h1>Pokémon Type Calculator</h1>
<p>
A Pokémon type calculator to show strengths/weaknesses of different
type combinations.
</p>
<p>This app requires JavaScript. Make sure you have it enabled.</p>
<p>
Email
<a
class="underline fg-link OutlineFocus"
href="mailto:brian@wavebeem.com"
>brian@wavebeem.com</a
>
if you have difficulty loading the site.
</p>
<footer>
©
<a
class="underline fg-link OutlineFocus"
href="https://www.wavebeem.com/"
>Brian Mock</a
>
</footer>
</div>
</div>
</body>
</html>