generated from viatora/viatora-template-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (45 loc) · 1.54 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
<!doctype html>
<html lang="en">
<head>
<!-- General -->
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PokeLike</title>
<!-- Mobile first tags -->
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<!-- Meta descriptions and keywords for SEO -->
<meta
name="description"
content="Keep track of what pokemon you think are cute 🥰"
/>
<meta name="keywords" content="pokemon, pikachu, pokelike, collections" />
<!-- Open Graph for social media sharing -->
<meta property="og:title" content="PokeLike" />
<meta
property="og:description"
content="Keep track of what pokemon you think are cute 🥰"
/>
<meta property="og:image" content="src/assets/logo.png" />
<meta
property="og:url"
content="http://pokelike.s3-website.eu-west-2.amazonaws.com"
/>
<!-- Favicon and branding -->
<link
rel="icon"
href="https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/other/dream-world/25.svg"
/>
<link
rel="apple-touch-icon"
href="https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/other/dream-world/25.svg"
/>
<meta name="theme-color" content="#ffffff" />
<!-- Scripts -->
<script type="module" src="/src/main.tsx" defer></script>
</head>
<body>
<div id="root"></div>
</body>
</html>