modified: templates/contact.html modified: templates/faq.html modified: templates/help.html modified: templates/landing.html new file: templates/navbar.html
28 lines
1.2 KiB
HTML
28 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>FAQ</title>
|
||
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
|
||
</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>
|
||
|
||
<div class="container mt-5">
|
||
<h1>Frequently Asked Questions (FAQ)</h1>
|
||
<p>Find answers to the most commonly asked questions about the Multus Bot.</p>
|
||
<ul>
|
||
<li><strong>What is Multus Bot?</strong> Multus Bot is an AI-powered Discord bot designed for server management and automation.</li>
|
||
<li><strong>How do I install Multus Bot?</strong> Simply invite Multus Bot to your server using the invite link provided in your dashboard.</li>
|
||
<li><strong>How do I use AI commands?</strong> Check out our documentation for a full guide on using the bot’s AI functionalities.</li>
|
||
</ul>
|
||
</div>
|
||
</body>
|
||
</html>
|