-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (49 loc) · 2.51 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- Favicon -->
<link rel="icon" type="image/png" href="/favicon.png" />
<!-- Cache Control -->
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0">
<!-- Viewport settings -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<!-- Title and description -->
<title>NX Missing - Nintendo Switch Content Tracker</title>
<meta name="description" content="Easily track missing Nintendo Switch content including games, DLCs, and updates. Get the latest information and stay organized." />
<!-- Open Graph Metadata for Social Sharing -->
<meta property="og:title" content="NX Missing - Nintendo Switch Content Tracker" />
<meta property="og:description" content="Track missing Nintendo Switch content, including games, DLCs, and updates." />
<meta property="og:url" content="https://nx-missing.ghostland.at/" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="en_US" />
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:domain" content="nx-missing.ghostland.at">
<meta property="twitter:url" content="https://nx-missing.ghostland.at/">
<meta name="twitter:title" content="NX Missing - Nintendo Switch Content Tracker">
<meta name="twitter:description" content="Track missing Nintendo Switch content, including games, DLCs, and updates.">
<!-- Author -->
<meta name="author" content="Ghost Land" />
<!-- Keywords -->
<meta name="keywords" content="Nintendo Switch, games tracker, missing content, DLC updates, Nintendo, NX Missing, Ghost eShop" />
<!-- Robots -->
<meta name="robots" content="index, follow" />
<!-- Theme color for mobile browsers -->
<meta name="theme-color" content="#FF6600" />
<!-- Apple Touch Icon -->
<link rel="apple-touch-icon" href="./favicon.png" />
<!-- Manifest -->
<link rel="manifest" href="./manifest.json" />
<!-- Custom Fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" />
<!-- Custom Styles -->
<link rel="stylesheet" href="./styles/main.css" />
</head>
<body>
<div id="root"></div>
<script type="module" src="./src/main.tsx"></script>
</body>
</html>