-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
32 lines (31 loc) · 1018 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link href="/favicon.ico" rel="icon" />
<meta
content="width=device-width, initial-scale=1.0, user-scalable=no"
name="viewport"
/>
<meta
content="Not Even Close is a tool for World of Warcraft that will determine if you will live or die to enemy abilities in Mythic+ dungeon keys, given your stats and defensives"
name="description"
/>
<title>Not Even Close</title>
</head>
<body>
<div id="root"></div>
<link href="https://wow.zamimg.com/" rel="preconnect" />
<script src="/src/main.tsx" type="module"></script>
<script defer src="/wowheadtooltips.js"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-N6CRB9B3CL"></script>
<script>
window.dataLayer = window.dataLayer || []
function gtag() {
dataLayer.push(arguments)
}
gtag('js', new Date())
gtag('config', 'G-N6CRB9B3CL')
</script>
</body>
</html>