modified: templates/contact.html modified: templates/faq.html modified: templates/help.html modified: templates/landing.html
304 lines
9.8 KiB
HTML
304 lines
9.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>FAQ - Multus Bot</title>
|
|
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
background: linear-gradient(135deg, #0c1426 0%, #1a1f2e 25%, #2d3748 75%, #0c1426 100%);
|
|
min-height: 100vh;
|
|
color: #e2e8f0;
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
}
|
|
|
|
.hero {
|
|
background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(139, 92, 246, 0.8) 100%);
|
|
backdrop-filter: blur(10px);
|
|
color: white;
|
|
padding: 4rem 0;
|
|
text-align: center;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.hero::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
|
|
animation: shimmer 3s linear infinite;
|
|
}
|
|
|
|
@keyframes shimmer {
|
|
0% { transform: translateX(-100%); }
|
|
100% { transform: translateX(100%); }
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: 3rem;
|
|
font-weight: 700;
|
|
margin-bottom: 1rem;
|
|
text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.hero .lead {
|
|
font-size: 1.3rem;
|
|
font-weight: 400;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.faq-container {
|
|
background: rgba(26, 31, 46, 0.8);
|
|
backdrop-filter: blur(15px);
|
|
border: 1px solid rgba(102, 126, 234, 0.2);
|
|
border-radius: 20px;
|
|
padding: 2rem;
|
|
margin: 3rem auto;
|
|
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
.faq-header {
|
|
text-align: center;
|
|
margin-bottom: 2rem;
|
|
padding-bottom: 1rem;
|
|
border-bottom: 1px solid rgba(102, 126, 234, 0.1);
|
|
}
|
|
|
|
.faq-title {
|
|
color: #e2e8f0;
|
|
font-weight: 700;
|
|
font-size: 2rem;
|
|
margin-bottom: 0.5rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.faq-subtitle {
|
|
color: #a0aec0;
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.faq-item {
|
|
background: rgba(45, 55, 72, 0.8);
|
|
border: 1px solid rgba(102, 126, 234, 0.2);
|
|
border-radius: 15px;
|
|
margin-bottom: 1rem;
|
|
padding: 1.5rem;
|
|
transition: all 0.3s ease;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.faq-item::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 3px;
|
|
background: linear-gradient(90deg, #667eea, #764ba2);
|
|
transform: scaleX(0);
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.faq-item:hover::before {
|
|
transform: scaleX(1);
|
|
}
|
|
|
|
.faq-item:hover {
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
|
|
border-color: rgba(102, 126, 234, 0.4);
|
|
}
|
|
|
|
.faq-question {
|
|
color: #e2e8f0;
|
|
font-weight: 600;
|
|
font-size: 1.1rem;
|
|
margin-bottom: 0.75rem;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.faq-answer {
|
|
color: #a0aec0;
|
|
line-height: 1.6;
|
|
margin: 0;
|
|
}
|
|
|
|
.question-icon {
|
|
color: #667eea;
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.contact-highlight {
|
|
color: #667eea;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.footer {
|
|
background: linear-gradient(135deg, #0c1426 0%, #1a1f2e 100%);
|
|
color: #a0aec0;
|
|
padding: 2rem 0;
|
|
text-align: center;
|
|
border-top: 1px solid rgba(102, 126, 234, 0.1);
|
|
margin-top: 3rem;
|
|
}
|
|
|
|
.footer p {
|
|
margin: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.footer-icon {
|
|
color: #667eea;
|
|
}
|
|
|
|
.container {
|
|
max-width: 900px;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.hero h1 {
|
|
font-size: 2.5rem;
|
|
}
|
|
|
|
.hero .lead {
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.faq-container {
|
|
margin: 2rem 1rem;
|
|
padding: 1.5rem;
|
|
}
|
|
|
|
.faq-title {
|
|
font-size: 1.5rem;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
{% include 'navbar.html' %}
|
|
|
|
<section class="hero">
|
|
<div class="container">
|
|
<h1>
|
|
<i class="fas fa-question-circle"></i> Frequently Asked Questions
|
|
</h1>
|
|
<p class="lead">Find answers to the most common questions about Multus Bot.</p>
|
|
</div>
|
|
</section>
|
|
|
|
<div class="container">
|
|
<div class="faq-container">
|
|
<div class="faq-header">
|
|
<h2 class="faq-title">
|
|
<i class="fas fa-lightbulb"></i> Help & Support
|
|
</h2>
|
|
<p class="faq-subtitle">Everything you need to know about using Multus Bot</p>
|
|
</div>
|
|
|
|
<div class="faq-item">
|
|
<div class="faq-question">
|
|
<i class="fas fa-robot question-icon"></i>
|
|
What is Multus Bot?
|
|
</div>
|
|
<p class="faq-answer">
|
|
Multus Bot is an AI-powered Discord bot created by SimolZimol, featuring intelligent automation,
|
|
server management tools, and advanced chat assistance. It's currently available exclusively
|
|
on the Ludi et Historia server, providing a comprehensive suite of moderation and engagement features.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="faq-item">
|
|
<div class="faq-question">
|
|
<i class="fas fa-cogs question-icon"></i>
|
|
How do I use Multus Bot?
|
|
</div>
|
|
<p class="faq-answer">
|
|
You can use Multus Bot by joining the Ludi et Historia server and interacting with its features
|
|
through Discord commands. Access your dashboard through this web interface to view statistics,
|
|
manage giveaways, and configure bot settings for your server experience.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="faq-item">
|
|
<div class="faq-question">
|
|
<i class="fas fa-gift question-icon"></i>
|
|
How do giveaways work?
|
|
</div>
|
|
<p class="faq-answer">
|
|
Multus Bot features an integrated giveaway system where you can participate in server giveaways
|
|
and track your winnings. Winners are selected automatically, and you can view your giveaway
|
|
history and redeem prizes through your user dashboard.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="faq-item">
|
|
<div class="faq-question">
|
|
<i class="fas fa-chart-line question-icon"></i>
|
|
What are points and levels?
|
|
</div>
|
|
<p class="faq-answer">
|
|
The bot tracks your server activity through a points and leveling system. Earn points by
|
|
participating in chat, completing activities, and engaging with the community. Your level
|
|
reflects your overall contribution and unlocks various server privileges.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="faq-item">
|
|
<div class="faq-question">
|
|
<i class="fas fa-headset question-icon"></i>
|
|
Who can I contact for support?
|
|
</div>
|
|
<p class="faq-answer">
|
|
If you need help or have questions about Multus Bot, contact
|
|
<span class="contact-highlight">@simolzimol</span> on Discord.
|
|
Our support team is available to help with bot features, troubleshooting, and general inquiries.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="faq-item">
|
|
<div class="faq-question">
|
|
<i class="fas fa-shield-alt question-icon"></i>
|
|
Is my data safe?
|
|
</div>
|
|
<p class="faq-answer">
|
|
Yes, Multus Bot follows Discord's privacy guidelines and data protection standards.
|
|
We only collect necessary information for bot functionality and server management.
|
|
Your personal data is securely stored and never shared with third parties.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<footer class="footer">
|
|
<div class="container">
|
|
<p>
|
|
<i class="fas fa-code footer-icon"></i>
|
|
© 2025 Multus Bot. All rights reserved. | Built with ❤️ by SimolZimol
|
|
</p>
|
|
</div>
|
|
</footer>
|
|
|
|
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.2/dist/js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
</html>
|