-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (31 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>statch</title>
<!-- CSS -->
<link rel="stylesheet" href="styles/tailwind.css" >
<link rel="stylesheet" href="styles/custom.css">
<link rel="icon" href="assets/favicon.ico">
<!-- Fonts -->
<script src="https://kit.fontawesome.com/357f080021.js" crossorigin="anonymous"></script>
<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=JetBrains+Mono:wght@600&display=swap" rel="stylesheet">
</head>
<body class="bg-xblue">
<div class="flex flex-col items-center justify-center w-screen h-screen">
<img src="assets/logo.svg"class="w-32 md:w-64 select-none" draggable="false"/>
<span class="font-jetbrains-mono text-8xl text-white font-bold">statch</span>
<div class="flex flex-row items-center justify-center">
<a href="https://discord.gg/a4PCCQaBXx" target="_blank" class="mr-4 bg-dblue rounded hvr-grow">
<i class="fab fa-discord p-4 text-xgold text-4xl"></i>
</a>
<a href="https://github.com/statch" target="_blank" class="ml-4 bg-dblue rounded hvr-grow">
<i class="fab fa-github p-4 text-xgold text-4xl"></i>
</a>
</div>
</div>
</body>
</html>