-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwelcome.html
36 lines (36 loc) · 2.08 KB
/
welcome.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Modmail</title>
<script src="https://cdn.twind.style" crossorigin></script>
</head>
<body>
<div class="relative flex min-h-screen flex-col justify-center overflow-hidden bg-amber-400 py-6 sm:py-12">
<div class="relative bg-amber-100 px-6 pt-10 pb-8 shadow-xl ring-1 ring-gray-900/5 sm:mx-auto sm:max-w-lg sm:rounded-lg sm:px-10">
<div class="mx-auto max-w-md">
<h1 class="text-4xl font-thin">Modmail</h1>
<div class="divide-y divide-gray-300/50">
<div class="space-y-6 py-8 text-base leading-7 text-gray-600">
<p>
<i>Modmail</i> is a simple bot for handling staff support requests for a Dsicord server. It uses Discord's existing threads and adds a more user-friendly interface for starting a new one, with the intent of getting in touch with moderators or other support staff.
</p>
<p>
The bot works entirely by Discord's interactions system. This means that the bot does not read any messages from the server, and instead functions entirely passively.
</p>
<p>
<a href="https://discord.com/api/oauth2/authorize?client_id=1195759348438282281&permissions=395137138688&scope=bot"
class="border-2 border-stone-600 rounded-md p-0.5 bg-amber-200 hover:bg-amber-300 select-none">
Add Modmail to your server!
</a>
</p>
<hr class="border-stone-600">
<p>
This bot is maintained by
<a href="https://myrkvi.no/" class="underline">Myrkvi</a>.
</div>
</div>
</div>
</div>
</div>
</body>
</html>