-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (77 loc) · 2.65 KB
/
index.html
File metadata and controls
77 lines (77 loc) · 2.65 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#f89200" />
<title>Ragnarok MVP Timer</title>
<meta name="application-name" content="Ragnarok MVP Timer" />
<meta name="description" content="track ragnarok mvp respawn" />
<meta
name="keywords"
content="ragnarok,online,mvp,boss,timer,tracker,respawn"
/>
<meta name="author" content="Lucas Emanuel" />
<meta http-equiv="content-language" content="pt-br, en-US" />
<meta name="rating" content="general" />
<meta name="robots" content="all" />
<!-- Icons -->
<link rel="shortcut icon" href="/favicon.ico" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="/icons/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/icons/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/icons/favicon-16x16.png"
/>
<!-- Facebook Tags -->
<meta property="og:url" content="https://ragnarok-mvp-timer.com/" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Ragnarok MVP Timer" />
<meta property="og:description" content="track ragnarok mvp respawn" />
<meta property="og:image" content="/banner.png" />
<!-- Twitter Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="ragnarok-mvp-timer.com" />
<meta property="twitter:url" content="https://ragnarok-mvp-timer.com/" />
<meta name="twitter:title" content="Ragnarok MVP Timer" />
<meta name="twitter:description" content="track ragnarok mvp respawn" />
<meta name="twitter:image" content="/banner.png" />
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
async
href="https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-JZ65XX6493"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-JZ65XX6493');
</script>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>