modified: templates/footer.html modified: templates/landing.html new file: templates/privacy_policy.html new file: templates/terms_of_service.html
484 lines
19 KiB
HTML
484 lines
19 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Welcome to 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(12, 20, 38, 0.9) 0%, rgba(26, 31, 46, 0.8) 50%, rgba(45, 55, 72, 0.9) 100%),
|
|
url('https://source.unsplash.com/1600x900/?technology,ai,dark');
|
|
background-size: cover;
|
|
background-position: center;
|
|
color: #ffffff;
|
|
padding: 120px 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(76, 81, 191, 0.3) 0%, rgba(139, 92, 246, 0.2) 100%);
|
|
animation: gradientShift 8s ease-in-out infinite alternate;
|
|
}
|
|
|
|
@keyframes gradientShift {
|
|
0% { opacity: 0.3; }
|
|
100% { opacity: 0.6; }
|
|
}
|
|
|
|
.hero-content {
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: 3.5rem;
|
|
font-weight: 700;
|
|
margin-bottom: 1.5rem;
|
|
text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.7);
|
|
animation: float 6s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes float {
|
|
0%, 100% { transform: translateY(0px); }
|
|
50% { transform: translateY(-10px); }
|
|
}
|
|
|
|
.hero .lead {
|
|
font-size: 1.4rem;
|
|
margin-bottom: 2rem;
|
|
text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.hero-btn {
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
border: none;
|
|
padding: 1rem 2.5rem;
|
|
font-size: 1.1rem;
|
|
font-weight: 600;
|
|
border-radius: 50px;
|
|
color: white;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
transition: all 0.3s ease;
|
|
box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.hero-btn::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: -100%;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
|
|
transition: left 0.5s;
|
|
}
|
|
|
|
.hero-btn:hover::before {
|
|
left: 100%;
|
|
}
|
|
|
|
.hero-btn:hover {
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
|
|
color: white;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.feature-section {
|
|
padding: 80px 0;
|
|
background: rgba(26, 31, 46, 0.6);
|
|
backdrop-filter: blur(10px);
|
|
border-radius: 20px;
|
|
margin: 2rem 0;
|
|
}
|
|
|
|
.feature-card {
|
|
background: rgba(45, 55, 72, 0.7);
|
|
backdrop-filter: blur(10px);
|
|
border: 1px solid rgba(102, 126, 234, 0.2);
|
|
border-radius: 20px;
|
|
padding: 3rem 4rem;
|
|
margin-bottom: 2rem;
|
|
text-align: center;
|
|
transition: all 0.3s ease;
|
|
position: relative;
|
|
overflow: hidden;
|
|
min-height: 350px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
margin-left: 1rem;
|
|
margin-right: 1rem;
|
|
}
|
|
|
|
.feature-card::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 4px;
|
|
background: linear-gradient(90deg, #667eea, #764ba2);
|
|
transform: scaleX(0);
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.feature-card:hover::before {
|
|
transform: scaleX(1);
|
|
}
|
|
|
|
.feature-card:hover {
|
|
transform: translateY(-10px);
|
|
border-color: rgba(102, 126, 234, 0.5);
|
|
box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
|
|
}
|
|
|
|
.feature-icon {
|
|
width: 80px;
|
|
height: 80px;
|
|
border-radius: 50%;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 0 auto 1.5rem auto;
|
|
font-size: 2rem;
|
|
color: white;
|
|
animation: pulse 2s infinite;
|
|
}
|
|
|
|
@keyframes pulse {
|
|
0%, 100% { transform: scale(1); }
|
|
50% { transform: scale(1.05); }
|
|
}
|
|
|
|
.feature-card h3 {
|
|
color: #e2e8f0;
|
|
font-weight: 600;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.feature-card p {
|
|
color: #a0aec0;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.info-section {
|
|
background: rgba(12, 20, 38, 0.8);
|
|
backdrop-filter: blur(15px);
|
|
border-radius: 20px;
|
|
padding: 5rem 2rem;
|
|
margin: 2rem 0;
|
|
border: 1px solid rgba(102, 126, 234, 0.1);
|
|
min-height: 400px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
.info-section h2 {
|
|
color: #e2e8f0;
|
|
font-weight: 700;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.info-section .lead {
|
|
color: #a0aec0;
|
|
font-size: 1.2rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.contact-section {
|
|
background: linear-gradient(135deg, rgba(26, 31, 46, 0.9) 0%, rgba(45, 55, 72, 0.8) 100%);
|
|
backdrop-filter: blur(15px);
|
|
border-radius: 20px;
|
|
padding: 5rem 2rem;
|
|
border: 1px solid rgba(102, 126, 234, 0.2);
|
|
min-height: 350px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
.archive-section {
|
|
background: linear-gradient(135deg, rgba(45, 55, 72, 0.9) 0%, rgba(26, 31, 46, 0.8) 100%);
|
|
backdrop-filter: blur(15px);
|
|
border-radius: 20px;
|
|
padding: 5rem 2rem;
|
|
margin: 2rem 0;
|
|
border: 1px solid rgba(102, 126, 234, 0.2);
|
|
min-height: 400px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
.contact-btn {
|
|
background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
|
|
border: none;
|
|
padding: 0.8rem 2rem;
|
|
border-radius: 50px;
|
|
color: white;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
transition: all 0.3s ease;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.contact-btn:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 10px 25px rgba(118, 75, 162, 0.3);
|
|
color: white;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.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: 2rem;
|
|
}
|
|
|
|
.container {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.hero h1 {
|
|
font-size: 2.5rem;
|
|
}
|
|
|
|
.hero .lead {
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.feature-section {
|
|
padding: 3rem 0;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
{% include 'navbar.html' %}
|
|
|
|
<section class="hero">
|
|
<div class="container hero-content">
|
|
<h1 class="display-4">
|
|
<i class="fas fa-robot"></i> Welcome to Multus Bot
|
|
</h1>
|
|
<p class="lead">The AI-powered Discord bot that helps manage your server with advanced tools and intelligent automation.</p>
|
|
<a href="{{ url_for('login') }}" class="hero-btn">
|
|
<i class="fas fa-rocket"></i> Get Started
|
|
</a>
|
|
</div>
|
|
</section>
|
|
|
|
<div class="container">
|
|
<section class="feature-section">
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<div class="feature-card">
|
|
<div class="feature-icon">
|
|
<i class="fas fa-magic"></i>
|
|
</div>
|
|
<h3>Advanced AI Automation</h3>
|
|
<p>Multus Bot automates repetitive tasks and manages your server effortlessly, so you can focus on what matters most.</p>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<div class="feature-card">
|
|
<div class="feature-icon">
|
|
<i class="fas fa-comments"></i>
|
|
</div>
|
|
<h3>Smart Chat Assistance</h3>
|
|
<p>Using powerful AI, Multus Bot can assist with chat moderation, user queries, and provide useful information.</p>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-12">
|
|
<div class="feature-card">
|
|
<div class="feature-icon">
|
|
<i class="fas fa-chart-line"></i>
|
|
</div>
|
|
<h3>Detailed Server Insights</h3>
|
|
<p>Gain access to detailed analytics and user engagement metrics to keep your server thriving and well-managed.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="info-section">
|
|
<div class="text-center">
|
|
<h2><i class="fas fa-crown"></i> Exclusively Available on Ludi et Historia</h2>
|
|
<p class="lead">Currently, Multus Bot is available only for the <strong>Ludi et Historia</strong> Discord server. We are working to bring it to more communities soon.</p>
|
|
<p style="color: #a0aec0;">If you're part of Ludi et Historia, start using Multus Bot now!</p>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="archive-section">
|
|
<div class="text-center">
|
|
<h2><i class="fas fa-archive"></i> LudiMC Chat Archive</h2>
|
|
<p style="color: #a0aec0; margin-bottom: 1rem;">Explore the complete chat history from LudiMC - the official Minecraft server of Ludi et Historia!</p>
|
|
<p style="color: #e2e8f0; margin-bottom: 1.5rem;">This archive preserves conversations from all three game modes that were active from 2020-2021:</p>
|
|
|
|
<div style="display: flex; justify-content: center; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap;">
|
|
<div style="background: rgba(76, 175, 80, 0.2); border: 1px solid rgba(76, 175, 80, 0.4); border-radius: 15px; padding: 1rem 1.5rem; min-width: 140px;">
|
|
<i class="fas fa-tree" style="color: #4caf50; font-size: 1.5rem; margin-bottom: 0.5rem;"></i>
|
|
<h5 style="color: #4caf50; margin: 0;">Survival</h5>
|
|
<small style="color: #a0aec0;">Classic survival gameplay</small>
|
|
</div>
|
|
<div style="background: rgba(255, 193, 7, 0.2); border: 1px solid rgba(255, 193, 7, 0.4); border-radius: 15px; padding: 1rem 1.5rem; min-width: 140px;">
|
|
<i class="fas fa-palette" style="color: #ffc107; font-size: 1.5rem; margin-bottom: 0.5rem;"></i>
|
|
<h5 style="color: #ffc107; margin: 0;">Creative</h5>
|
|
<small style="color: #a0aec0;">Building & creativity</small>
|
|
</div>
|
|
<div style="background: rgba(244, 67, 54, 0.2); border: 1px solid rgba(244, 67, 54, 0.4); border-radius: 15px; padding: 1rem 1.5rem; min-width: 140px;">
|
|
<i class="fas fa-chess-rook" style="color: #f44336; font-size: 1.5rem; margin-bottom: 0.5rem;"></i>
|
|
<h5 style="color: #f44336; margin: 0;">THESUR</h5>
|
|
<small style="color: #a0aec0;">Faction survival roleplay</small>
|
|
</div>
|
|
</div>
|
|
|
|
<p style="color: #e2e8f0; margin-bottom: 2rem;">Relive the epic conversations, community moments, and roleplay adventures from the golden era of our Minecraft community. Complete with world backups and preserved chat logs!</p>
|
|
<a href="https://simolzimol.eu/creachat/" target="_blank" class="contact-btn" style="margin-right: 1rem;">
|
|
<i class="fas fa-history"></i> Explore LudiMC Archive
|
|
</a>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="contact-section">
|
|
<div class="text-center">
|
|
<h2><i class="fas fa-question-circle"></i> Need Assistance?</h2>
|
|
<p style="color: #a0aec0; margin-bottom: 2rem;">For any help or questions, reach out to <strong>@simolzimol</strong> on Discord. We're here to help!</p>
|
|
<a href="https://discordapp.com/users/@simolzimol" class="contact-btn">
|
|
<i class="fab fa-discord"></i> Contact SimolZimol
|
|
</a>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
|
|
<footer class="footer">
|
|
<div class="container">
|
|
<div class="row">
|
|
<!-- About Section -->
|
|
<div class="col-md-3 mb-3">
|
|
<h6 style="color: #e2e8f0; font-weight: 600; margin-bottom: 1rem;">
|
|
<i class="fas fa-robot" style="color: #667eea;"></i> Multus Bot
|
|
</h6>
|
|
<p style="color: #a0aec0; font-size: 0.85rem; line-height: 1.4;">
|
|
Advanced Discord moderation and management bot with AI-powered automation.
|
|
</p>
|
|
</div>
|
|
|
|
<!-- Quick Links -->
|
|
<div class="col-md-3 mb-3">
|
|
<h6 style="color: #e2e8f0; font-weight: 600; margin-bottom: 1rem;">
|
|
<i class="fas fa-link" style="color: #667eea;"></i> Links
|
|
</h6>
|
|
<ul style="list-style: none; padding: 0; margin: 0;">
|
|
<li style="margin-bottom: 0.5rem;">
|
|
<a href="{{ url_for('about') }}" style="color: #a0aec0; text-decoration: none; font-size: 0.85rem; transition: color 0.3s;">
|
|
<i class="fas fa-info-circle" style="width: 16px;"></i> About
|
|
</a>
|
|
</li>
|
|
<li style="margin-bottom: 0.5rem;">
|
|
<a href="{{ url_for('faq') }}" style="color: #a0aec0; text-decoration: none; font-size: 0.85rem; transition: color 0.3s;">
|
|
<i class="fas fa-question-circle" style="width: 16px;"></i> FAQ
|
|
</a>
|
|
</li>
|
|
<li style="margin-bottom: 0.5rem;">
|
|
<a href="{{ url_for('contact') }}" style="color: #a0aec0; text-decoration: none; font-size: 0.85rem; transition: color 0.3s;">
|
|
<i class="fas fa-envelope" style="width: 16px;"></i> Contact
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<!-- Legal -->
|
|
<div class="col-md-3 mb-3">
|
|
<h6 style="color: #e2e8f0; font-weight: 600; margin-bottom: 1rem;">
|
|
<i class="fas fa-gavel" style="color: #667eea;"></i> Legal
|
|
</h6>
|
|
<ul style="list-style: none; padding: 0; margin: 0;">
|
|
<li style="margin-bottom: 0.5rem;">
|
|
<a href="{{ url_for('terms_of_service') }}" style="color: #a0aec0; text-decoration: none; font-size: 0.85rem; transition: color 0.3s;">
|
|
<i class="fas fa-file-contract" style="width: 16px;"></i> Terms of Service
|
|
</a>
|
|
</li>
|
|
<li style="margin-bottom: 0.5rem;">
|
|
<a href="{{ url_for('privacy_policy') }}" style="color: #a0aec0; text-decoration: none; font-size: 0.85rem; transition: color 0.3s;">
|
|
<i class="fas fa-shield-alt" style="width: 16px;"></i> Privacy Policy
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<!-- Contact Info -->
|
|
<div class="col-md-3 mb-3">
|
|
<h6 style="color: #e2e8f0; font-weight: 600; margin-bottom: 1rem;">
|
|
<i class="fas fa-headset" style="color: #667eea;"></i> Support
|
|
</h6>
|
|
<p style="color: #a0aec0; font-size: 0.85rem; margin-bottom: 0.5rem;">
|
|
<i class="fab fa-discord" style="color: #667eea; width: 16px;"></i> @simolzimol
|
|
</p>
|
|
<p style="color: #a0aec0; font-size: 0.85rem; margin-bottom: 0.5rem;">
|
|
<i class="fas fa-server" style="color: #667eea; width: 16px;"></i> Ludi et Historia
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<hr style="border-color: rgba(102, 126, 234, 0.2); margin: 1.5rem 0 1rem 0;">
|
|
|
|
<div class="row align-items-center">
|
|
<div class="col-md-6 text-center text-md-left">
|
|
<p style="margin: 0; color: #64748b; font-size: 0.85rem;">
|
|
<i class="fas fa-code"></i> © 2025 Multus Bot | Built by SimolZimol
|
|
</p>
|
|
</div>
|
|
<div class="col-md-6 text-center text-md-right">
|
|
<p style="margin: 0; color: #64748b; font-size: 0.85rem;">
|
|
<i class="fas fa-code-branch" style="color: #667eea;"></i> Version dev-0.8.3
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<style>
|
|
.footer a:hover {
|
|
color: #667eea !important;
|
|
transform: translateX(3px);
|
|
}
|
|
|
|
.footer a {
|
|
transition: all 0.3s ease;
|
|
}
|
|
</style>
|
|
</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>
|