Files
LocalAGI/example/webui/index.html
2024-04-10 19:40:39 +02:00

26 lines
903 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Smart Assistant Dashboard</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="bg-gray-900 p-4 text-white">
<div class="max-w-4xl mx-auto">
<div class="text-center mb-6">
<h1 class="text-3xl font-bold">Smart Assistant Dashboard</h1>
</div>
<div class="flex flex-col items-center space-y-4">
<!-- Button to Agent List Page -->
<a href="/agents" class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded">
Agent List
</a>
<!-- Button to Knowledgebase Management Page -->
<a href="/knowledgebase" class="bg-green-500 hover:bg-green-700 text-white font-bold py-2 px-4 rounded">
Manage Knowledgebase
</a>
</div>
</div>
</body>
</html>