Files
Discord-ai-chatbot/templates/about.html
SimolZimol db5fbf91fa modified: templates/about.html
modified:   templates/contact.html
	modified:   templates/faq.html
	modified:   templates/help.html
	modified:   templates/landing.html
	new file:   templates/navbar.html
2024-09-06 13:44:39 +02:00

23 lines
782 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">
{% include 'navbar.html' %}
</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>