modified: templates/about.html
modified: templates/contact.html modified: templates/faq.html modified: templates/help.html modified: templates/landing.html
This commit is contained in:
@@ -3,20 +3,275 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Help</title>
|
||||
<title>Help Center - 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-color: #f7f7f7;
|
||||
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-color: #17a2b8;
|
||||
background: linear-gradient(135deg, rgba(49, 130, 206, 0.9) 0%, rgba(43, 108, 176, 0.8) 100%);
|
||||
backdrop-filter: blur(10px);
|
||||
color: white;
|
||||
padding: 50px 0;
|
||||
padding: 4rem 0;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
.help-section {
|
||||
margin: 50px 0;
|
||||
|
||||
.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 4s 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;
|
||||
}
|
||||
|
||||
.help-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);
|
||||
}
|
||||
|
||||
.help-header {
|
||||
text-align: center;
|
||||
margin-bottom: 3rem;
|
||||
padding-bottom: 1rem;
|
||||
border-bottom: 1px solid rgba(102, 126, 234, 0.1);
|
||||
}
|
||||
|
||||
.help-title {
|
||||
color: #e2e8f0;
|
||||
font-weight: 700;
|
||||
font-size: 2rem;
|
||||
margin-bottom: 0.5rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 0.75rem;
|
||||
}
|
||||
|
||||
.help-subtitle {
|
||||
color: #a0aec0;
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
||||
.help-options {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||
gap: 2rem;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.help-card {
|
||||
background: rgba(45, 55, 72, 0.8);
|
||||
border: 1px solid rgba(102, 126, 234, 0.2);
|
||||
border-radius: 15px;
|
||||
padding: 2rem;
|
||||
transition: all 0.3s ease;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.help-card::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 4px;
|
||||
background: linear-gradient(90deg, #3182ce, #2b6cb0);
|
||||
transform: scaleX(0);
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
.help-card:hover::before {
|
||||
transform: scaleX(1);
|
||||
}
|
||||
|
||||
.help-card:hover {
|
||||
transform: translateY(-8px);
|
||||
box-shadow: 0 15px 35px rgba(49, 130, 206, 0.2);
|
||||
border-color: rgba(49, 130, 206, 0.5);
|
||||
}
|
||||
|
||||
.help-icon {
|
||||
font-size: 3rem;
|
||||
color: #3182ce;
|
||||
margin-bottom: 1.5rem;
|
||||
animation: float 3s ease-in-out infinite;
|
||||
}
|
||||
|
||||
@keyframes float {
|
||||
0%, 100% { transform: translateY(0px); }
|
||||
50% { transform: translateY(-10px); }
|
||||
}
|
||||
|
||||
.help-card-title {
|
||||
color: #e2e8f0;
|
||||
font-weight: 600;
|
||||
font-size: 1.3rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.help-card-description {
|
||||
color: #a0aec0;
|
||||
line-height: 1.6;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.help-btn {
|
||||
background: linear-gradient(135deg, #3182ce 0%, #2b6cb0 100%);
|
||||
border: none;
|
||||
padding: 0.75rem 1.5rem;
|
||||
border-radius: 50px;
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
font-weight: 600;
|
||||
transition: all 0.3s ease;
|
||||
box-shadow: 0 4px 15px rgba(49, 130, 206, 0.3);
|
||||
}
|
||||
|
||||
.help-btn:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 8px 25px rgba(49, 130, 206, 0.4);
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.help-btn.discord {
|
||||
background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
|
||||
box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
|
||||
}
|
||||
|
||||
.help-btn.discord:hover {
|
||||
box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
|
||||
}
|
||||
|
||||
.quick-links {
|
||||
background: rgba(45, 55, 72, 0.6);
|
||||
border: 1px solid rgba(102, 126, 234, 0.2);
|
||||
border-radius: 15px;
|
||||
padding: 1.5rem;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.quick-links h3 {
|
||||
color: #e2e8f0;
|
||||
font-weight: 600;
|
||||
margin-bottom: 1rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.quick-link-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
padding: 0.75rem;
|
||||
margin-bottom: 0.5rem;
|
||||
border-radius: 8px;
|
||||
transition: all 0.3s ease;
|
||||
color: #a0aec0;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.quick-link-item:hover {
|
||||
background: rgba(49, 130, 206, 0.1);
|
||||
color: #e2e8f0;
|
||||
text-decoration: none;
|
||||
transform: translateX(5px);
|
||||
}
|
||||
|
||||
.quick-link-icon {
|
||||
color: #3182ce;
|
||||
}
|
||||
|
||||
.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: #3182ce;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 1000px;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.hero h1 {
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
|
||||
.hero .lead {
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
||||
.help-container {
|
||||
margin: 2rem 1rem;
|
||||
padding: 1.5rem;
|
||||
}
|
||||
|
||||
.help-options {
|
||||
grid-template-columns: 1fr;
|
||||
gap: 1.5rem;
|
||||
}
|
||||
|
||||
.help-title {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
@@ -25,22 +280,73 @@
|
||||
|
||||
<section class="hero">
|
||||
<div class="container">
|
||||
<h1>Help Center</h1>
|
||||
<h1>
|
||||
<i class="fas fa-life-ring"></i> Help Center
|
||||
</h1>
|
||||
<p class="lead">Find the resources you need to get help with Multus Bot.</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<div class="container help-section">
|
||||
<h2>How Can We Help?</h2>
|
||||
<p>Below are the available resources to help you with Multus Bot:</p>
|
||||
<ul class="list-group">
|
||||
<li class="list-group-item"><a href="/faq">Check our FAQ</a></li>
|
||||
<li class="list-group-item">Contact SimolZimol directly on Discord: <a href="https://discordapp.com/users/@simolzimol">@simolzimol</a></li>
|
||||
</ul>
|
||||
<div class="container">
|
||||
<div class="help-container">
|
||||
<div class="help-header">
|
||||
<h2 class="help-title">
|
||||
<i class="fas fa-hands-helping"></i> How Can We Help?
|
||||
</h2>
|
||||
<p class="help-subtitle">Choose from the available support options below</p>
|
||||
</div>
|
||||
|
||||
<div class="help-options">
|
||||
<div class="help-card">
|
||||
<i class="fas fa-question-circle help-icon"></i>
|
||||
<h3 class="help-card-title">Frequently Asked Questions</h3>
|
||||
<p class="help-card-description">
|
||||
Find answers to the most common questions about Multus Bot features, functionality, and usage.
|
||||
</p>
|
||||
<a href="/faq" class="help-btn">
|
||||
<i class="fas fa-book"></i> View FAQ
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="help-card">
|
||||
<i class="fab fa-discord help-icon"></i>
|
||||
<h3 class="help-card-title">Direct Discord Support</h3>
|
||||
<p class="help-card-description">
|
||||
Get personalized help directly from SimolZimol, the creator of Multus Bot, on Discord.
|
||||
</p>
|
||||
<a href="https://discordapp.com/users/@simolzimol" class="help-btn discord">
|
||||
<i class="fab fa-discord"></i> Contact @simolzimol
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="quick-links">
|
||||
<h3>
|
||||
<i class="fas fa-bolt quick-link-icon"></i> Quick Links
|
||||
</h3>
|
||||
<a href="/about" class="quick-link-item">
|
||||
<i class="fas fa-info-circle quick-link-icon"></i>
|
||||
<span>About Multus Bot</span>
|
||||
</a>
|
||||
<a href="/contact" class="quick-link-item">
|
||||
<i class="fas fa-envelope quick-link-icon"></i>
|
||||
<span>Contact Information</span>
|
||||
</a>
|
||||
<a href="/login" class="quick-link-item">
|
||||
<i class="fas fa-sign-in-alt quick-link-icon"></i>
|
||||
<span>Login to Dashboard</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<footer class="text-center py-3">
|
||||
<p>© 2024 Multus Bot. Reach out to us for any assistance.</p>
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<p>
|
||||
<i class="fas fa-support footer-icon"></i>
|
||||
© 2025 Multus Bot. We're here to help! | Built with ❤️ by SimolZimol
|
||||
</p>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
|
||||
|
||||
Reference in New Issue
Block a user