forked from elevenski/nors-bot-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfaq.html
158 lines (134 loc) · 4.98 KB
/
faq.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rivvix - FAQ</title>
<link rel="icon" type="image/png" href="https://i.imgur.com/t6LlBb0.png">
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet">
<style>
body {
background: linear-gradient(135deg, #1e3a8a, #000000);
background-size: 200% 200%;
animation: gradientAnimation 15s ease infinite;
color: #E5E7EB;
font-family: 'Arial', sans-serif;
}
@keyframes gradientAnimation {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.navbar {
background-color: #000000;
padding: 1rem;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.navbar a {
color: #ffffff;
text-decoration: none;
font-weight: bold;
margin: 0 15px;
transition: color 0.3s;
}
.navbar a:hover {
color: #93C5FD;
}
.section {
padding: 3rem 1.5rem;
text-align: center;
}
.section h1 {
font-size: 2.5rem;
margin-bottom: 1.5rem;
color: #93C5FD;
font-weight: bold;
position: relative;
display: inline-block;
}
.section h1::after {
content: '';
position: absolute;
left: 0;
bottom: -10px;
width: 50%;
height: 2px;
background-color: #93C5FD;
border-radius: 5px;
}
.faq-box {
background: rgba(0, 0, 0, 0.7);
border-radius: 10px;
padding: 1.5rem;
margin: 1rem 0;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
color: #E5E7EB;
transition: transform 0.3s, box-shadow 0.3s;
}
.faq-box:hover {
transform: scale(1.05);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}
.footer {
background-color: #000000;
padding: 1rem;
color: white;
text-align: center;
}
.footer a {
color: #93C5FD;
text-decoration: none;
font-weight: bold;
}
.footer a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<nav class="navbar">
<a href="#top">Home</a>
<a href="#faq">FAQ</a>
<a href="#contact">Contact</a>
<a href="https://discord.com/invite/nqQRXQv9jq" target="_blank">Support</a>
</nav>
<section id="top" class="section">
<h1>Rivvix FAQ</h1>
<p>Find answers to frequently asked questions about Rivvix, the ultimate Discord slash command bot.</p>
</section>
<section id="faq" class="section">
<h1>Frequently Asked Questions</h1>
<div class="faq-box">
<h2>What is Rivvix?</h2>
<p>Rivvix is a powerful Discord bot that provides a wide range of functionalities using slash commands. It helps with server management, moderation, giveaways, music, and much more.</p>
</div>
<div class="faq-box">
<h2>How do I add Rivvix to my server?</h2>
<p>To add Rivvix to your server, click on the invite link provided on our [Invite Page](https://rivvix.blossomguard.ca/invite).</p>
</div>
<div class="faq-box">
<h2>What are slash commands?</h2>
<p>Slash commands are a type of interaction in Discord that starts with a "/" and provides users with a list of available commands and options directly in the chat interface.</p>
</div>
<div class="faq-box">
<h2>How do I use a slash command?</h2>
<p>Type "/" followed by the command name in any text channel where Rivvix has permissions. A list of available commands and options will appear, guiding you through the usage.</p>
</div>
<div class="faq-box">
<h2>Where can I find the documentation for Rivvix?</h2>
<p>The documentation for Rivvix is available on our [Docs Page](https://rivvix.blossomguard.ca/docs), where you can explore commands, features, and more.</p>
</div>
<div class="faq-box">
<h2>How do I get support for Rivvix?</h2>
<p>For any issues or questions, join our [Support Server](https://discord.com/invite/nqQRXQv9jq) where you can get help from the community and our support team.</p>
</div>
</section>
<footer class="footer">
<p>Made by ZayDocs | Rivvix Team</p>
<p><a href="https://discord.com/invite/nqQRXQv9jq" target="_blank">Join our Support Server</a></p>
</footer>
</body>
</html>