Flask / templates /docs.html
UntilDot's picture
Create docs.html
0ded64d verified
raw
history blame
737 Bytes
<!DOCTYPE html>
<html lang="en" class="bg0 text-fg0 dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Documentation - MoA Chat</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
<link rel="stylesheet" href="/static/style.css" />
</head>
<body class="bg0 text-fg0 transition-colors duration-300 flex flex-col justify-center items-center min-h-screen">
<h1 class="text-3xl font-bold mb-4">Documentation</h1>
<p class="text-lg mb-8">Coming soon...</p>
<a href="/" class="px-4 py-2 bg-blue text-fg0 rounded hover:bg-purple transition">← Back to Chat</a>
</body>
</html>