-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
49 lines (46 loc) · 2.44 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
<!DOCTYPE html>
<html>
<head>
<title>KIT Manager</title>
<link href="/assets/css/output.css" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="/assets/images/favicon.ico">
<meta charset="UTF-8">
</head>
<body class="dark text-white">
<div class="dark:bg-gray-900 min-h-screen">
<div class="container max-w-7xl mx-auto p-4 pt-20 mb-12">
<h1 class="uppercase text-3xl text-center mb-8">
KIT Manager
</h1>
<div class="text-center flex flex-row justify-center items-center gap-6 mb-8">
<a href="https://www.facebook.com/kitclubKMA" target="_blank">
<img src="/assets/images/kit-logo.png" class="w-20 rounded-full" />
</a>
<a href="https://actvn.edu.vn" target="_blank">
<img src="/assets/images/kma-logo.png" class="w-20 rounded-full" />
</a>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-2 gap-8">
<a href="/calendar/"
class="block dark:bg-gray-700 p-8 rounded-2xl text-center dark:hover:shadow-2xl dark:hover:shadow-cyan-500/50 dark:hover:bg-cyan-500 transition-all duration-150 ease-in-out">
<h2 class="text-xl mb-4 uppercase">KIT Calendar</h2>
<span>Cung cấp giao diện quản lý lịch học đẹp mắt</span>
</a>
<!-- <a href="/member"
class="block dark:bg-gray-700 p-8 rounded-2xl text-center dark:hover:shadow-2xl dark:hover:shadow-cyan-500/50 dark:hover:bg-cyan-500 transition-all duration-150 ease-in-out">
<h2 class="text-xl mb-4 uppercase">KIT Member</h2>
<span>Dành cho thành viên của câu lạc bộ KMA IT</span>
</a> -->
<a href="/tinchi/"
class="block dark:bg-gray-700 p-8 rounded-2xl text-center dark:hover:shadow-2xl dark:hover:shadow-cyan-500/50 dark:hover:bg-cyan-500 transition-all duration-150 ease-in-out">
<h2 class="text-xl mb-4 uppercase">KIT Tinchi</h2>
<span>Giúp sinh viên KMA sắp xếp lịch học hợp lý trước khi đăng ký học</span>
</a>
</div>
</div>
<footer class="text-center">
© 2023 - KIT Manager
</footer>
</div>
</body>
</html>