forked from aYukine/Scoreboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (49 loc) · 2.65 KB
/
index.html
File metadata and controls
52 lines (49 loc) · 2.65 KB
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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<section class="bg-gray-50">
<div class="mx-auto max-w-screen-xl px-4 py-32 lg:flex lg:h-screen lg:items-center">
<div class="mx-auto max-w-xl text-center ">
<div class="items-center flex flex-col">
<img src="/public/Logo.png" alt="Logo" width="150" height="150">
</div>
<h1 class="text-3xl font-extrabold sm:text-5xl">
Welcome to
<strong class="font-extrabold text-red-700 sm:block"> Robot Competitions 2024. </strong>
</h1>
<div class="mt-8 flex flex-wrap justify-center gap-4">
<a class="block w-full rounded bg-red-600 px-12 py-3 text-sm font-medium text-white shadow hover:bg-red-700 focus:outline-none focus:ring active:bg-red-500 sm:w-auto"
href="/controller/controller.html" target="_blank">
Controller
</a>
<a class="block w-full rounded bg-blue-600 px-12 py-3 text-sm font-medium text-white shadow hover:bg-blue-700 focus:outline-none focus:ring active:bg-red-500 sm:w-auto"
href="/display/display.html" target="_blank">
Scoreboard
</a>
</div>
<div class="mt-8 flex flex-wrap justify-center gap-4">
<a class="block w-full rounded bg-yellow-600 px-12 py-3 text-sm font-medium text-white shadow hover:bg-yellow-700 focus:outline-none focus:ring active:bg-yellow-500 sm:w-auto"
href="/controller1/index.html" target="_blank">
Controller 1
</a>
<a class="block w-full rounded bg-green-600 px-12 py-3 text-sm font-medium text-white shadow hover:bg-green-700 focus:outline-none focus:ring active:bg-green-500 sm:w-auto"
href="/Display1/index.html" target="_blank">
New Display
</a>
<a class="block w-full rounded bg-purple-600 px-12 py-3 text-sm font-medium text-white shadow hover:bg-purple-700 focus:outline-none focus:ring active:bg-purple-500 sm:w-auto"
href="/TimeController/index.html" target="_blank">
Time Controller
</a>
</div>
<div></div>
</div>
</div>
</section>
</body>
</html>