modified: templates/contact.html modified: templates/faq.html modified: templates/help.html modified: templates/navbar.html
52 lines
2.0 KiB
HTML
52 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>About 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: #007bff;
|
||
color: white;
|
||
padding: 50px 0;
|
||
text-align: center;
|
||
}
|
||
.content {
|
||
margin: 50px 0;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
{% include 'navbar.html' %}
|
||
|
||
<section class="hero">
|
||
<div class="container">
|
||
<h1>About Multus Bot</h1>
|
||
<p class="lead">The AI-powered Discord bot, exclusively available on the Ludi et Historia server.</p>
|
||
</div>
|
||
</section>
|
||
|
||
<div class="container content">
|
||
<h2>Our Mission</h2>
|
||
<p>Multus Bot, created by SimolZimol, is designed to simplify server management through AI-powered tools. Whether you’re looking for help with moderation, user interactions, or just want to automate server tasks, Multus Bot is here to assist you.</p>
|
||
|
||
<h2>Where to Use Multus Bot?</h2>
|
||
<p>At this time, Multus Bot is only available for the <strong>Ludi et Historia</strong> Discord server. We are exploring ways to extend its reach to more communities in the future.</p>
|
||
|
||
<h2>Creator and Support</h2>
|
||
<p>Multus Bot was created by <strong>SimolZimol</strong>, a dedicated Discord enthusiast and developer. If you need assistance or have any questions about the bot, feel free to reach out to SimolZimol on Discord via <strong>@simolzimol</strong>.</p>
|
||
</div>
|
||
|
||
<footer class="text-center py-3">
|
||
<p>© 2024 Multus Bot. Exclusively available on Ludi et Historia.</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>
|