Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>LustrewFlow Agent Dashboard</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet"> | |
| <style> | |
| :root { | |
| --primary: #4F46E5; | |
| --primary-light: #6366F1; | |
| --primary-dark: #4338CA; | |
| } | |
| body { | |
| font-family: 'Inter', sans-serif; | |
| background-color: #F9FAFB; | |
| } | |
| .timeline-step:hover .timeline-content { | |
| opacity: 1; | |
| transform: translateY(0); | |
| } | |
| .workflow-card:hover { | |
| transform: translateY(-2px); | |
| box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1); | |
| } | |
| @keyframes pulse { | |
| 0%, 100% { | |
| opacity: 1; | |
| } | |
| 50% { | |
| opacity: 0.5; | |
| } | |
| } | |
| .animate-pulse { | |
| animation: pulse 2s infinite; | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-50"> | |
| <div class="min-h-screen flex flex-col"> | |
| <!-- Navigation --> | |
| <nav class="bg-white shadow-sm"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="flex justify-between h-16"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 flex items-center"> | |
| <span class="text-indigo-600 font-bold text-xl">LustrewFlow</span> | |
| </div> | |
| <div class="hidden sm:ml-6 sm:flex sm:space-x-8"> | |
| <a href="#" class="border-indigo-500 text-gray-900 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Dashboard</a> | |
| <a href="#" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Workflows</a> | |
| <a href="#" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Agents</a> | |
| <a href="#" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Reports</a> | |
| </div> | |
| </div> | |
| <div class="hidden sm:ml-6 sm:flex sm:items-center"> | |
| <button type="button" class="bg-white p-1 rounded-full text-gray-400 hover:text-gray-500 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500"> | |
| <span class="sr-only">View notifications</span> | |
| <svg class="h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 17h5l-1.405-1.405A2.032 2.032 0 0118 14.158V11a6.002 6.002 0 00-4-5.659V5a2 2 0 10-4 0v.341C7.67 6.165 6 8.388 6 11v3.159c0 .538-.214 1.055-.595 1.436L4 17h5m6 0v1a3 3 0 11-6 0v-1m6 0H9" /> | |
| </svg> | |
| </button> | |
| <div class="ml-3 relative"> | |
| <div> | |
| <button type="button" class="bg-white rounded-full flex text-sm focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500" id="user-menu-button" aria-expanded="false" aria-haspopup="true"> | |
| <span class="sr-only">Open user menu</span> | |
| <img class="h-8 w-8 rounded-full" src="https://images.unsplash.com/photo-1494790108377-be9c29b29330?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt=""> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="-mr-2 flex items-center sm:hidden"> | |
| <button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500" aria-controls="mobile-menu" aria-expanded="false"> | |
| <span class="sr-only">Open main menu</span> | |
| <svg class="block h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" /> | |
| </svg> | |
| <svg class="hidden h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" /> | |
| </svg> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Main Content --> | |
| <main class="flex-grow"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-6"> | |
| <!-- Dashboard Summary Cards --> | |
| <div class="grid grid-cols-1 gap-5 sm:grid-cols-2 lg:grid-cols-4 mb-8"> | |
| <div class="bg-white overflow-hidden shadow rounded-lg"> | |
| <div class="px-4 py-5 sm:p-6"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 bg-indigo-500 rounded-md p-3"> | |
| <svg class="h-6 w-6 text-white" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2" /> | |
| </svg> | |
| </div> | |
| <div class="ml-5 w-0 flex-1"> | |
| <dt class="text-sm font-medium text-gray-500 truncate"> | |
| Workflows Discovered | |
| </dt> | |
| <dd class="flex items-baseline"> | |
| <div class="text-2xl font-semibold text-gray-900"> | |
| 347 | |
| </div> | |
| <div class="ml-2 flex items-baseline text-sm font-semibold text-green-600"> | |
| <svg class="self-center flex-shrink-0 h-5 w-5 text-green-500" fill="currentColor" viewBox="0 0 20 20" aria-hidden="true"> | |
| <path fill-rule="evenodd" d="M5.293 9.707a1 1 0 010-1.414l4-4a1 1 0 011.414 0l4 4a1 1 0 01-1.414 1.414L11 7.414V15a1 1 0 11-2 0v-7.586l-2.293 2.293a1 1 0 01-1.414 0z" clip-rule="evenodd" /> | |
| </svg> | |
| <span class="sr-only">Increased by</span> | |
| 12% | |
| </div> | |
| </dd> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="bg-white overflow-hidden shadow rounded-lg"> | |
| <div class="px-4 py-5 sm:p-6"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 bg-indigo-100 rounded-md p-3"> | |
| <svg class="h-6 w-6 text-indigo-600" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z" /> | |
| </svg> | |
| </div> | |
| <div class="ml-5 w-0 flex-1"> | |
| <dt class="text-sm font-medium text-gray-500 truncate"> | |
| Pending Approvals | |
| </dt> | |
| <dd class="flex items-baseline"> | |
| <div class="text-2xl font-semibold text-gray-900"> | |
| 23 | |
| </div> | |
| <span class="ml-2 inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-yellow-100 text-yellow-800"> | |
| Needs action | |
| </span> | |
| </dd> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="bg-white overflow-hidden shadow rounded-lg"> | |
| <div class="px-4 py-5 sm:p-6"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 bg-green-500 rounded-md p-3"> | |
| <svg class="h-6 w-6 text-white" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z" /> | |
| </svg> | |
| </div> | |
| <div class="ml-5 w-0 flex-1"> | |
| <dt class="text-sm font-medium text-gray-500 truncate"> | |
| Active Agents | |
| </dt> | |
| <dd class="flex items-baseline"> | |
| <div class="text-2xl font-semibold text-gray-900"> | |
| 87 | |
| </div> | |
| </dd> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="bg-white overflow-hidden shadow rounded-lg"> | |
| <div class="px-4 py-5 sm:p-6"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 bg-red-100 rounded-md p-3"> | |
| <svg class="h-6 w-6 text-red-600" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4m0 4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z" /> | |
| </svg> | |
| </div> | |
| <div class="ml-5 w-0 flex-1"> | |
| <dt class="text-sm font-medium text-gray-500 truncate"> | |
| Errors (24h) | |
| </dt> | |
| <dd class="flex items-baseline"> | |
| <div class="text-2xl font-semibold text-gray-900"> | |
| 14 | |
| </div> | |
| <div class="ml-2 flex items-baseline text-sm font-semibold text-red-600"> | |
| <svg class="self-center flex-shrink-0 h-5 w-5 text-red-500" fill="currentColor" viewBox="0 0 20 20" aria-hidden="true"> | |
| <path fill-rule="evenodd" d="M14.707 10.293a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 111.414-1.414L9 12.586V5a1 1 0 012 0v7.586l2.293-2.293a1 1 0 011.414 0z" clip-rule="evenodd" /> | |
| </svg> | |
| <span class="sr-only">Increased by</span> | |
| 2% | |
| </div> | |
| </dd> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Charts and Top Workflows --> | |
| <div class="flex flex-col lg:flex-row gap-6 mb-8"> | |
| <!-- Automation Status Chart --> | |
| <div class="bg-white rounded-lg shadow p-6 flex-grow"> | |
| <div class="flex justify-between items-center mb-4"> | |
| <h3 class="text-lg font-medium text-gray-900">Weekly Automations</h3> | |
| <div class="flex space-x-2"> | |
| <button class="px-3 py-1 text-xs font-medium rounded-md bg-indigo-100 text-indigo-800"> | |
| All | |
| </button> | |
| <button class="px-3 py-1 text-xs font-medium rounded-md bg-gray-100 text-gray-800"> | |
| Proposed | |
| </button> | |
| <button class="px-3 py-1 text-xs font-medium rounded-md bg-gray-100 text-gray-800"> | |
| Approved | |
| </button> | |
| <button class="px-3 py-1 text-xs font-medium rounded-md bg-gray-100 text-gray-800"> | |
| Deployed | |
| </button> | |
| </div> | |
| </div> | |
| <!-- Chart placeholder --> | |
| <div class="w-full h-64 bg-gray-50 rounded-md flex items-center justify-center"> | |
| <div class="text-center p-4"> | |
| <svg class="mx-auto h-12 w-12 text-gray-400" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="1" d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18v4H3V4z"></path> | |
| </svg> | |
| <h3 class="mt-2 text-sm font-medium text-gray-900">Automation Activity</h3> | |
| <p class="mt-1 text-sm text-gray-500">Data visualization will appear here</p> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Quick Actions --> | |
| <div class="bg-white rounded-lg shadow p-6 w-full lg:w-80"> | |
| <h3 class="text-lg font-medium text-gray-900 mb-4">Quick Actions</h3> | |
| <div class="space-y-3"> | |
| <button type="button" class="w-full flex items-center justify-between px-4 py-3 bg-indigo-100 border border-transparent rounded-md shadow-sm text-sm font-medium text-indigo-800 hover:bg-indigo-200 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500"> | |
| Review Approvals | |
| <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7" /> | |
| </svg> | |
| </button> | |
| <button type="button" class="w-full flex items-center justify-between px-4 py-3 bg-gray-100 border border-transparent rounded-md shadow-sm text-sm font-medium text-gray-800 hover:bg-gray-200 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-gray-500"> | |
| View Active Agents | |
| <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7" /> | |
| </svg> | |
| </button> | |
| <button type="button" class="w-full flex items-center justify-between px-4 py-3 bg-gray-100 border border-transparent rounded-md shadow-sm text-sm font-medium text-gray-800 hover:bg-gray-200 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-gray-500"> | |
| Check Errors | |
| <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7" /> | |
| </svg> | |
| </button> | |
| <button type="button" class="w-full flex items-center justify-between px-4 py-3 bg-gray-100 border border-transparent rounded-md shadow-sm text-sm font-medium text-gray-800 hover:bg-gray-200 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-gray-500"> | |
| New Workflow Trigger | |
| <svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7" /> | |
| </svg> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Top Workflows Section --> | |
| <div class="mb-8"> | |
| <div class="flex justify-between items-center mb-4"> | |
| <h2 class="text-xl font-bold text-gray-900">Top Repeatable Workflows</h2> | |
| <div class="flex space-x-2"> | |
| <select id="time-range" name="time-range" class="border-gray-300 rounded-md shadow-sm focus:border-indigo-500 focus:ring-indigo-500 text-sm"> | |
| <option>Last 24 hours</option> | |
| <option selected>Last 7 days</option> | |
| <option>Last 30 days</option> | |
| <option>Custom range</option> | |
| </select> | |
| <button type="button" class="inline-flex items-center px-3 py-2 border border-gray-300 shadow-sm text-sm leading-4 font-medium rounded-md text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500"> | |
| <svg class="-ml-0.5 mr-2 h-4 w-4 text-gray-500" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 4a1 1 0 011-1h16a1 1 0 011 1v2.586a1 1 0 01-.293.707l-6.414 6.414a1 1 0 00-.293.707V17l-4 4v-6.586a1 1 0 00-.293-.707L3.293 7.293A1 1 0 013 6.586V4z" /> | |
| </svg> | |
| Filter | |
| </button> | |
| </div> | |
| </div> | |
| <div class="bg-white shadow overflow-hidden sm:rounded-lg"> | |
| <div class="flex flex-col"> | |
| <div class="-my-2 overflow-x-auto sm:-mx-6 lg:-mx-8"> | |
| <div class="py-2 align-middle inline-block min-w-full sm:px-6 lg:px-8"> | |
| <div class="overflow-hidden border-b border-gray-200"> | |
| <table class="min-w-full divide-y divide-gray-200"> | |
| <thead class="bg-gray-50"> | |
| <tr> | |
| <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider"> | |
| Workflow Name | |
| </th> | |
| <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider"> | |
| Frequency | |
| </th> | |
| <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider"> | |
| Avg. Duration | |
| </th> | |
| <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider"> | |
| Applications | |
| </th> | |
| <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider"> | |
| Status | |
| </th> | |
| <th scope="col" class="relative px-6 py-3"> | |
| <span class="sr-only">Actions</span> | |
| </th> | |
| </tr> | |
| </thead> | |
| <tbody class="bg-white divide-y divide-gray-200"> | |
| <!-- Workflow 1 --> | |
| <tr class="hover:bg-gray-50 cursor-pointer"> | |
| <td class="px-6 py-4 whitespace-nowrap"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 h-10 w-10 rounded-full bg-indigo-100 flex items-center justify-center"> | |
| <svg class="h-6 w-6 text-indigo-600" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11 5H6a2 2 0 00-2 2v11a2 2 0 002 2h11a2 2 0 002-2v-5m-1.414-9.414a2 2 0 112.828 2.828L11.828 15H9v-2.828l8.586-8.586z" /> | |
| </svg> | |
| </div> | |
| <div class="ml-4"> | |
| <div class="text-sm font-medium text-gray-900"> | |
| Customer Report Generation | |
| </div> | |
| <div class="text-sm text-gray-500"> | |
| Sales team | |
| </div> | |
| </div> | |
| </div> | |
| </td> | |
| <td class="px-6 py-4 whitespace-nowrap"> | |
| <div class="text-sm text-gray-900">84 times</div> | |
| <div class="text-sm text-gray-500">~12/day</div> | |
| </td> | |
| <td class="px-6 py-4 whitespace-nowrap"> | |
| <div class="text-sm text-gray-900">4 min 23s</div> | |
| <div class="text-sm text-gray-500">Potential savings: 6+ hours</div> | |
| </td> | |
| <td class="px-6 py-4 whitespace-nowrap"> | |
| <div class="flex -space-x-1"> | |
| <img class="w-6 h-6 rounded-full border-2 border-white" src="https://upload.wikimedia.org/wikipedia/commons/0/08/Microsoft_Excel_logo_%282014-2019%29.svg" alt="Excel"> | |
| <img class="w-6 h-6 rounded-full border-2 border-white" src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/cf/Angular_full_color_logo.svg/1200px-Angular_full_color_logo.svg.png" alt="Angular"> | |
| <img class="w-6 h-6 rounded-full border-2 border-white" src="https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/Salesforce_logo.svg/1200px-Salesforce_logo.svg.png" alt="Salesforce"> | |
| </div> | |
| </td> | |
| <td class="px-6 py-4 whitespace-nowrap"> | |
| <span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-green-100 text-green-800"> | |
| Approved | |
| </span> | |
| </td> | |
| <td class="px-6 py-4 whitespace-nowrap text-right text-sm font-medium"> | |
| <button class="text-indigo-600 hover:text-indigo-900 mr-3">View</button> | |
| <button class="text-gray-600 hover:text-gray-900">Edit</button> | |
| </td> | |
| </tr> | |
| <!-- Workflow 2 --> | |
| <tr class="hover:bg-gray-50 cursor-pointer"> | |
| <td class="px-6 py-4 whitespace-nowrap"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 h-10 w-10 rounded-full bg-purple-100 flex items-center justify-center"> | |
| <svg class="h-6 w-6 text-purple-600" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 15v2m-6 4h12a2 2 0 002-2v-6a2 2 0 00-2-2H6a2 2 0 00-2 2v6a2 2 0 002 2zm10-10V7a4 4 0 00-8 0v4h8z" /> | |
| </svg> | |
| </div> | |
| <div class="ml-4"> | |
| <div class="text-sm font-medium text-gray-900"> | |
| Audit Trail Setup | |
| </div> | |
| <div class="text-sm text-gray-500"> | |
| Finance team | |
| </div> | |
| </div> | |
| </div> | |
| </td> | |
| <td class="px-6 py-4 whitespace-nowrap"> | |
| <div class="text-sm text-gray-900">62 times</div> | |
| <div class="text-sm text-gray-500">~9/day</div> | |
| </td> | |
| <td class="px-6 py-4 whitespace-nowrap"> | |
| <div class="text-sm text-gray-900">7 min 15s</div> | |
| <div class="text-sm text-gray-500">Potential savings: 7+ hours</div> | |
| </td> | |
| <td class="px-6 py-4 whitespace-nowrap"> | |
| <div class="flex -space-x-1"> | |
| <img class="w-6 h-6 rounded-full border-2 border-white" src="https://upload.wikimedia.org/wikipedia/commons/thumb/5/5f/Microsoft_Office_logo_%282019%E2%80%93present%29.svg/1200px-Microsoft_Office_logo_%282019%E2%80%93present%29.svg.png" alt="Office"> | |
| <img class="w-6 h-6 rounded-full border-2 border-white" src="https://upload.wikimedia.org/wikipedia/commons/thumb/3/34/Microsoft_Office_Excel_%282019%E2%80%93present%29.svg/1200px-Microsoft_Office_Excel_%282019%E2%80%93present%29.svg.png" alt="Excel"> | |
| </div> | |
| </td> | |
| <td class="px-6 py-4 whitespace-nowrap"> | |
| <span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-yellow-100 text-yellow-800"> | |
| Pending Approval | |
| </span> | |
| </td> | |
| <td class="px-6 py-4 whitespace-nowrap text-right text-sm font-medium"> | |
| <button class="text-indigo-600 hover:text-indigo-900 mr-3">Review</button> | |
| <button class="text-gray-600 hover:text-gray-900">Delegate</button> | |
| </td> | |
| </tr> | |
| <!-- Workflow 3 --> | |
| <tr class="hover:bg-gray-50 cursor-pointer"> | |
| <td class="px-6 py-4 whitespace-nowrap"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 h-10 w-10 rounded-full bg-blue-100 flex items-center justify-center"> | |
| <svg class="h-6 w-6 text-blue-600" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7h12m0 0l-4-4m4 4l-4 4m0 6H4m0 0l4 4m-4-4l4-4" /> | |
| </svg> | |
| </div> | |
| <div class="ml-4"> | |
| <div class="text-sm font-medium text-gray-900"> | |
| Data Sync Between Systems | |
| </div> | |
| <div class="text-sm text-gray-500"> | |
| IT Ops | |
| </div> | |
| </div> | |
| </div> | |
| </td> | |
| <td class="px-6 py-4 whitespace-nowrap"> | |
| <div class="text-sm text-gray-900">47 times</div> | |
| <div class="text-sm text-gray-500">~6/day</div> | |
| </td> | |
| <td class="px-6 py-4 whitespace-nowrap"> | |
| <div class="text-sm text-gray-900">11 min 42s</div> | |
| <div class="text-sm text-gray-500">Potential savings: 9+ hours</div> | |
| </td> | |
| <td class="px-6 py-4 whitespace-nowrap"> | |
| <div class="flex -space-x-1"> | |
| <img class="w-6 h-6 rounded-full border-2 border-white" src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/4f/Microsoft_Excel_2013_logo.svg/1200px-Microsoft_Excel_2013_logo.svg.png" alt="Excel"> | |
| <img class="w-6 h-6 rounded-full border-2 border-white" src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c9/SAP-Logo.png/240px-SAP-Logo.png" alt="SAP"> | |
| <img class="w-6 h-6 rounded-full border-2 border-white" src="https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/Power_bi_logo_black.svg/1200px-Power_bi_logo_black.svg.png" alt="Power BI"> | |
| </div> | |
| </td> | |
| <td class="px-6 py-4 whitespace-nowrap"> | |
| <span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-green-100 text-green-800"> | |
| Deployed | |
| </span> | |
| </td> | |
| <td class="px-6 py-4 whitespace-nowrap text-right text-sm font-medium"> | |
| <button class="text-indigo-600 hover:text-indigo-900 mr-3">Monitor</button> | |
| <button class="text-gray-600 hover:text-gray-900">Analyze</button> | |
| </td> | |
| </tr> | |
| </tbody> | |
| </table> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Workflow Details Section --> | |
| <div class="mb-8"> | |
| <h2 class="text-xl font-bold text-gray-900 mb-4">Workflow Analysis</h2> | |
| <div class="bg-white shadow overflow-hidden sm:rounded-lg"> | |
| <div class="border-b border-gray-200 px-4 py-5 sm:px-6"> | |
| <div class="-ml-4 -mt-2 flex items-center justify-between flex-wrap sm:flex-nowrap"> | |
| <div class="ml-4 mt-2"> | |
| <h3 class="text-lg leading-6 font-medium text-gray-900"> | |
| Customer Report Generation | |
| </h3> | |
| </div> | |
| <div class="ml-4 mt-2 flex-shrink-0"> | |
| <button type="button" class="relative inline-flex items-center px-4 py-2 border border-transparent shadow-sm text-sm font-medium rounded-md text-white bg-indigo-600 hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500"> | |
| Approve Workflow | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="px-4 py-5 sm:px-6"> | |
| <div class="grid grid-cols-1 lg:grid-cols-3 gap-4"> | |
| <div class="lg:col-span-2"> | |
| <div class="mb-6"> | |
| <h4 class="text-md font-medium text-gray-900 mb-2">Workflow Summary</h4> | |
| <div class="grid grid-cols-2 gap-4 mb-4"> | |
| <div class="border-l border-indigo-200 pl-4"> | |
| <div class="text-sm text-gray-500">Average Duration</div> | |
| <div class="text-xl font-semibold">4 minutes 23s</div> | |
| </div> | |
| <div class="border-l border-indigo-200 pl-4"> | |
| <div class="text-sm text-gray-500">Repetitions</div> | |
| <div class="text-xl font-semibold">84 times</div> | |
| </div> | |
| <div class="border-l border-indigo-200 pl-4"> | |
| <div class="text-sm text-gray-500">Time Savings Potential</div> | |
| <div class="text-xl font-semibold">6+ hours weekly</div> | |
| </div> | |
| <div class="border-l border-indigo-200 pl-4"> | |
| <div class="text-sm text-gray-500">Automation Score</div> | |
| <div class="flex items-center"> | |
| <svg class="w-5 h-5 text-yellow-400" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> | |
| <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path> | |
| </svg> | |
| <svg class="w-5 h-5 text-yellow-400" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> | |
| <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path> | |
| </svg> | |
| <svg class="w-5 h-5 text-yellow-400" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> | |
| <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path> | |
| </svg> | |
| <svg class="w-5 h-5 text-yellow-400" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> | |
| <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path> | |
| </svg> | |
| <svg class="w-5 h-5 text-gray-300" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> | |
| <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path> | |
| </svg> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mb-4"> | |
| <label class="block text-sm font-medium text-gray-700">Workflow Description</label> | |
| <textarea rows="3" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm">Generate customer reports by pulling data from Excel spreadsheets, formatting it according to company standards, and uploading it to Salesforce. This process involves multiple manual steps including sorting, filtering, and data validation checks.</textarea> | |
| </div> | |
| </div> | |
| <div class="mb-6"> | |
| <h4 class="text-md font-medium text-gray-900 mb-2">Applications Used</h4> | |
| <div class="flex space-x-4"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 h-10 w-10"> | |
| <img class="h-10 w-10 rounded-full" src="https://upload.wikimedia.org/wikipedia/commons/0/08/Microsoft_Excel_logo_%282014-2019%29.svg" alt="Excel"> | |
| </div> | |
| <div class="ml-4"> | |
| <div class="text-sm font-medium text-gray-900">Microsoft Excel</div> | |
| <div class="text-sm text-gray-500">45 steps (56%)</div> | |
| </div> | |
| </div> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 h-10 w-10"> | |
| <img class="h-10 w-10 rounded-full" src="https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/Salesforce_logo.svg/1200px-Salesforce_logo.svg.png" alt="Salesforce"> | |
| </div> | |
| <div class="ml-4"> | |
| <div class="text-sm font-medium text-gray-900">Salesforce</div> | |
| <div class="text-sm text-gray-500">23 steps (29%)</div> | |
| </div> | |
| </div> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 h-10 w-10"> | |
| <img class="h-10 w-10 rounded-full" src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/cf/Angular_full_color_logo.svg/1200px-Angular_full_color_logo.svg.png" alt="Angular"> | |
| </div> | |
| <div class="ml-4"> | |
| <div class="text-sm font-medium text-gray-900">Internal Dashboard</div> | |
| <div class="text-sm text-gray-500">12 steps (15%)</div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div> | |
| <h4 class="text-md font-medium text-gray-900 mb-2">Performance Metrics</h4> | |
| <div class="grid grid-cols-2 gap-4"> | |
| <div class="bg-gray-50 p-4 rounded-lg"> | |
| <div class="text-sm text-gray-500 mb-1">Variability</div> | |
| <div class="flex items-center"> | |
| <div class="w-1/4"> | |
| <div class="text-lg font-medium">Low</div> | |
| </div> | |
| <div class="w-3/4"> | |
| <div class="h-2 bg-gray-200 rounded-full overflow-hidden"> | |
| <div class="h-full bg-green-500" style="width: 20%"></div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="bg-gray-50 p-4 rounded-lg"> | |
| <div class="text-sm text-gray-500 mb-1">Consistency</div> | |
| <div class="flex items-center"> | |
| <div class="w-1/4"> | |
| <div class="text-lg font-medium">High</div> | |
| </div> | |
| <div class="w-3/4"> | |
| <div class="h-2 bg-gray-200 rounded-full overflow-hidden"> | |
| <div class="h-full bg-green-500" style="width: 85%"></div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="bg-gray-50 p-4 rounded-lg"> | |
| <div class="text-sm text-gray-500 mb-1">Complexity</div> | |
| <div class="flex items-center"> | |
| <div class="w-1/4"> | |
| <div class="text-lg font-medium">Medium</div> | |
| </div> | |
| <div class="w-3/4"> | |
| <div class="h-2 bg-gray-200 rounded-full overflow-hidden"> | |
| <div class="h-full bg-yellow-400" style="width: 60%"></div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="bg-gray-50 p-4 rounded-lg"> | |
| <div class="text-sm text-gray-500 mb-1">Automation Potential</div> | |
| <div class="flex items-center"> | |
| <div class="w-1/4"> | |
| <div class="text-lg font-medium">High</div> | |
| </div> | |
| <div class="w-3/4"> | |
| <div class="h-2 bg-gray-200 rounded-full overflow-hidden"> | |
| <div class="h-full bg-green-500" style="width: 92%"></div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div> | |
| <h4 class="text-md font-medium text-gray-900 mb-2">Workflow Steps</h4> | |
| <div class="border-l border-gray-200 pb-6"> | |
| <div class="relative timeline-step"> | |
| <div class="absolute top-0 left-0 w-4 h-4 bg-indigo-200 rounded-full -ml-[8.5px] mt-1.5"></div> | |
| <div class="ml-6"> | |
| <div class="flex items-start justify-between"> | |
| <div> | |
| <p class="text-sm font-medium text-gray-900">Open Customer Data Excel file</p> | |
| <p class="text-xs text-gray-500">Excel • 10s average</p> | |
| </div> | |
| <button class="text-xs text-indigo-600 hover:text-indigo-800">View</button> | |
| </div> | |
| <div class="timeline-content transition-all duration-200 opacity-0 transform translate-y-2"> | |
| <div class="mt-2 text-sm text-gray-500 bg-gray-50 p-2 rounded"> | |
| Finds and opens the "Customer_Report_Source.xlsx" file from Downloads folder | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="relative timeline-step mt-4"> | |
| <div class="absolute top-0 left-0 w-4 h-4 bg-indigo-200 rounded-full -ml-[8.5px] mt-1.5"></div> | |
| <div class="ml-6"> | |
| <div class="flex items-start justify-between"> | |
| <div> | |
| <p class="text-sm font-medium text-gray-900">Apply standard formatting</p> | |
| <p class="text-xs text-gray-500">Excel • 45s average</p> | |
| </div> | |
| <button class="text-xs text-indigo-600 hover:text-indigo-800">View</button> | |
| </div> | |
| <div class="timeline-content transition-all duration-200 opacity-0 transform translate-y-2"> | |
| <div class="mt-2 text-sm text-gray-500 bg-gray-50 p-2 rounded"> | |
| Applies company standard formatting: sets header row to bold, columns to specified widths, and conditional formatting rules | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="relative timeline-step mt-4"> | |
| <div class="absolute top-0 left-0 w-4 h-4 bg-indigo-200 rounded-full -ml-[8.5px] mt-1.5"></div> | |
| <div class="ml-6"> | |
| <div class="flex items-start justify-between"> | |
| <div> | |
| <p class="text-sm font-medium text-gray-900">Validate report data</p> | |
| <p class="text-xs text-gray-500">Excel • 1.2m average</p> | |
| </div> | |
| <button class="text-xs text-indigo-600 hover:text-indigo-800">View</button> | |
| </div> | |
| <div class="timeline-content transition-all duration-200 opacity-0 transform translate-y-2"> | |
| <div class="mt-2 text-sm text-gray-500 bg-gray-50 p-2 rounded"> | |
| Runs data validation checks to ensure all required fields are populated and values fall within expected ranges | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="relative timeline-step mt-4"> | |
| <div class="absolute top-0 left-0 w-4 h-4 bg-indigo-200 rounded-full -ml-[8.5px] mt-1.5"></div> | |
| <div class="ml-6"> | |
| <div class="flex items-start justify-between"> | |
| <div> | |
| <p class="text-sm font-medium text-gray-900">Save report with timestamp</p> | |
| <p class="text-xs text-gray-500">Excel • 15s average</p> | |
| </div> | |
| <button class="text-xs text-indigo-600 hover:text-indigo-800">View</button> | |
| </div> | |
| <div class="timeline-content transition-all duration-200 opacity-0 transform translate-y-2"> | |
| <div class="mt-2 text-sm text-gray-500 bg-gray-50 p-2 rounded"> | |
| Saves file as "Customer_Report_[YYYY-MM-DD].xlsx" in Team Reports folder | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="relative timeline-step mt-4"> | |
| <div class="absolute top-0 left-0 w-4 h-4 bg-indigo-200 rounded-full -ml-[8.5px] mt-1.5"></div> | |
| <div class="ml-6"> | |
| <div class="flex items-start justify-between"> | |
| <div> | |
| <p class="text-sm font-medium text-gray-900">Upload to Salesforce</p> | |
| <p class="text-xs text-gray-500">Salesforce • 2.3m average</p> | |
| </div> | |
| <button class="text-xs text-indigo-600 hover:text-indigo-800">View</button> | |
| </div> | |
| <div class="timeline-content transition-all duration-200 opacity-0 transform translate-y-2"> | |
| <div class="mt-2 text-sm text-gray-500 bg-gray-50 p-2 rounded"> | |
| Navigates to Salesforce Reports section, clicks Import button, selects file, and confirms upload settings | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-4 border-t border-gray-200 pt-4"> | |
| <h5 class="text-sm font-medium text-gray-900 mb-2">Sample Session Screenshots</h5> | |
| <div class="grid grid-cols-3 gap-2"> | |
| <div class="bg-gray-100 rounded-md h-24 flex items-center justify-center overflow-hidden"> | |
| <span class="text-xs text-gray-500">Spreadsheet view</span> | |
| </div> | |
| <div class="bg-gray-100 rounded-md h-24 flex items-center justify-center overflow-hidden"> | |
| <span class="text-xs text-gray-500">Formatting window</span> | |
| </div> | |
| <div class="bg-gray-100 rounded-md h-24 flex items-center justify-center overflow-hidden"> | |
| <span class="text-xs text-gray-500">Salesforce UI</span> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-4 border-t border-gray-200 pt-4"> | |
| <h5 class="text-sm font-medium text-gray-900 mb-2">Training Configuration</h5> | |
| <div class="space-y-3"> | |
| <div> | |
| <label class="block text-xs font-medium text-gray-700">Training Dataset Size</label> | |
| <select class="mt-1 block w-full pl-3 pr-10 py-2 text-xs border-gray-300 focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 rounded-md"> | |
| <option>10 sample sessions</option> | |
| <option selected>20 sample sessions</option> | |
| <option>50 sample sessions</option> | |
| </select> | |
| </div> | |
| <div> | |
| <label class="block text-xs font-medium text-gray-700">Retry Logic</label> | |
| <select class="mt-1 block w-full pl-3 pr-10 py-2 text-xs border-gray-300 focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 rounded-md"> | |
| <option>No retry</option> | |
| <option selected>Retry 3 times</option> | |
| <option>Retry 5 times</option> | |
| <option>Retry until success</option> | |
| </select> | |
| </div> | |
| <div> | |
| <label class="block text-xs font-medium text-gray-700">Timeout per Step</label> | |
| <input type="text" class="mt-1 block w-full pl-3 pr-10 py-2 text-xs border-gray-300 focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 rounded-md" value="60 seconds"> | |
| </div> | |
| <button type="button" class="w-full flex justify-center py-2 px-4 border border-transparent rounded-md shadow-sm text-xs font-medium text-white bg-indigo-600 hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500"> | |
| Start Training | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Active Agents Section --> | |
| <div class="mb-8"> | |
| <div class="flex justify-between items-center mb-4"> | |
| <h2 class="text-xl font-bold text-gray-900">Active Agents</h2> | |
| <button type="button" class="inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-indigo-600 hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500"> | |
| Deploy New Agent | |
| </button> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6"> | |
| <!-- Agent Card 1 --> | |
| <div class="bg-white overflow-hidden shadow rounded-lg workflow-card transition duration-150 ease-in-out"> | |
| <div class="px-4 py-5 sm:p-6"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 bg-indigo-500 rounded-md p-3"> | |
| <svg class="h-6 w-6 text-white" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2" /> | |
| </svg> | |
| </div> | |
| <div class="ml-5 w-0 flex-1"> | |
| <dl> | |
| <dt class="text-sm font-medium text-gray-500 truncate"> | |
| Customer Report Generator | |
| </dt> | |
| <dd> | |
| <div class="text-lg font-medium text-gray-900"> | |
| <span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-green-100 text-green-800"> | |
| Running | |
| </span> | |
| </div> | |
| </dd> | |
| </dl> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="bg-gray-50 px-4 py-4 sm:px-6"> | |
| <div class="flex justify-between items-center"> | |
| <div class="text-sm"> | |
| <span class="text-gray-500">Version:</span> <span class="font-medium">1.3.2</span> | |
| </div> | |
| <div class="flex space-x-2"> | |
| <button type="button" class="inline-flex items-center p-1 border border-gray-300 rounded-full shadow-sm text-gray-700 hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500" title="Pause"> | |
| <svg class="h-4 w-4" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 9v6m4-6v6m7-3a9 9 0 11-18 0 9 9 0 0118 0z" /> | |
| </svg> | |
| </button> | |
| <button type="button" class="inline-flex items-center p-1 border border-gray-300 rounded-full shadow-sm text-gray-700 hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500" title="Stop"> | |
| <svg class="h-4 w-4" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 12a9 9 0 11-18 0 9 9 0 0118 0z" /> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 10a1 1 0 011-1h4a1 1 0 011 1v4a1 1 0 01-1 1h-4a1 1 0 01-1-1v-4z" /> | |
| </svg> | |
| </button> | |
| <button type="button" class="inline-flex items-center p-1 border border-gray-300 rounded-full shadow-sm text-gray-700 hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500" title="Configure"> | |
| <svg class="h-4 w-4" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z" /> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" /> | |
| </svg> | |
| </button> | |
| <button type="button" class="inline-flex items-center p-1 border border-transparent rounded-full shadow-sm text-white bg-indigo-600 hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500" title="View Details"> | |
| <svg class="h-4 w-4" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" /> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z" /> | |
| </svg> | |
| </button> | |
| </div> | |
| </div> | |
| <div class="mt-3 grid grid-cols-3 gap-2 text-xs"> | |
| <div class="text-center"> | |
| <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=lustrewdynamics/lustrewflow" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |