forked from Mantra-Development/Mantra-Web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
99 lines (93 loc) · 3.38 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" />
<link rel="icon" href="/images/logo.png">
<title>Mantra Bot - A Powerful General Purpose Bot</title>
<meta name="description" content="Mantra is a advanced configurable discord bot providing a load of useful features for help with managing a server.
">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<section class="navbar">
<header>
<a id="logo" href="/"><img src="images/logo.png" alt="mantra bot logo"></a></a>
<nav>
<ul class="nav__links">
<li><a href="#">About</a></li>
<li><a href="#">Commands</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</nav>
<a class="cta" href="#">Invite</a>
<p class="menu cta">Menu</p>
</header>
<div class="overlay">
<a class="close">×</a>
<div class="overlay__content">
<a href="#">About</a>
<a href="#">Commands</a>
<a href="#">Contact Us</a>
</div>
</div>
</section>
<section class="hero">
<div id="main">
<h1>Mantra Bot</h1>
</div>
<br>
<div id="description">
<p>A powerful general purpose bot for your discord server </p>
</div>
<br>
<div id="invite-button">
<a href="#"></a><button class="button">Join Support Server</button>
</div>
</section>
<section>
<div class="row">
<h1>Our Features</h1>
<hr>
</div>
<div class="row">
<div class="column">
<div class="card">
<div class="icon">
<i class="fa-solid fa-user"></i>
</div>
<h3>User Friendly</h3>
<p>
Mantra Bot offers a lot of features and <a href="https://github.com/Mantra-Development/Mantra-Bot/blob/main/README.md">slash commands</a>, and it is very user-friendly. To make things simple for users, we implemented the slash commands in this bot.
</p>
</div>
</div>
<div class="column">
<div class="card">
<div class="icon">
<i class="fa-solid fa-shield-halved"></i>
</div>
<h3>Super Secure</h3>
<p>
The users of Mantra Bot can use it in complete security. Ephemeral and private messages are implemented with the user's privacy as our top priority.
</p>
</div>
</div>
<div class="column">
<div class="card">
<div class="icon">
<i class="fa-solid fa-gamepad"></i>
</div>
<h3>Entertaining</h3>
<p>
Mantra Bot consists of many commands that can entertain you including memes, magic ball, urban commands etc.
</p>
</div>
</div>
</div>
</section>
<script type="text/javascript" src="js/responsive.js"></script>
</body>
</html>