modified: templates/contact.html modified: templates/faq.html modified: templates/help.html modified: templates/navbar.html
47 lines
1.5 KiB
HTML
47 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Contact Us</title>
|
|
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
background-color: #f7f7f7;
|
|
}
|
|
.hero {
|
|
background-color: #28a745;
|
|
color: white;
|
|
padding: 50px 0;
|
|
text-align: center;
|
|
}
|
|
.contact-details {
|
|
margin: 50px 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
{% include 'navbar.html' %}
|
|
|
|
<section class="hero">
|
|
<div class="container">
|
|
<h1>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>
|
|
|
|
<footer class="text-center py-3">
|
|
<p>© 2024 Multus Bot. Reach out to us for any questions or support.</p>
|
|
</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>
|