-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (72 loc) · 2.62 KB
/
index.html
File metadata and controls
72 lines (72 loc) · 2.62 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Dashboard</title>
<link rel="icon" type="image/x-icon" href="/public/images/favicon.ico" />
<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/images/Logo.png"
alt="Logo"
width="250"
height="150"
/>
<img
src="/public/images/logo(1).png"
alt="Logo"
width="500"
height="150"
/>
</div>
<h1 class="text-3xl font-extrabold sm:text-5xl mt-2">
Welcome to
<strong class="font-extrabold text-red-700 sm:block mt-2">
ABU Robocon 2025
</strong>
</h1>
<div class="mt-8 flex flex-wrap justify-center gap-4">
<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="/display/index.html"
target="_blank"
>
Score Display
</a>
<a
class="block w-full rounded bg-orange-600 px-12 py-3 text-sm font-medium text-white shadow hover:bg-orange-700 focus:outline-none focus:ring active:bg-orange-500 sm:w-auto"
href="/timecontroller/index.html"
target="_blank"
>
Time Controller
</a>
</div>
<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="/redcontroller/index.html"
target="_blank"
>
Red 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-blue-500 sm:w-auto"
href="/bluecontroller/index.html"
target="_blank"
>
Blue Controller
</a>
</div>
</div>
</div>
</section>
</body>
</html>