new file: templates/about.html new file: templates/contact.html new file: templates/faq.html new file: templates/help.html
23 lines
840 B
HTML
23 lines
840 B
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">
|
|
</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">
|
|
<li class="nav-item"><a class="nav-link" href="{{ url_for('login') }}">Login</a></li>
|
|
</ul>
|
|
</nav>
|
|
|
|
<div class="container mt-5">
|
|
<h1>About Us</h1>
|
|
<p>Welcome to Multus Bot, the AI-powered Discord bot created by SimolZimol. We aim to make managing Discord servers easier with AI tools and advanced functionalities.</p>
|
|
</div>
|
|
</body>
|
|
</html>
|