| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Dashboard - MootVision AI</title> |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> |
| <link rel="stylesheet" href="style.css"> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> |
| <script src="https://unpkg.com/feather-icons"></script> |
| <script> |
| tailwind.config = { |
| theme: { |
| extend: { |
| colors: { |
| primary: '#3B82F6', |
| secondary: '#10B981' |
| } |
| } |
| } |
| } |
| </script> |
| </head> |
| <body class="bg-gray-50"> |
| <custom-navbar></custom-navbar> |
| |
| <main class="min-h-screen"> |
| <div class="max-w-7xl mx-auto py-6 sm:px-6 lg:px-8"> |
| |
| <div class="md:flex md:items-center md:justify-between"> |
| <div class="flex-1 min-w-0"> |
| <h2 class="text-2xl font-bold leading-7 text-gray-900 sm:text-3xl sm:truncate"> |
| Dashboard |
| </h2> |
| </div> |
| <div class="mt-4 flex md:mt-0 md:ml-4"> |
| <button type="button" class="ml-3 inline-flex items-center px-4 py-2 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-primary hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-primary"> |
| <i data-feather="plus" class="mr-2"></i> |
| New Job |
| </button> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="mt-8 grid grid-cols-1 gap-5 sm:grid-cols-2 lg:grid-cols-4"> |
| |
| <div class="bg-white overflow-hidden shadow rounded-lg"> |
| <div class="p-5"> |
| <div class="flex items-center"> |
| <div class="flex-shrink-0"> |
| <i data-feather="film" class="h-6 w-6 text-gray-400"></i> |
| </div> |
| <div class="ml-5 w-0 flex-1"> |
| <dl> |
| <dt class="text-sm font-medium text-gray-500 truncate"> |
| Total Media |
| </dt> |
| <dd class="flex items-baseline"> |
| <div class="text-2xl font-semibold text-gray-900">1,248</div> |
| </dd> |
| </dl> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="bg-white overflow-hidden shadow rounded-lg"> |
| <div class="p-5"> |
| <div class="flex items-center"> |
| <div class="flex-shrink-0"> |
| <i data-feather="cpu" class="h-6 w-6 text-gray-400"></i> |
| </div> |
| <div class="ml-5 w-0 flex-1"> |
| <dl> |
| <dt class="text-sm font-medium text-gray-500 truncate"> |
| Active Jobs |
| </dt> |
| <dd class="flex items-baseline"> |
| <div class="text-2xl font-semibold text-gray-900">3</div> |
| </dd> |
| </dl> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="bg-white overflow-hidden shadow rounded-lg"> |
| <div class="p-5"> |
| <div class="flex items-center"> |
| <div class="flex-shrink-0"> |
| <i data-feather="hard-drive" class="h-6 w-6 text-gray-400"></i> |
| </div> |
| <div class="ml-5 w-0 flex-1"> |
| <dl> |
| <dt class="text-sm font-medium text-gray-500 truncate"> |
| Storage Used |
| </dt> |
| <dd class="flex items-baseline"> |
| <div class="text-2xl font-semibold text-gray-900">2.4 TB</div> |
| </dd> |
| </dl> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="bg-white overflow-hidden shadow rounded-lg"> |
| <div class="p-5"> |
| <div class="flex items-center"> |
| <div class="flex-shrink-0"> |
| <i data-feather="activity" class="h-6 w-6 text-gray-400"></i> |
| </div> |
| <div class="ml-5 w-0 flex-1"> |
| <dl> |
| <dt class="text-sm font-medium text-gray-500 truncate"> |
| GPU Status |
| </dt> |
| <dd class="flex items-baseline"> |
| <div class="text-2xl font-semibold text-gray-900">Active</div> |
| </dd> |
| </dl> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="mt-8 grid grid-cols-1 gap-6 lg:grid-cols-3"> |
| |
| <div class="lg:col-span-2"> |
| <div class="bg-white shadow rounded-lg"> |
| <div class="px-4 py-5 sm:p-6"> |
| <h3 class="text-lg leading-6 font-medium text-gray-900"> |
| Active Job Queue |
| </h3> |
| <div class="mt-5"> |
| <div class="space-y-4"> |
| |
| <div class="bg-gray-50 rounded-lg p-4"> |
| <div class="flex items-center justify-between"> |
| <div> |
| <h4 class="text-sm font-medium text-gray-900"> |
| Video Transcription - sample_video.mp4 |
| </h4> |
| <div class="mt-2"> |
| <div class="flex items-center text-sm text-gray-500"> |
| <i data-feather="clock" class="mr-1 h-4 w-4"></i> |
| <span>Started 5 minutes ago</span> |
| </div> |
| </div> |
| <div class="mt-4"> |
| <div class="w-full bg-gray-200 rounded-full h-2"> |
| <div class="bg-primary h-2 rounded-full" style="width: 65%"></div> |
| </div> |
| </div> |
|
|
| |
| <div class="bg-gray-50 rounded-lg p-4"> |
| <div class="flex items-center justify-between"> |
| <div> |
| <h4 class="text-sm font-medium text-gray-900"> |
| Face Recognition - image_gallery |
| </h4> |
| <div class="mt-2"> |
| <div class="flex items-center text-sm text-gray-500"> |
| <i data-feather="clock" class="mr-1 h-4 w-4"></i> |
| <span>Started 2 minutes ago</span> |
| </div> |
| </div> |
| <div class="mt-4"> |
| <div class="w-full bg-gray-200 rounded-full h-2"> |
| <div class="bg-secondary h-2 rounded-full" style="width: 30%"></div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="lg:col-span-1"> |
| <div class="bg-white shadow rounded-lg"> |
| <div class="px-4 py-5 sm:p-6"> |
| <h3 class="text-lg leading-6 font-medium text-gray-900"> |
| Quick Actions |
| </h3> |
| <div class="mt-5 space-y-3"> |
| <button class="w-full inline-flex items-center justify-center px-4 py-2 border border-transparent text-sm font-medium rounded-md text-white bg-primary hover:bg-blue-700"> |
| <i data-feather="folder-plus" class="mr-2"></i> |
| Scan Media |
| </button> |
| <button class="w-full inline-flex items-center justify-center px-4 py-2 border border-transparent text-sm font-medium rounded-md text-primary bg-white border-primary hover:bg-gray-50"> |
| <i data-feather="settings" class="mr-2"></i> |
| Settings |
| </button> |
| <button class="w-full inline-flex items-center justify-center px-4 py-2 border border-transparent text-sm font-medium rounded-md text-white bg-secondary hover:bg-green-600"> |
| <i data-feather="download" class="mr-2"></i> |
| Export Data |
| </button> |
| </div> |
| </div> |
| </div> |
| </div> |
| </main> |
|
|
| <custom-footer></custom-footer> |
|
|
| <script src="components/navbar.js"></script> |
| <script src="components/footer.js"></script> |
| <script src="script.js"></script> |
| <script>feather.replace();</script> |
| </body> |
| </html> |