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:
SimolZimol
2025-08-19 00:02:29 +02:00
parent 7d0c7df6a7
commit 0da5627348
5 changed files with 1055 additions and 53 deletions

View File

@@ -3,20 +3,234 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us</title>
<title>Contact Us - 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: #28a745;
background: linear-gradient(135deg, rgba(72, 187, 120, 0.9) 0%, rgba(56, 161, 105, 0.8) 100%);
backdrop-filter: blur(10px);
color: white;
padding: 50px 0;
padding: 4rem 0;
text-align: center;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
animation: float 8s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0px) rotate(0deg); }
50% { transform: translateY(-15px) rotate(180deg); }
}
.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;
}
.contact-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: 3rem;
margin: 3rem auto;
max-width: 800px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
text-align: center;
}
.contact-details {
margin: 50px 0;
.contact-header {
margin-bottom: 2rem;
padding-bottom: 1rem;
border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}
.contact-title {
color: #e2e8f0;
font-weight: 700;
font-size: 2rem;
margin-bottom: 0.5rem;
display: flex;
align-items: center;
justify-content: center;
gap: 0.75rem;
}
.contact-subtitle {
color: #a0aec0;
font-size: 1.1rem;
}
.contact-card {
background: rgba(45, 55, 72, 0.8);
border: 1px solid rgba(72, 187, 120, 0.3);
border-radius: 15px;
padding: 2rem;
margin: 1.5rem 0;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.contact-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #48bb78, #38a169);
transform: scaleX(0);
transition: transform 0.3s ease;
}
.contact-card:hover::before {
transform: scaleX(1);
}
.contact-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(72, 187, 120, 0.2);
border-color: rgba(72, 187, 120, 0.5);
}
.discord-icon {
font-size: 4rem;
color: #5865f2;
margin-bottom: 1.5rem;
animation: pulse 2s infinite;
}
@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.1); }
}
.contact-method {
color: #e2e8f0;
font-size: 1.2rem;
margin-bottom: 1rem;
}
.contact-username {
background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
color: white;
padding: 0.75rem 1.5rem;
border-radius: 50px;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 0.5rem;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}
.contact-username:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
color: white;
text-decoration: none;
}
.contact-info {
background: rgba(45, 55, 72, 0.6);
border: 1px solid rgba(102, 126, 234, 0.2);
border-radius: 10px;
padding: 1.5rem;
margin-top: 2rem;
}
.info-item {
display: flex;
align-items: center;
justify-content: center;
gap: 0.75rem;
margin-bottom: 1rem;
color: #a0aec0;
}
.info-item:last-child {
margin-bottom: 0;
}
.info-icon {
color: #48bb78;
font-size: 1.2rem;
}
.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: #48bb78;
}
@media (max-width: 768px) {
.hero h1 {
font-size: 2.5rem;
}
.hero .lead {
font-size: 1.1rem;
}
.contact-container {
margin: 2rem 1rem;
padding: 2rem;
}
.contact-title {
font-size: 1.5rem;
}
.discord-icon {
font-size: 3rem;
}
}
</style>
</head>
@@ -25,19 +239,54 @@
<section class="hero">
<div class="container">
<h1>Contact Us</h1>
<h1>
<i class="fas fa-envelope"></i> Contact Us
</h1>
<p class="lead">Need help? Reach out to SimolZimol on Discord.</p>
</div>
</section>
<div class="container contact-details text-center">
<h2>Get in Touch</h2>
<p>If you have any questions or need support, you can contact <strong>SimolZimol</strong> on Discord:</p>
<p><strong>Username:</strong> <a href="https://discordapp.com/users/@simolzimol">@simolzimol</a></p>
<div class="container">
<div class="contact-container">
<div class="contact-header">
<h2 class="contact-title">
<i class="fas fa-headset"></i> Get in Touch
</h2>
<p class="contact-subtitle">We're here to help with any questions or support you need</p>
</div>
<div class="contact-card">
<i class="fab fa-discord discord-icon"></i>
<p class="contact-method">Contact SimolZimol directly on Discord:</p>
<a href="https://discordapp.com/users/@simolzimol" class="contact-username">
<i class="fab fa-discord"></i> @simolzimol
</a>
<div class="contact-info">
<div class="info-item">
<i class="fas fa-clock info-icon"></i>
<span>Usually responds within 24 hours</span>
</div>
<div class="info-item">
<i class="fas fa-language info-icon"></i>
<span>Support available in English and German</span>
</div>
<div class="info-item">
<i class="fas fa-server info-icon"></i>
<span>Best reached on the Ludi et Historia server</span>
</div>
</div>
</div>
</div>
</div>
<footer class="text-center py-3">
<p>&copy; 2024 Multus Bot. Reach out to us for any questions or support.</p>
<footer class="footer">
<div class="container">
<p>
<i class="fas fa-heart footer-icon"></i>
&copy; 2025 Multus Bot. Reach out to us for any questions or support. | Built with ❤️ by SimolZimol
</p>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>