UntilDot commited on
Commit
0ded64d
·
verified ·
1 Parent(s): 282cafb

Create docs.html

Browse files
Files changed (1) hide show
  1. templates/docs.html +17 -0
templates/docs.html ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en" class="bg0 text-fg0 dark">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <title>Documentation - MoA Chat</title>
7
+ <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
8
+ <link rel="stylesheet" href="/static/style.css" />
9
+ </head>
10
+ <body class="bg0 text-fg0 transition-colors duration-300 flex flex-col justify-center items-center min-h-screen">
11
+
12
+ <h1 class="text-3xl font-bold mb-4">Documentation</h1>
13
+ <p class="text-lg mb-8">Coming soon...</p>
14
+ <a href="/" class="px-4 py-2 bg-blue text-fg0 rounded hover:bg-purple transition">← Back to Chat</a>
15
+
16
+ </body>
17
+ </html>