modified: templates/about.html

modified:   templates/contact.html
	modified:   templates/faq.html
	modified:   templates/help.html
	modified:   templates/navbar.html
This commit is contained in:
SimolZimol
2024-09-06 13:55:21 +02:00
parent ba0c443228
commit 2277e278d4
5 changed files with 142 additions and 44 deletions

View File

@@ -5,22 +5,45 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Help</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: #17a2b8;
color: white;
padding: 50px 0;
text-align: center;
}
.help-section {
margin: 50px 0;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="/">Multus Bot</a>
<ul class="navbar-nav ml-auto">
{% include 'navbar.html' %}
</ul>
</nav>
{% include 'navbar.html' %}
<div class="container mt-5">
<h1>Help Center</h1>
<p>Need help? Here are some resources to get you started with Multus Bot.</p>
<ul>
<li><a href="/faq">Check our FAQ</a></li>
<li><a href="mailto:support@multusbot.com">Contact Support</a></li>
<section class="hero">
<div class="container">
<h1>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>
<footer class="text-center py-3">
<p>&copy; 2024 Multus Bot. Reach out to us for any assistance.</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>