File size: 33,258 Bytes
fd28fc5 |
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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 |
<!DOCTYPE html>
<html lang="pt-BR" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TOM System - Compras</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
colors: {
primary: {
50: '#f0f9ff',
100: '#e0f2fe',
200: '#bae6fd',
300: '#7dd3fc',
400: '#38bdf8',
500: '#0ea5e9',
600: '#0284c7',
700: '#0369a1',
800: '#075985',
900: '#0c4a6e',
},
dark: {
900: '#0f172a',
800: '#1e293b',
700: '#334155',
600: '#475569',
500: '#64748b',
}
}
}
}
}
</script>
<style>
.sidebar-collapsed {
width: 80px;
}
.sidebar-collapsed .sidebar-item-text {
display: none;
}
.sidebar-collapsed .logo-text {
display: none;
}
.sidebar-collapsed .sidebar-item {
justify-content: center;
}
.sidebar-collapsed .user-info {
display: none;
}
.sidebar-collapsed .toggle-sidebar {
left: 25px;
}
.fade-in {
animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
.card-hover:hover {
transform: translateY(-5px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.transition-all {
transition: all 0.3s ease;
}
</style>
</head>
<body class="bg-gray-900 text-gray-100 min-h-screen flex">
<!-- Sidebar -->
<div id="sidebar" class="bg-gray-800 text-white w-64 min-h-screen flex flex-col transition-all duration-300 fixed z-10">
<div class="p-4 flex items-center space-x-3 border-b border-gray-700">
<div class="bg-blue-600 p-2 rounded-lg">
<i class="fas fa-shopping-cart text-white text-xl"></i>
</div>
<span class="logo-text text-xl font-bold">TOM System</span>
</div>
<div class="p-4 border-b border-gray-700 flex items-center space-x-3">
<div class="w-10 h-10 rounded-full bg-blue-600 flex items-center justify-center">
<span class="text-white font-bold">AD</span>
</div>
<div class="user-info">
<p class="font-medium">Admin User</p>
<p class="text-gray-400 text-sm">[email protected]</p>
</div>
</div>
<div class="p-4 flex-1 overflow-y-auto">
<div class="mb-6">
<p class="text-gray-400 uppercase text-xs font-bold mb-2">Menu Principal</p>
<ul>
<li>
<a href="#" class="sidebar-item flex items-center space-x-3 p-2 rounded-lg bg-blue-900 text-white mb-1">
<i class="fas fa-tachometer-alt"></i>
<span class="sidebar-item-text">Dashboard</span>
</a>
</li>
<li>
<a href="#" class="sidebar-item flex items-center space-x-3 p-2 rounded-lg hover:bg-gray-700 mb-1">
<i class="fas fa-file-invoice-dollar"></i>
<span class="sidebar-item-text">Orçamentos</span>
</a>
</li>
<li>
<a href="#" class="sidebar-item flex items-center space-x-3 p-2 rounded-lg hover:bg-gray-700 mb-1">
<i class="fas fa-shopping-basket"></i>
<span class="sidebar-item-text">Pedidos</span>
</a>
</li>
<li>
<a href="#" class="sidebar-item flex items-center space-x-3 p-2 rounded-lg hover:bg-gray-700 mb-1">
<i class="fas fa-users"></i>
<span class="sidebar-item-text">Clientes</span>
</a>
</li>
<li>
<a href="#" class="sidebar-item flex items-center space-x-3 p-2 rounded-lg hover:bg-gray-700 mb-1">
<i class="fas fa-truck"></i>
<span class="sidebar-item-text">Fornecedores</span>
</a>
</li>
<li>
<a href="#" class="sidebar-item flex items-center space-x-3 p-2 rounded-lg hover:bg-gray-700 mb-1">
<i class="fas fa-boxes"></i>
<span class="sidebar-item-text">Produtos</span>
</a>
</li>
</ul>
</div>
<div class="mb-6">
<p class="text-gray-400 uppercase text-xs font-bold mb-2">Administrativo</p>
<ul>
<li>
<a href="#" class="sidebar-item flex items-center space-x-3 p-2 rounded-lg hover:bg-gray-700 mb-1">
<i class="fas fa-user-shield"></i>
<span class="sidebar-item-text">Usuários</span>
</a>
</li>
<li>
<a href="#" class="sidebar-item flex items-center space-x-3 p-2 rounded-lg hover:bg-gray-700 mb-1">
<i class="fas fa-key"></i>
<span class="sidebar-item-text">Permissões</span>
</a>
</li>
<li>
<a href="#" class="sidebar-item flex items-center space-x-3 p-2 rounded-lg hover:bg-gray-700 mb-1">
<i class="fas fa-chart-bar"></i>
<span class="sidebar-item-text">Relatórios</span>
</a>
</li>
<li>
<a href="#" class="sidebar-item flex items-center space-x-3 p-2 rounded-lg hover:bg-gray-700 mb-1">
<i class="fas fa-cog"></i>
<span class="sidebar-item-text">Configurações</span>
</a>
</li>
</ul>
</div>
</div>
<div class="p-4 border-t border-gray-700">
<button onclick="toggleSidebar()" class="toggle-sidebar flex items-center space-x-3 p-2 rounded-lg hover:bg-gray-700 w-full">
<i class="fas fa-chevron-left"></i>
<span class="sidebar-item-text">Recolher Menu</span>
</button>
<a href="#" class="sidebar-item flex items-center space-x-3 p-2 rounded-lg hover:bg-gray-700 mt-2">
<i class="fas fa-sign-out-alt"></i>
<span class="sidebar-item-text">Sair</span>
</a>
</div>
</div>
<!-- Main Content -->
<div class="flex-1 ml-64 transition-all duration-300" id="main-content">
<!-- Top Navigation -->
<nav class="bg-gray-800 p-4 flex justify-between items-center border-b border-gray-700">
<div class="flex items-center space-x-4">
<button class="md:hidden text-gray-300 hover:text-white" onclick="toggleMobileSidebar()">
<i class="fas fa-bars"></i>
</button>
<h1 class="text-xl font-bold">Dashboard</h1>
</div>
<div class="flex items-center space-x-4">
<div class="relative">
<button class="text-gray-300 hover:text-white" onclick="toggleDropdown('notifications-dropdown')">
<i class="fas fa-bell"></i>
<span class="absolute top-0 right-0 h-2 w-2 rounded-full bg-red-500"></span>
</button>
<div id="notifications-dropdown" class="hidden absolute right-0 mt-2 w-72 bg-gray-800 rounded-lg shadow-lg border border-gray-700 z-20">
<div class="p-3 border-b border-gray-700">
<h3 class="font-bold">Notificações (3)</h3>
</div>
<div class="max-h-60 overflow-y-auto">
<a href="#" class="block p-3 hover:bg-gray-700 border-b border-gray-700">
<div class="flex items-start">
<div class="bg-blue-600 p-2 rounded-full mr-3">
<i class="fas fa-shopping-basket text-white text-sm"></i>
</div>
<div>
<p class="font-medium">Novo pedido para aprovação</p>
<p class="text-gray-400 text-sm">Pedido #1234 aguardando sua análise</p>
<p class="text-gray-500 text-xs mt-1">2 minutos atrás</p>
</div>
</div>
</a>
<a href="#" class="block p-3 hover:bg-gray-700 border-b border-gray-700">
<div class="flex items-start">
<div class="bg-green-600 p-2 rounded-full mr-3">
<i class="fas fa-check-circle text-white text-sm"></i>
</div>
<div>
<p class="font-medium">Pedido aprovado</p>
<p class="text-gray-400 text-sm">Seu pedido #1233 foi aprovado</p>
<p class="text-gray-500 text-xs mt-1">1 hora atrás</p>
</div>
</div>
</a>
<a href="#" class="block p-3 hover:bg-gray-700">
<div class="flex items-start">
<div class="bg-yellow-600 p-2 rounded-full mr-3">
<i class="fas fa-exclamation-triangle text-white text-sm"></i>
</div>
<div>
<p class="font-medium">Orçamento expirando</p>
<p class="text-gray-400 text-sm">Orçamento #1221 expira em 2 dias</p>
<p class="text-gray-500 text-xs mt-1">Ontem</p>
</div>
</div>
</a>
</div>
<div class="p-3 border-t border-gray-700">
<a href="#" class="text-blue-400 hover:text-blue-300 text-sm font-medium">Ver todas</a>
</div>
</div>
</div>
<div class="relative">
<button class="flex items-center space-x-2" onclick="toggleDropdown('profile-dropdown')">
<div class="w-8 h-8 rounded-full bg-blue-600 flex items-center justify-center">
<span class="text-white font-bold">AD</span>
</div>
<span class="hidden md:inline">Admin User</span>
<i class="fas fa-chevron-down text-xs hidden md:inline"></i>
</button>
<div id="profile-dropdown" class="hidden absolute right-0 mt-2 w-48 bg-gray-800 rounded-lg shadow-lg border border-gray-700 z-20">
<a href="#" class="block px-4 py-2 hover:bg-gray-700">Meu Perfil</a>
<a href="#" class="block px-4 py-2 hover:bg-gray-700">Configurações</a>
<div class="border-t border-gray-700"></div>
<a href="#" class="block px-4 py-2 hover:bg-gray-700 text-red-400 hover:text-red-300">Sair</a>
</div>
</div>
</div>
</nav>
<!-- Content -->
<main class="p-6">
<!-- Stats Cards -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6 mb-6">
<div class="bg-gray-800 rounded-lg p-6 shadow-lg card-hover transition-all">
<div class="flex justify-between items-start">
<div>
<p class="text-gray-400">Orçamentos</p>
<h3 class="text-2xl font-bold mt-1">1,254</h3>
<p class="text-green-400 text-sm mt-2"><i class="fas fa-arrow-up mr-1"></i> 12% este mês</p>
</div>
<div class="bg-blue-900 p-3 rounded-lg">
<i class="fas fa-file-invoice-dollar text-blue-400"></i>
</div>
</div>
</div>
<div class="bg-gray-800 rounded-lg p-6 shadow-lg card-hover transition-all">
<div class="flex justify-between items-start">
<div>
<p class="text-gray-400">Pedidos</p>
<h3 class="text-2xl font-bold mt-1">842</h3>
<p class="text-green-400 text-sm mt-2"><i class="fas fa-arrow-up mr-1"></i> 8% este mês</p>
</div>
<div class="bg-green-900 p-3 rounded-lg">
<i class="fas fa-shopping-basket text-green-400"></i>
</div>
</div>
</div>
<div class="bg-gray-800 rounded-lg p-6 shadow-lg card-hover transition-all">
<div class="flex justify-between items-start">
<div>
<p class="text-gray-400">Aprovações Pendentes</p>
<h3 class="text-2xl font-bold mt-1">23</h3>
<p class="text-red-400 text-sm mt-2"><i class="fas fa-arrow-down mr-1"></i> 5% este mês</p>
</div>
<div class="bg-yellow-900 p-3 rounded-lg">
<i class="fas fa-clock text-yellow-400"></i>
</div>
</div>
</div>
<div class="bg-gray-800 rounded-lg p-6 shadow-lg card-hover transition-all">
<div class="flex justify-between items-start">
<div>
<p class="text-gray-400">Receita Total</p>
<h3 class="text-2xl font-bold mt-1">R$ 1.2M</h3>
<p class="text-green-400 text-sm mt-2"><i class="fas fa-arrow-up mr-1"></i> 15% este mês</p>
</div>
<div class="bg-purple-900 p-3 rounded-lg">
<i class="fas fa-dollar-sign text-purple-400"></i>
</div>
</div>
</div>
</div>
<!-- Charts and Recent Activity -->
<div class="grid grid-cols-1 lg:grid-cols-3 gap-6 mb-6">
<!-- Sales Chart -->
<div class="bg-gray-800 rounded-lg p-6 shadow-lg lg:col-span-2">
<div class="flex justify-between items-center mb-6">
<h2 class="text-lg font-bold">Desempenho Mensal</h2>
<div class="flex space-x-2">
<button class="px-3 py-1 bg-blue-900 text-blue-400 rounded-lg text-sm">Mensal</button>
<button class="px-3 py-1 bg-gray-700 hover:bg-gray-600 rounded-lg text-sm">Anual</button>
</div>
</div>
<div class="h-64">
<!-- Chart Placeholder -->
<div class="bg-gray-700 rounded-lg h-full flex items-center justify-center">
<p class="text-gray-400">Gráfico de desempenho</p>
</div>
</div>
</div>
<!-- Recent Activity -->
<div class="bg-gray-800 rounded-lg p-6 shadow-lg">
<h2 class="text-lg font-bold mb-6">Atividade Recente</h2>
<div class="space-y-4">
<div class="flex items-start">
<div class="bg-blue-600 p-2 rounded-full mr-3">
<i class="fas fa-check-circle text-white text-sm"></i>
</div>
<div>
<p class="font-medium">Pedido aprovado</p>
<p class="text-gray-400 text-sm">Pedido #1234 foi aprovado por Admin User</p>
<p class="text-gray-500 text-xs mt-1">10 minutos atrás</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-green-600 p-2 rounded-full mr-3">
<i class="fas fa-plus-circle text-white text-sm"></i>
</div>
<div>
<p class="font-medium">Novo orçamento</p>
<p class="text-gray-400 text-sm">João Silva criou um novo orçamento</p>
<p class="text-gray-500 text-xs mt-1">1 hora atrás</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-yellow-600 p-2 rounded-full mr-3">
<i class="fas fa-exclamation-triangle text-white text-sm"></i>
</div>
<div>
<p class="font-medium">Pedido rejeitado</p>
<p class="text-gray-400 text-sm">Pedido #1233 foi rejeitado por Admin User</p>
<p class="text-gray-500 text-xs mt-1">2 horas atrás</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-purple-600 p-2 rounded-full mr-3">
<i class="fas fa-user-plus text-white text-sm"></i>
</div>
<div>
<p class="font-medium">Novo cliente</p>
<p class="text-gray-400 text-sm">Empresa XYZ foi cadastrada no sistema</p>
<p class="text-gray-500 text-xs mt-1">Ontem</p>
</div>
</div>
</div>
<a href="#" class="block text-center mt-4 text-blue-400 hover:text-blue-300 text-sm font-medium">Ver todas as atividades</a>
</div>
</div>
<!-- Pending Approvals and Recent Orders -->
<div class="grid grid-cols-1 lg:grid-cols-2 gap-6">
<!-- Pending Approvals -->
<div class="bg-gray-800 rounded-lg shadow-lg">
<div class="p-6 border-b border-gray-700">
<h2 class="text-lg font-bold">Aprovações Pendentes</h2>
</div>
<div class="overflow-x-auto">
<table class="min-w-full divide-y divide-gray-700">
<thead class="bg-gray-700">
<tr>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-300 uppercase tracking-wider">Pedido</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-300 uppercase tracking-wider">Cliente</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-300 uppercase tracking-wider">Valor</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-300 uppercase tracking-wider">Ações</th>
</tr>
</thead>
<tbody class="bg-gray-800 divide-y divide-gray-700">
<tr>
<td class="px-6 py-4 whitespace-nowrap">
<div class="font-medium">#1234</div>
<div class="text-gray-400 text-sm">12/06/2023</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="font-medium">Empresa ABC</div>
<div class="text-gray-400 text-sm">João Silva</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="font-medium">R$ 12,450.00</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<button class="bg-green-600 hover:bg-green-700 text-white px-3 py-1 rounded text-sm mr-2">Aprovar</button>
<button class="bg-red-600 hover:bg-red-700 text-white px-3 py-1 rounded text-sm">Rejeitar</button>
</td>
</tr>
<tr>
<td class="px-6 py-4 whitespace-nowrap">
<div class="font-medium">#1233</div>
<div class="text-gray-400 text-sm">10/06/2023</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="font-medium">Indústria XYZ</div>
<div class="text-gray-400 text-sm">Maria Souza</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="font-medium">R$ 8,720.50</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<button class="bg-green-600 hover:bg-green-700 text-white px-3 py-1 rounded text-sm mr-2">Aprovar</button>
<button class="bg-red-600 hover:bg-red-700 text-white px-3 py-1 rounded text-sm">Rejeitar</button>
</td>
</tr>
<tr>
<td class="px-6 py-4 whitespace-nowrap">
<div class="font-medium">#1232</div>
<div class="text-gray-400 text-sm">08/06/2023</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="font-medium">Comércio LTDA</div>
<div class="text-gray-400 text-sm">Carlos Oliveira</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="font-medium">R$ 5,340.00</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<button class="bg-green-600 hover:bg-green-700 text-white px-3 py-1 rounded text-sm mr-2">Aprovar</button>
<button class="bg-red-600 hover:bg-red-700 text-white px-3 py-1 rounded text-sm">Rejeitar</button>
</td>
</tr>
</tbody>
</table>
</div>
<div class="p-4 border-t border-gray-700">
<a href="#" class="text-blue-400 hover:text-blue-300 text-sm font-medium">Ver todas as aprovações pendentes</a>
</div>
</div>
<!-- Recent Orders -->
<div class="bg-gray-800 rounded-lg shadow-lg">
<div class="p-6 border-b border-gray-700">
<h2 class="text-lg font-bold">Pedidos Recentes</h2>
</div>
<div class="overflow-x-auto">
<table class="min-w-full divide-y divide-gray-700">
<thead class="bg-gray-700">
<tr>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-300 uppercase tracking-wider">Pedido</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-300 uppercase tracking-wider">Status</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-300 uppercase tracking-wider">Valor</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-300 uppercase tracking-wider">Ações</th>
</tr>
</thead>
<tbody class="bg-gray-800 divide-y divide-gray-700">
<tr>
<td class="px-6 py-4 whitespace-nowrap">
<div class="font-medium">#1231</div>
<div class="text-gray-400 text-sm">05/06/2023</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<span class="px-2 py-1 bg-green-900 text-green-300 rounded-full text-xs">Aprovado</span>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="font-medium">R$ 15,200.00</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<button class="bg-blue-600 hover:bg-blue-700 text-white px-3 py-1 rounded text-sm">Detalhes</button>
</td>
</tr>
<tr>
<td class="px-6 py-4 whitespace-nowrap">
<div class="font-medium">#1230</div>
<div class="text-gray-400 text-sm">03/06/2023</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<span class="px-2 py-1 bg-yellow-900 text-yellow-300 rounded-full text-xs">Processando</span>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="font-medium">R$ 9,870.50</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<button class="bg-blue-600 hover:bg-blue-700 text-white px-3 py-1 rounded text-sm">Detalhes</button>
</td>
</tr>
<tr>
<td class="px-6 py-4 whitespace-nowrap">
<div class="font-medium">#1229</div>
<div class="text-gray-400 text-sm">01/06/2023</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<span class="px-2 py-1 bg-red-900 text-red-300 rounded-full text-xs">Rejeitado</span>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="font-medium">R$ 7,430.00</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<button class="bg-blue-600 hover:bg-blue-700 text-white px-3 py-1 rounded text-sm">Detalhes</button>
</td>
</tr>
</tbody>
</table>
</div>
<div class="p-4 border-t border-gray-700">
<a href="#" class="text-blue-400 hover:text-blue-300 text-sm font-medium">Ver todos os pedidos</a>
</div>
</div>
</div>
</main>
</div>
<!-- Mobile Sidebar Overlay -->
<div id="mobile-sidebar-overlay" class="fixed inset-0 bg-black bg-opacity-50 z-20 hidden" onclick="toggleMobileSidebar()"></div>
<script>
// Toggle sidebar
function toggleSidebar() {
const sidebar = document.getElementById('sidebar');
const mainContent = document.getElementById('main-content');
sidebar.classList.toggle('sidebar-collapsed');
mainContent.classList.toggle('ml-64');
mainContent.classList.toggle('ml-20');
}
// Toggle mobile sidebar
function toggleMobileSidebar() {
const sidebar = document.getElementById('sidebar');
const overlay = document.getElementById('mobile-sidebar-overlay');
sidebar.classList.toggle('hidden');
sidebar.classList.toggle('block');
overlay.classList.toggle('hidden');
}
// Toggle dropdowns
function toggleDropdown(id) {
const dropdown = document.getElementById(id);
dropdown.classList.toggle('hidden');
}
// Close dropdowns when clicking outside
document.addEventListener('click', function(event) {
if (!event.target.matches('.relative *')) {
const dropdowns = document.querySelectorAll('.absolute');
dropdowns.forEach(function(dropdown) {
if (!dropdown.classList.contains('hidden')) {
dropdown.classList.add('hidden');
}
});
}
});
// Dark mode toggle (if needed)
function toggleDarkMode() {
const html = document.documentElement;
html.classList.toggle('dark');
}
</script>
<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=gallabs/dashboard-orcamento-pcompras" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |