blob: cd676f9336fa189ab7385f867ed130d0eafaec75 (
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
|
<div class="w-full mt-8 bg-gray-100 flex justify-center items-center">
<div class="w-full lg:w-1/2 py-14 px-4 lg:px-0 flex flex-col lg:flex-row space-y-4 lg:space-y-0">
<!-- Copyright -->
<div class="flex flex-col space-y-4 flex-grow">
<div class="flex flex-row items-center">
<img src="static/img/logo.png" alt="" width="84">
<div class="flex flex-col mx-4">
<h1 class="text-2xl font-semibold font-zilla">iLotterytea's</h1>
<p class="text-2xl font-zilla">Twitch Bot</p>
</div>
</div>
<p class="text-xl">
Maintained by
<a
class="text-green-800 hover:text-green-600"
href="{{ contact_url }}"
>
{{ contact_name }}
</a>
</p>
</div>
<!-- Links -->
<div class="flex flex-row justify-between items-center">
<!-- Git -->
<a
class="text-2xl bg-gray-200 hover:bg-green-200 p-2 rounded-lg transition-colors"
href="https://git.ilotterytea.kz/bot"
>
<i class="fa-brands fa-git"></i>
</a>
</div>
</div>
</div>
|