-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
68 lines (63 loc) · 1.57 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
<!DOCTYPE html>
<html
lang="en"
class="sm:scroll-smooth min-h-full min-w-full"
>
<head>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-Z1E7CMGKTX"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-Z1E7CMGKTX");
</script>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4390362068359777"
crossorigin="anonymous"></script>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<!-- Robot Font: -->
<link
rel="preconnect"
href="https://fonts.googleapis.com"
/>
<link
rel="preconnect"
href="https://fonts.gstatic.com"
crossorigin
/>
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet"
/>
<link
rel="icon"
type="image/jpg"
href="/img/ftcFavicon.jpg"
/>
<title>FTC 14607 Robot Uprising</title>
</head>
<style>
::-webkit-scrollbar {
display: none;
}
</style>
<body class="relative min-h-screen min-w-full flex flex-col">
<div
id="root"
class="min-h-screen min-w-full flex flex-col font-Roboto pb-48 pt-32"
></div>
<script
type="module"
src="/src/main.jsx"
></script>
</body>
</html>