-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.html
43 lines (38 loc) · 2.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="assets/github_logo.png" />
<title>GitBot</title>
<!-- CSS -->
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet">
<link rel="stylesheet" href="styles/custom.css">
<!-- Fonts -->
<script src="https://kit.fontawesome.com/357f080021.js" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<link href="https://db.onlinewebfonts.com/c/06d1b1518a180e5a9cca2c23401ec40a?family=Circular+Std+Bold" rel="stylesheet" type="text/css"/>
</head>
<body class="bg-black">
<div class="flex flex-col items-center justify-center w-screen h-screen text-center">
<img src="assets/github_logo.svg" class="w-32 md:w-64 select-none drag-none mb-5" alt="GitHub Logo"/>
<span class="font-circular text-5xl md:text-8xl text-white font-bold mb-5">GitBot</span>
<div class="flex flex-col items-center justify-center">
<div class="flex flex-row items-center justify-center">
<a href="https://discord.com/oauth2/authorize?client_id=761269120691470357&permissions=449428442176&scope=bot%20applications.commands" target="_blank" class="flex flex-row items-center justify-center mr-2 py-2 px-4 bg-gray-900 rounded hvr-grow">
<i class="fab fa-discord text-white text-2xl md:text-3xl mr-1"></i>
<span class="text-2xl md:text-3xl text-white font-inter">Invite</span>
</a>
<a href="https://statch.org/" class="flex flex-row items-center justify-center ml-2 py-2 px-4 bg-gray-900 rounded hvr-grow">
<i class="fas fa-globe text-white text-2xl md:text-3xl mr-1"></i>
<span class="text-2xl md:text-3xl text-white font-inter">statch</span>
</a>
</div>
<a href="/gitbot/legal" class="flex flex-row items-center justify-center mt-4 py-2 px-4 bg-gray-900 rounded hvr-grow w-auto">
<i class="fas fa-bookmark text-white text-2xl md:text-3xl mr-1"></i>
<span class="text-2xl md:text-3xl text-white font-inter">Legal</span>
</a>
</div>
</div>
</body>
</html>