forked from WoWAnalyzer/WoWAnalyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
113 lines (110 loc) · 3.44 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!doctype html>
<html lang="en" prefix="og: http://ogp.me/ns#">
<head>
<title>WoWAnalyzer</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="shortcut icon" href="/favicon.ico" />
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&family=Poppins:wght@400;600;700;800&display=swap"
rel="stylesheet"
/>
<meta property="og:title" content="WoWAnalyzer" />
<meta
property="og:description"
content="Use WoWAnalyzer to analyze your gameplay and get suggestions to become a better raider."
/>
<meta property="og:type" content="article" />
<meta property="og:url" content="https://wowanalyzer.com" />
<meta property="og:image" content="https://wowanalyzer.com/favicon.png" />
<meta
name="keywords"
content="World of Warcraft, WoW, Raiding, Analysis, Gameplay, Performance, MMO, MMORPG, Games, Combatlog, Improving, DPS, Battle for Azeroth, Bosses"
/>
<!-- Google Translate doesn't play well with React (leading to crashes) -->
<meta name="google" content="notranslate" />
<link
rel="search"
type="application/opensearchdescription+xml"
href="/search.xml"
title="WoWAnalyzer"
/>
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<style type="text/css">
#splash {
background: #14161a;
color: #fff;
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
text-align: center;
display: flex;
align-items: center;
font-family: 'Trebuchet MS', Helvetica, sans-serif;
box-shadow: 0 0 200px #172c34 inset;
}
#splash > div {
width: 100%;
}
#splash h1 {
font-size: 170px;
font-weight: 600;
letter-spacing: -1px;
margin: 0;
color: #ffffff;
transform: scaleY(1.1);
text-transform: uppercase;
}
@media (max-width: 1200px) {
#splash h1 {
font-size: 150px;
}
}
@media (max-width: 1000px) {
#splash h1 {
font-size: 130px;
}
}
@media (max-width: 800px) {
#splash h1 {
font-size: 90px;
}
}
@media (max-width: 530px) {
#splash h1 {
font-size: 50px;
}
}
#splash p {
color: #aaa;
font-size: 0.9em;
}
#splash p a {
color: #e45a5a;
}
</style>
</head>
<body>
<noscript> You need to enable JavaScript to run this app. </noscript>
<div id="app-mount">
<div id="splash">
<div>
<h1>WoWAnalyzer</h1>
<small>Loading...</small>
<p>
If the app won't load your browser might not be compatible. Get a compatible browser at
<a href="https://outdatedbrowser.com/">outdatedbrowser.com</a>.<br />
Let us know on <a href="https://wowanalyzer.com/discord">Discord</a> if the problem
persist.
</p>
</div>
</div>
</div>
<script type="module" src="/src/index.tsx"></script>
<script src="https://wow.zamimg.com/widgets/power.js"></script>
</body>
</html>