-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
83 lines (83 loc) · 3.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sven - Your AI-Powered Discord Bot</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<style>
body {
background-color: #f4f7f9;
font-family: Arial, sans-serif;
}
.hero-section {
padding: 100px 0 50px 0;
text-align: center;
}
.features-section {
padding: 50px 0;
text-align: center;
}
.btn-invite, .btn-join {
background-color: #7289DA;
color: white;
padding: 15px 30px;
border-radius: 5px;
font-size: 18px;
text-decoration: none;
margin-top: 30px;
display: inline-block;
}
.btn-invite:hover, .btn-join:hover {
background-color: #5865F2;
color: white;
text-decoration: none;
}
.feature {
margin-bottom: 30px;
padding: 20px;
border-bottom: 1px solid #ddd;
}
.feature-icon {
font-size: 50px;
color: #7289DA;
}
.features-section h2 {
margin-bottom: 50px;
}
</style>
</head>
<body>
<section class="hero-section">
<div class="container">
<h1>Welcome to Sven</h1>
<p>An AI-Powered Discord moderation bot, adept at scanning both images and text for inappropriate content.</p>
<a href="https://discord.com/api/oauth2/authorize?client_id=1106027638180565003&permissions=1099780144144&scope=bot" class="btn-invite">Invite Sven</a>
<a href="https://discord.gg/yVezB9y4M4" class="btn-join">Join Discord Server</a>
</div>
</section>
<section class="features-section">
<div class="container">
<h2>Features</h2>
<div class="row">
<div class="col-md-4 feature">
<i class="feature-icon fas fa-shield-alt"></i>
<h3>Secure Moderation</h3>
<p>Sven ensures a safe community experience by moderating both images and text for inappropriate content.</p>
</div>
<div class="col-md-4 feature">
<i class="feature-icon fas fa-robot"></i>
<h3>AI-Powered</h3>
<p>With cutting-edge AI technology, Sven effectively filters out spam and harmful content from your server.</p>
</div>
<div class="col-md-4 feature">
<i class="feature-icon fas fa-users"></i>
<h3>Community Building</h3>
<p>Sven allows you to focus more on your community, taking over the moderation tasks seamlessly.</p>
</div>
</div>
</div>
</section>
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
</body>
</html>