-
Notifications
You must be signed in to change notification settings - Fork 0
/
bot.html
48 lines (45 loc) · 2.29 KB
/
bot.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
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="images/logo.png">
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&display=swap" rel="stylesheet">
<link href="styles.css" rel="stylesheet">
<title>SpeakEasy: Discord Bot</title>
</head>
<body>
<header id="main-header">
<div id="main-header-content">
<image src="images/whitelogonobackground.png" id="main-header-logo"></image>
<div id="main-header-pages">
<a href="https://speakeasy.ooo" class="main-header-pages-item" id="home-button">Home</a>
<a href="https://speakeasy.ooo/bot" class="main-header-pages-item" id="bot-button">Bot</a>
<!-- <a href="https://chrome.google.com/webstore/detail/speakeasy/bfdnmjblplbeeemfopkocdgfdhcdjpea" target="_blank" rel="noopener noreferrer" class="main-header-pages-item" id="try-it-button">Try it Out</a> -->
</div>
</div>
</header>
<div id="main-container">
<div id="bot-title-container">
<h2 id="bot-title">SpeakEasy Bot</h2>
<div id="bot-stats">
<h3 class="bot-stat" id="users">Fetching users...</h3>
<h3 class="bot-stat" id="servers">Fetching servers...</h3>
<h3 class="bot-stat" id="sentences">Fetching sentences...</h3>
</div>
<a href="https://discord.com/api/oauth2/authorize?client_id=1140830654502817834&permissions=277025442822&scope=applications.commands%20bot" target="_blank" rel="noopener noreferrer" class="glass-button" id="homepage-bot-button">Invite SpeakEasy</a>
</div>
<div id="blobs-container">
<div class="homepage-blob" id="homepage-blob-one"></div>
<div class="homepage-blob" id="homepage-blob-two"></div>
<div class="homepage-blob" id="homepage-blob-three"></div>
<div class="homepage-blob" id="homepage-blob-four"></div>
</div>
<div class="placeholder">Command info coming soon!</div>
<div id="commands-container">
</div>
</div>
</body>
<script src="jquery-3.7.1.min.js"></script>
<script src="bot.js"></script>
</html>