12/20/25 V.3

This commit is contained in:
Flatlogic Bot 2025-12-20 21:45:21 +00:00
parent deebca6a9f
commit ce161bb766
3 changed files with 95 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 MiB

View File

@ -254,6 +254,101 @@
</div> </div>
</div> </div>
<!-- Third Row -->
<div class="grid grid-cols-1 lg:grid-cols-3 gap-6 mt-6">
<!-- Automation Flows -->
<div class="lg:col-span-2 card p-4">
<div class="flex justify-between items-center mb-4">
<h3 class="font-semibold">Automation Flows</h3>
<button class="btn text-sm bg-blue-600 text-white">Create New Flow</button>
</div>
<div class="grid grid-cols-2 gap-4">
<div class="p-3 rounded-lg bg-gray-50 border">
<div class="font-semibold text-sm">Onboard Subcontractor</div>
<p class="text-xs text-gray-500 mt-1">Sends welcome email, assigns training, creates profile.</p>
<div class="flex items-center justify-between mt-3">
<div class="flex -space-x-2">
<div class="w-6 h-6 bg-blue-200 rounded-full border-2 border-white"></div>
<div class="w-6 h-6 bg-green-200 rounded-full border-2 border-white"></div>
</div>
<span class="text-xs font-semibold text-green-600">Active</span>
</div>
</div>
<div class="p-3 rounded-lg bg-gray-50 border">
<div class="font-semibold text-sm">Process Daily Report</div>
<p class="text-xs text-gray-500 mt-1">Checks for completion, flags anomalies, archives report.</p>
<div class="flex items-center justify-between mt-3">
<div class="flex -space-x-2">
<div class="w-6 h-6 bg-yellow-200 rounded-full border-2 border-white"></div>
</div>
<span class="text-xs font-semibold text-green-600">Active</span>
</div>
</div>
<div class="p-3 rounded-lg bg-gray-50 border">
<div class="font-semibold text-sm">Review COI Document</div>
<p class="text-xs text-gray-500 mt-1">AI checks for valid dates, coverage, and holder details.</p>
<div class="flex items-center justify-between mt-3">
<div class="flex -space-x-2">
<div class="w-6 h-6 bg-red-200 rounded-full border-2 border-white"></div>
<div class="w-6 h-6 bg-purple-200 rounded-full border-2 border-white"></div>
</div>
<span class="text-xs font-semibold text-gray-400">Inactive</span>
</div>
</div>
<div class="p-3 rounded-lg bg-gray-50 border flex items-center justify-center text-gray-500">
+ Add new
</div>
</div>
</div>
<!-- Team Directory -->
<div class="card p-4">
<h3 class="font-semibold mb-4">Team Directory</h3>
<div class="space-y-3">
<div class="flex items-center justify-between">
<div class="flex items-center gap-3">
<div class="w-10 h-10 bg-blue-200 rounded-full"></div>
<div>
<div class="font-semibold">Eng. Rahim</div>
<div class="text-sm text-gray-500">Project Manager</div>
</div>
</div>
<button class="text-sm text-blue-600">View</button>
</div>
<div class="flex items-center justify-between">
<div class="flex items-center gap-3">
<div class="w-10 h-10 bg-green-200 rounded-full"></div>
<div>
<div class="font-semibold">T. Coleman</div>
<div class="text-sm text-gray-500">Supervisor</div>
</div>
</div>
<button class="text-sm text-blue-600">View</button>
</div>
<div class="flex items-center justify-between">
<div class="flex items-center gap-3">
<div class="w-10 h-10 bg-yellow-200 rounded-full"></div>
<div>
<div class="font-semibold">M. Rony</div>
<div class="text-sm text-gray-500">Electrician</div>
</div>
</div>
<button class="text-sm text-blue-600">View</button>
</div>
<div class="flex items-center justify-between">
<div class="flex items-center gap-3">
<div class="w-10 h-10 bg-red-200 rounded-full"></div>
<div>
<div class="font-semibold">A.H. Nayeem</div>
<div class="text-sm text-gray-500">Plumber</div>
</div>
</div>
<button class="text-sm text-blue-600">View</button>
</div>
</div>
</div>
</div>
</main> </main>
</div> </div>
</div> </div>

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 MiB