blob: ea969697ce38204c1881059eb811da5133bc58da (
plain)
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
|
<!DOCTYPE>
<html>
<head>
<link rel="stylesheet" type="text/css" href="/static/style.css">
</head>
<body>
<div class="min-h-screen w-full flex justify-center">
<div class="lg:w-1/2 w-full flex items-center flex-col">
{{> header.html }}
<!-- Large banner -->
<div class="w-full p-12 my-4 space-y-8 lg:space-y-0 flex flex-col lg:flex-row items-center bg-gradient-to-t from-green-400 to-green-300">
<img src="static/img/bot_pfp.png" alt="" width="256">
<div class="lg:w-1/2 w-full text-center lg:text-right flex flex-col space-y-8 flex-grow">
<div>
<h1 class="text-4xl font-semibold text-shadow">
Enhance your chat with the bot
</h1>
<p class="text-md text-shadow">
A multi-utility Twitch chat bot that brings<br/>
a lot of functionality into your chat.
</p>
</div>
<a href="/wiki/join" class="h-16 w-full">
<button
class="h-full w-full lg:w-1/4 bg-red-500 text-lg font-semibold rounded-lg shadow-lg"
href="/wiki/join"
>
Get the bot
</button>
</a>
</div>
</div>
</div>
</div>
</body>
</html>
|