-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (58 loc) · 3.32 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
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- Title and Meta Description -->
<title>PokéDex Plorer - Explore All Pokémon Types and Abilities</title>
<meta name="description" content="Discover all Pokémon types, abilities, and stats in one place. Your go-to Pokémon database for trainers." />
<!-- Meta Keywords (Optional) -->
<meta name="keywords" content="Pokémon database, Pokémon types, Pokémon abilities, Pokémon stats, PokéDex Plorer" />
<!-- Open Graph Meta Tags -->
<meta property="og:title" content="PokéDex Plorer - Explore All Pokémon Types and Abilities" />
<meta property="og:description" content="Discover all Pokémon types, abilities, and stats in one place. Your go-to Pokémon database for trainers." />
<meta property="og:image" content="/favicon/social-image.png" />
<meta property="og:url" content="https://poke-dex-plorer.vercel.app/" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="PokéDex Plorer" />
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="PokéDex Plorer - Explore All Pokémon Types and Abilities" />
<meta name="twitter:description" content="Discover all Pokémon types, abilities, and stats in one place. Your go-to Pokémon database for trainers." />
<meta name="twitter:image" content="/favicon/social-image.png" />
<meta http-equiv="Content-Security-Policy" content="default-src * self blob: data: gap:; style-src * self 'unsafe-inline' blob: data: gap:; script-src * 'self' 'unsafe-eval' 'unsafe-inline' blob: data: gap:; object-src * 'self' blob: data: gap:; img-src * self 'unsafe-inline' blob: data: gap:; connect-src self * 'unsafe-inline' blob: data: gap:; frame-src * self blob: data: gap:;">
<!-- Canonical Link -->
<link rel="canonical" href="https://poke-dex-plorer.vercel.app/" />
<!-- Favicon -->
<link rel="icon" type="image/png" href="/favicon/favicon.png" />
<!-- Apple Touch Icon (for iOS bookmarks) -->
<link rel="apple-touch-icon" href="/favicon/apple-touch-icon.png" />
<!-- Robots Meta Tag -->
<meta name="robots" content="index, follow" />
<!-- JSON-LD Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "PokéDex Plorer",
"url": "https://poke-dex-plorer.vercel.app",
"potentialAction": {
"@type": "SearchAction",
"target": "https://poke-dex-plorer.vercel.app/search?q={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
<!-- Preconnect and Prefetch -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap" rel="stylesheet">
<link rel="preload" href="/src/main.jsx" as="script" />
<title>PokéDex Plorer</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>