-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (23 loc) · 849 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
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-92V836YEXQ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-92V836YEXQ');
</script>
<!-- Google adsense -->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3728521173333912"
crossorigin="anonymous">
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Codeforces Tracker</title>
</head>
<body class="h-full">
<div id="app" class="min-h-screen bg-gray-200 dark:bg-gray-900"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>