-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (45 loc) · 1.27 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/wildhacks2024-favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>WildHacks 2024</title>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-QZDMLFG27L"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-QZDMLFG27L');
</script>
</head>
<body>
<a
id="mlh-trust-badge"
style="
display: block;
max-width: 80px;
min-width: 30px;
position: fixed;
right: 24px;
top: 0;
width: 10%;
z-index: 10000;
"
href="https://mlh.io/na?utm_source=na-hackathon&utm_medium=TrustBadge&utm_campaign=2024-season&utm_content=white"
target="_blank"
><img
src="https://s3.amazonaws.com/logged-assets/trust-badge/2024/mlh-trust-badge-2024-white.svg"
alt="Major League Hacking 2024 Hackathon Season"
style="width: 100%"
/></a>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>