Files
Discord-ai-chatbot/templates/footer.html
SimolZimol 215d4bd11e modified: app.py
modified:   templates/footer.html
2025-08-24 23:17:17 +02:00

272 lines
7.4 KiB
HTML

<!-- Footer Component -->
<footer class="site-footer mt-5">
<div class="container-fluid">
<div class="footer-content">
<div class="row">
<!-- About Section -->
<div class="col-lg-3 col-md-6 mb-4">
<h5 class="footer-title">
<i class="fas fa-robot"></i> Multus Bot
</h5>
<p class="footer-text">
Advanced Discord moderation and management bot with comprehensive warning systems,
automated moderation, and interactive web panels.
</p>
<div class="footer-social">
<a href="#" class="social-link" title="Discord">
<i class="fab fa-discord"></i>
</a>
<a href="#" class="social-link" title="GitHub">
<i class="fab fa-github"></i>
</a>
</div>
</div>
<!-- Quick Links -->
<div class="col-lg-3 col-md-6 mb-4">
<h5 class="footer-title">
<i class="fas fa-link"></i> Quick Links
</h5>
<ul class="footer-links">
<li><a href="{{ url_for('user_landing_page') }}"><i class="fas fa-home"></i> Dashboard</a></li>
<li><a href="{{ url_for('about') }}"><i class="fas fa-info-circle"></i> About</a></li>
<li><a href="{{ url_for('faq') }}"><i class="fas fa-question-circle"></i> FAQ</a></li>
<li><a href="{{ url_for('help_page') }}"><i class="fas fa-life-ring"></i> Help & Support</a></li>
</ul>
</div>
<!-- Features -->
<div class="col-lg-3 col-md-6 mb-4">
<h5 class="footer-title">
<i class="fas fa-star"></i> Features
</h5>
<ul class="footer-links">
<li><a href="#"><i class="fas fa-shield-alt"></i> Warning System</a></li>
<li><a href="#"><i class="fas fa-volume-mute"></i> Auto Moderation</a></li>
<li><a href="#"><i class="fas fa-gift"></i> Giveaway Manager</a></li>
<li><a href="#"><i class="fas fa-chart-line"></i> Analytics</a></li>
</ul>
</div>
<!-- Contact & Legal -->
<div class="col-lg-3 col-md-6 mb-4">
<h5 class="footer-title">
<i class="fas fa-envelope"></i> Support
</h5>
<ul class="footer-links">
<li><a href="{{ url_for('user_contact') }}"><i class="fas fa-envelope"></i> Contact Us</a></li>
<li><a href="{{ url_for('terms_of_service') }}"><i class="fas fa-file-contract"></i> Terms of Service</a></li>
<li><a href="{{ url_for('privacy_policy') }}"><i class="fas fa-user-shield"></i> Privacy Policy</a></li>
<li><a href="{{ url_for('user_contact') }}"><i class="fas fa-bug"></i> Report Issue</a></li>
</ul>
</div>
</div>
<!-- Footer Bottom -->
<div class="footer-bottom">
<div class="row align-items-center">
<div class="col-md-6">
<p class="footer-copyright">
&copy; 2025 Multus Bot. All rights reserved.
</p>
</div>
<div class="col-md-6 text-md-right">
<p class="footer-version">
<i class="fas fa-code-branch"></i> Version dev-0.8.3
<span class="text-muted">| Last updated: August 24, 2025</span>
</p>
</div>
</div>
</div>
</div>
</div>
</footer>
<style>
.site-footer {
background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
color: #e2e8f0;
padding: 2rem 0 0.75rem 0;
margin-top: auto;
border-top: 1px solid rgba(148, 163, 184, 0.2);
position: relative;
overflow: hidden;
}
.site-footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 2px;
background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4, #10b981);
opacity: 0.6;
}
.footer-content {
position: relative;
z-index: 1;
}
.footer-title {
color: #f8fafc;
font-weight: 600;
font-size: 1rem;
margin-bottom: 0.75rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
.footer-title i {
color: #3b82f6;
}
.footer-text {
color: #94a3b8;
font-size: 0.85rem;
line-height: 1.4;
margin-bottom: 0.75rem;
}
.footer-links {
list-style: none;
padding: 0;
margin: 0;
}
.footer-links li {
margin-bottom: 0.35rem;
}
.footer-links a {
color: #94a3b8;
text-decoration: none;
font-size: 0.85rem;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 0.5rem;
}
.footer-links a:hover {
color: #3b82f6;
text-decoration: none;
transform: translateX(5px);
}
.footer-links a i {
width: 16px;
text-align: center;
opacity: 0.7;
}
.footer-social {
display: flex;
gap: 0.75rem;
margin-top: 0.75rem;
}
.social-link {
display: inline-flex;
align-items: center;
justify-content: center;
width: 35px;
height: 35px;
background: rgba(59, 130, 246, 0.1);
border: 1px solid rgba(59, 130, 246, 0.2);
border-radius: 50%;
color: #3b82f6;
font-size: 1.1rem;
transition: all 0.3s ease;
text-decoration: none;
}
.social-link:hover {
background: rgba(59, 130, 246, 0.2);
border-color: rgba(59, 130, 246, 0.4);
color: #60a5fa;
transform: translateY(-2px);
text-decoration: none;
}
.footer-bottom {
margin-top: 1.5rem;
padding-top: 1rem;
border-top: 1px solid rgba(148, 163, 184, 0.1);
}
.footer-copyright,
.footer-version {
margin: 0;
font-size: 0.85rem;
color: #64748b;
}
.footer-version {
display: flex;
align-items: center;
gap: 0.5rem;
justify-content: flex-end;
}
.footer-version i {
color: #3b82f6;
}
/* Responsive Design */
@media (max-width: 768px) {
.site-footer {
padding: 1.5rem 0 0.75rem 0;
}
.footer-title {
font-size: 0.95rem;
margin-bottom: 0.5rem;
}
.footer-text,
.footer-links a {
font-size: 0.8rem;
}
.footer-social {
justify-content: center;
margin-top: 1rem;
}
.footer-version {
justify-content: center;
margin-top: 0.75rem;
flex-direction: column;
gap: 0.25rem;
}
.footer-copyright {
text-align: center;
}
}
/* Dark mode compatibility */
body.dark-mode .site-footer {
background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 50%, #2d2d2d 100%);
}
/* Animation for footer appearance */
.site-footer {
animation: fadeInUp 0.6s ease-out;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
</style>