Spaces:
Running
Running
File size: 2,587 Bytes
b93a74d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CrewControl Dashboard</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://cdn.jsdelivr.net/npm/@mdi/font@7.2.96/css/materialdesignicons.min.css" rel="stylesheet">
</head>
<body class="bg-gray-50">
<custom-navbar></custom-navbar>
<div class="flex">
<custom-sidebar></custom-sidebar>
<main class="flex-1 p-8">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Agent Cards -->
<div class="bg-white rounded-lg shadow p-6">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-blue-100 flex items-center justify-center">
<i class="mdi mdi-robot text-blue-500 text-2xl"></i>
</div>
<div class="ml-4">
<h3 class="font-semibold">Research Agent</h3>
<p class="text-gray-500 text-sm">Task: Web Research</p>
</div>
</div>
<div class="space-y-3">
<div>
<label class="block text-sm font-medium text-gray-700 mb-1">Role</label>
<input type="text" class="w-full px-3 py-2 border border-gray-300 rounded-md" value="Researcher">
</div>
<div>
<label class="block text-sm font-medium text-gray-700 mb-1">Goal</label>
<textarea class="w-full px-3 py-2 border border-gray-300 rounded-md">Find relevant information online</textarea>
</div>
<button class="w-full bg-blue-500 text-white py-2 rounded-md hover:bg-blue-600 transition">
Update Agent
</button>
</div>
</div>
<!-- Add more agent cards as needed -->
</div>
</main>
</div>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/sidebar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html> |