Spaces:
Running
Running
File size: 32,383 Bytes
3538a4d |
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 591 592 593 594 595 596 597 598 599 600 601 602 603 |
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tablero Kanban SEO - WebIntelArt.com</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">
<style>
.kanban-column {
min-height: 600px;
}
.task-card {
transition: all 0.3s ease;
}
.task-card:hover {
transform: translateY(-2px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.priority-critical {
border-left: 4px solid #ef4444;
}
.priority-high {
border-left: 4px solid #f59e0b;
}
.priority-medium {
border-left: 4px solid #3b82f6;
}
.priority-low {
border-left: 4px solid #10b981;
}
.progress-bar {
height: 6px;
border-radius: 3px;
}
.tag-technical {
background-color: #e0f2fe;
color: #0369a1;
}
.tag-content {
background-color: #dcfce7;
color: #166534;
}
.tag-offpage {
background-color: #fae8ff;
color: #86198f;
}
.tag-ux {
background-color: #ffedd5;
color: #9a3412;
}
.tag-strategy {
background-color: #e0e7ff;
color: #4338ca;
}
.tag-audit {
background-color: #fef3c7;
color: #92400e;
}
.tag-local {
background-color: #ccfbf1;
color: #0f766e;
}
.tag-reputation {
background-color: #fee2e2;
color: #b91c1c;
}
.tag-knowledge {
background-color: #ecfccb;
color: #3f6212;
}
.tag-monitoring {
background-color: #dbeafe;
color: #1e40af;
}
.phase-1 {
background-color: #dcfce7;
color: #166534;
}
.phase-2 {
background-color: #dbeafe;
color: #1e40af;
}
.phase-3 {
background-color: #f3e8ff;
color: #7e22ce;
}
.phase-4 {
background-color: #fef3c7;
color: #92400e;
}
.dropdown-content {
display: none;
position: absolute;
right: 0;
background-color: white;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
border-radius: 0.5rem;
}
.dropdown:hover .dropdown-content {
display: block;
}
.dropdown-item {
padding: 0.5rem 1rem;
cursor: pointer;
}
.dropdown-item:hover {
background-color: #f3f4f6;
}
</style>
</head>
<body class="bg-gray-50">
<div class="container mx-auto px-4 py-8">
<!-- Header -->
<header class="mb-8">
<div class="flex flex-col md:flex-row justify-between items-start md:items-center gap-4">
<div>
<h1 class="text-3xl font-bold text-gray-800">Tablero Kanban SEO</h1>
<h2 class="text-xl text-gray-600">Mejora Exponencial WebIntelArt.com (v4 - Tareas para Hoy)</h2>
</div>
<div class="flex flex-col sm:flex-row items-start sm:items-center gap-4 w-full md:w-auto">
<div class="bg-white p-3 rounded-lg shadow w-full sm:w-auto">
<span class="text-sm text-gray-500">Fecha:</span>
<span class="font-medium">04/04/2025</span>
</div>
<button id="add-task" class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-lg flex items-center justify-center w-full sm:w-auto">
<i class="fas fa-plus mr-2"></i> Nueva Tarea
</button>
</div>
</div>
</header>
<!-- KPIs Section -->
<section class="mb-10 bg-white p-6 rounded-xl shadow">
<h3 class="text-xl font-semibold mb-4 flex items-center">
<i class="fas fa-chart-bar mr-2 text-blue-500"></i> KPIs Principales (Métricas Globales a Seguir)
</h3>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
<!-- KPI 1 -->
<div class="bg-gray-50 p-4 rounded-lg border border-gray-200">
<div class="flex justify-between items-start">
<div>
<h4 class="font-medium text-gray-700">Tráfico Orgánico</h4>
<p class="text-sm text-gray-500">Sesiones/Usuarios</p>
</div>
<span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded">Actualizar</span>
</div>
<div class="mt-2">
<div class="flex items-center">
<span class="text-gray-500 mr-2">Actual:</span>
<input type="text" class="border-b border-gray-300 w-20 px-1 py-1 text-gray-700" value="1,250">
</div>
<div class="flex items-center mt-1">
<span class="text-gray-500 mr-2">Objetivo:</span>
<input type="text" class="border-b border-blue-300 w-20 px-1 py-1 text-blue-700 font-medium" value="3,500">
</div>
</div>
</div>
<!-- KPI 2 -->
<div class="bg-gray-50 p-4 rounded-lg border border-gray-200">
<div class="flex justify-between items-start">
<div>
<h4 class="font-medium text-gray-700">Posición Media General</h4>
<p class="text-sm text-gray-500">GSC</p>
</div>
<span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded">Actualizar</span>
</div>
<div class="mt-2">
<div class="flex items-center">
<span class="text-gray-500 mr-2">Actual:</span>
<input type="text" class="border-b border-gray-300 w-20 px-1 py-1 text-gray-700" value="28.5">
</div>
<div class="flex items-center mt-1">
<span class="text-gray-500 mr-2">Objetivo:</span>
<input type="text" class="border-b border-blue-300 w-20 px-1 py-1 text-blue-700 font-medium" value="15.0">
</div>
</div>
</div>
<!-- KPI 3 -->
<div class="bg-gray-50 p-4 rounded-lg border border-gray-200">
<div class="flex justify-between items-start">
<div>
<h4 class="font-medium text-gray-700">Tasa de Conversión Orgánica</h4>
<p class="text-sm text-gray-500">%</p>
</div>
<span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded">Actualizar</span>
</div>
<div class="mt-2">
<div class="flex items-center">
<span class="text-gray-500 mr-2">Actual:</span>
<input type="text" class="border-b border-gray-300 w-20 px-1 py-1 text-gray-700" value="2.1%">
</div>
<div class="flex items-center mt-1">
<span class="text-gray-500 mr-2">Objetivo:</span>
<input type="text" class="border-b border-blue-300 w-20 px-1 py-1 text-blue-700 font-medium" value="4.5%">
</div>
</div>
</div>
<!-- KPI 4 -->
<div class="bg-gray-50 p-4 rounded-lg border border-gray-200">
<div class="flex justify-between items-start">
<div>
<h4 class="font-medium text-gray-700">Nº de Keywords en Top 10</h4>
<p class="text-sm text-gray-500">Keywords</p>
</div>
<span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded">Actualizar</span>
</div>
<div class="mt-2">
<div class="flex items-center">
<span class="text-gray-500 mr-2">Actual:</span>
<input type="text" class="border-b border-gray-300 w-20 px-1 py-1 text-gray-700" value="42">
</div>
<div class="flex items-center mt-1">
<span class="text-gray-500 mr-2">Objetivo:</span>
<input type="text" class="border-b border-blue-300 w-20 px-1 py-1 text-blue-700 font-medium" value="120">
</div>
</div>
</div>
<!-- KPI 5 -->
<div class="bg-gray-50 p-4 rounded-lg border border-gray-200">
<div class="flex justify-between items-start">
<div>
<h4 class="font-medium text-gray-700">Puntuación Core Web Vitals</h4>
<p class="text-sm text-gray-500">Promedio</p>
</div>
<span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded">Actualizar</span>
</div>
<div class="mt-2">
<div class="flex items-center">
<span class="text-gray-500 mr-2">Actual:</span>
<input type="text" class="border-b border-gray-300 w-20 px-1 py-1 text-gray-700" value="72">
</div>
<div class="flex items-center mt-1">
<span class="text-gray-500 mr-2">Objetivo:</span>
<input type="text" class="border-b border-blue-300 w-20 px-1 py-1 text-blue-700 font-medium" value="90+">
</div>
</div>
</div>
<!-- KPI 6 -->
<div class="bg-gray-50 p-4 rounded-lg border border-gray-200">
<div class="flex justify-between items-start">
<div>
<h4 class="font-medium text-gray-700">Autoridad de Dominio</h4>
<p class="text-sm text-gray-500">DR/DA</p>
</div>
<span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded">Actualizar</span>
</div>
<div class="mt-2">
<div class="flex items-center">
<span class="text-gray-500 mr-2">Actual:</span>
<input type="text" class="border-b border-gray-300 w-20 px-1 py-1 text-gray-700" value="24">
</div>
<div class="flex items-center mt-1">
<span class="text-gray-500 mr-2">Objetivo:</span>
<input type="text" class="border-b border-blue-300 w-20 px-1 py-1 text-blue-700 font-medium" value="35">
</div>
</div>
</div>
</div>
</section>
<!-- Kanban Board -->
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-6 gap-4">
<!-- Backlog Column -->
<div class="kanban-column bg-gray-100 rounded-lg p-4">
<div class="flex justify-between items-center mb-4">
<h3 class="font-semibold text-lg flex items-center">
<i class="fas fa-lightbulb mr-2 text-yellow-500"></i> Backlog / Ideas
</h3>
<span class="bg-gray-200 text-gray-700 text-xs px-2 py-1 rounded-full">4</span>
</div>
<!-- Task Cards -->
<div class="space-y-4">
<!-- Task 17 -->
<div class="task-card bg-white p-4 rounded-lg shadow-sm cursor-move priority-low" draggable="true">
<div class="flex justify-between items-start mb-2">
<h4 class="font-medium">17. Optimización de Google Business Profile</h4>
<div class="dropdown relative">
<button class="text-gray-400 hover:text-gray-600">
<i class="fas fa-ellipsis-v"></i>
</button>
<div class="dropdown-content">
<div class="dropdown-item">Editar</div>
<div class="dropdown-item">Mover a To Do</div>
<div class="dropdown-item">Eliminar</div>
</div>
</div>
</div>
<p class="text-sm text-gray-600 mb-3">Aunque seas digital, si tienes una ubicación física o un área de servicio específica, optimiza tu perfil de GBP con información completa, fotos, posts y consigue reseñas.</p>
<div class="flex items-center text-xs text-gray-500 mb-2">
<i class="fas fa-user mr-1"></i>
<span>Responsable: SEO/Local</span>
</div>
<div class="flex items-center text-xs text-gray-500 mb-2">
<i class="fas fa-calendar mr-1"></i>
<span>Fecha: Pendiente</span>
</div>
<div class="flex items-center text-xs text-gray-500 mb-3">
<i class="fas fa-clock mr-1"></i>
<span>Estimación: N/A</span>
</div>
<div class="mb-3">
<div class="flex justify-between text-xs mb-1">
<span>Progreso</span>
<span>0%</span>
</div>
<div class="progress-bar bg-gray-200 w-full">
<div class="progress-bar bg-green-500" style="width: 0%"></div>
</div>
</div>
<div class="flex flex-wrap gap-1">
<span class="tag-offpage text-xs px-2 py-1 rounded-full">Off-Page</span>
<span class="tag-local text-xs px-2 py-1 rounded-full">Local SEO</span>
<span class="phase-3 text-xs px-2 py-1 rounded-full">Fase 3</span>
</div>
</div>
<!-- Task 18 -->
<div class="task-card bg-white p-4 rounded-lg shadow-sm cursor-move priority-low" draggable="true">
<div class="flex justify-between items-start mb-2">
<h4 class="font-medium">18. Monitorización de Menciones de Marca</h4>
<div class="dropdown relative">
<button class="text-gray-400 hover:text-gray-600">
<i class="fas fa-ellipsis-v"></i>
</button>
<div class="dropdown-content">
<div class="dropdown-item">Editar</div>
<div class="dropdown-item">Mover a To Do</div>
<div class="dropdown-item">Eliminar</div>
</div>
</div>
</div>
<p class="text-sm text-gray-600 mb-3">Monitorizar menciones de "WebIntelArt" online (sin enlace) y contactar para intentar convertirlas en backlinks.</p>
<div class="flex items-center text-xs text-gray-500 mb-2">
<i class="fas fa-user mr-1"></i>
<span>Responsable: SEO/PR</span>
</div>
<div class="flex items-center text-xs text-gray-500 mb-2">
<i class="fas fa-calendar mr-1"></i>
<span>Fecha: Pendiente</span>
</div>
<div class="flex items-center text-xs text-gray-500 mb-3">
<i class="fas fa-clock mr-1"></i>
<span>Estimación: N/A</span>
</div>
<div class="mb-3">
<div class="flex justify-between text-xs mb-1">
<span>Progreso</span>
<span>0%</span>
</div>
<div class="progress-bar bg-gray-200 w-full">
<div class="progress-bar bg-green-500" style="width: 0%"></div>
</div>
</div>
<div class="flex flex-wrap gap-1">
<span class="tag-offpage text-xs px-2 py-1 rounded-full">Off-Page</span>
<span class="tag-reputation text-xs px-2 py-1 rounded-full">Reputación</span>
<span class="phase-3 text-xs px-2 py-1 rounded-full">Fase 3</span>
</div>
</div>
<!-- Task 19 -->
<div class="task-card bg-white p-4 rounded-lg shadow-sm cursor-move priority-low" draggable="true">
<div class="flex justify-between items-start mb-2">
<h4 class="font-medium">19. Optimización para Búsqueda por Voz</h4>
<div class="dropdown relative">
<button class="text-gray-400 hover:text-gray-600">
<i class="fas fa-ellipsis-v"></i>
</button>
<div class="dropdown-content">
<div class="dropdown-item">Editar</div>
<div class="dropdown-item">Mover a To Do</div>
<div class="dropdown-item">Eliminar</div>
</div>
</div>
</div>
<p class="text-sm text-gray-600 mb-3">Incluir preguntas y respuestas directas en tu contenido (FAQs). Utilizar un lenguaje natural y conversacional. Pensar en cómo alguien preguntaría verbalmente sobre tus servicios.</p>
<div class="flex items-center text-xs text-gray-500 mb-2">
<i class="fas fa-user mr-1"></i>
<span>Responsable: Contenido/SEO</span>
</div>
<div class="flex items-center text-xs text-gray-500 mb-2">
<i class="fas fa-calendar mr-1"></i>
<span>Fecha: Pendiente</span>
</div>
<div class="flex items-center text-xs text-gray-500 mb-3">
<i class="fas fa-clock mr-1"></i>
<span>Estimación: N/A</span>
</div>
<div class="mb-3">
<div class="flex justify-between text-xs mb-1">
<span>Progreso</span>
<span>0%</span>
</div>
<div class="progress-bar bg-gray-200 w-full">
<div class="progress-bar bg-green-500" style="width: 0%"></div>
</div>
</div>
<div class="flex flex-wrap gap-1">
<span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded-full">On-Page</span>
<span class="tag-content text-xs px-2 py-1 rounded-full">Contenido</span>
<span class="tag-ux text-xs px-2 py-1 rounded-full">UX</span>
<span class="phase-4 text-xs px-2 py-1 rounded-full">Fase 4</span>
</div>
</div>
<!-- Task 20 -->
<div class="task-card bg-white p-4 rounded-lg shadow-sm cursor-move priority-medium" draggable="true">
<div class="flex justify-between items-start mb-2">
<h4 class="font-medium">20. Mantenerse Actualizado con los Algoritmos de Google</h4>
<div class="dropdown relative">
<button class="text-gray-400 hover:text-gray-600">
<i class="fas fa-ellipsis-v"></i>
</button>
<div class="dropdown-content">
<div class="dropdown-item">Editar</div>
<div class="dropdown-item">Mover a To Do</div>
<div class="dropdown-item">Eliminar</div>
</div>
</div>
</div>
<p class="text-sm text-gray-600 mb-3">El SEO está en constante evolución. Seguir fuentes fiables como el blog oficial de Google Search Central, Search Engine Land, Moz Blog, etc., para estar al tanto de las actualizaciones de algoritmos y las nuevas mejores prácticas.</p>
<div class="flex items-center text-xs text-gray-500 mb-2">
<i class="fas fa-user mr-1"></i>
<span>Responsable: Todo el equipo SEO</span>
</div>
<div class="flex items-center text-xs text-gray-500 mb-2">
<i class="fas fa-calendar mr-1"></i>
<span>Fecha: Recurrente</span>
</div>
<div class="flex items-center text-xs text-gray-500 mb-3">
<i class="fas fa-clock mr-1"></i>
<span>Estimación: 30m</span>
</div>
<div class="mb-3">
<div class="flex justify-between text-xs mb-1">
<span>Progreso</span>
<span>N/A - Continua</span>
</div>
<div class="progress-bar bg-gray-200 w-full">
<div class="progress-bar bg-blue-500" style="width: 100%"></div>
</div>
</div>
<div class="flex flex-wrap gap-1">
<span class="tag-strategy text-xs px-2 py-1 rounded-full">Estrategia</span>
<span class="tag-knowledge text-xs px-2 py-1 rounded-full">Conocimiento</span>
</div>
</div>
</div>
</div>
<!-- To Do Column -->
<div class="kanban-column bg-gray-100 rounded-lg p-4">
<div class="flex justify-between items-center mb-4">
<h3 class="font-semibold text-lg flex items-center">
<i class="fas fa-bullseye mr-2 text-red-500"></i> To Do (Priorizado)
</h3>
<span class="bg-gray-200 text-gray-700 text-xs px-2 py-1 rounded-full">12</span>
</div>
<div class="space-y-4">
<!-- Task 1 -->
<div class="task-card bg-white p-4 rounded-lg shadow-sm cursor-move priority-critical" draggable="true">
<div class="flex justify-between items-start mb-2">
<h4 class="font-medium">1. Auditoría SEO Técnica Completa</h4>
<div class="dropdown relative">
<button class="text-gray-400 hover:text-gray-600">
<i class="fas fa-ellipsis-v"></i>
</button>
<div class="dropdown-content">
<div class="dropdown-item">Editar</div>
<div class="dropdown-item">Mover a In Progress</div>
<div class="dropdown-item">Eliminar</div>
</div>
</div>
</div>
<p class="text-sm text-gray-600 mb-3">Utiliza herramientas como Screaming Frog, Sitebulb o Ahrefs Site Audit para identificar errores de rastreo, enlaces rotos (internos y externos), redirecciones incorrectas, problemas de indexación, contenido duplicado, y más.</p>
<div class="flex items-center text-xs text-gray-500 mb-2">
<i class="fas fa-user mr-1"></i>
<span>Responsable: Tu Nombre/Equipo SEO</span>
</div>
<div class="flex items-center text-xs text-gray-500 mb-2">
<i class="fas fa-calendar mr-1"></i>
<span>Fecha: Hoy (04/04/2025)</span>
</div>
<div class="flex items-center text-xs text-gray-500 mb-3">
<i class="fas fa-clock mr-1"></i>
<span>Estimación: 2-3h</span>
</div>
<div class="mb-3">
<div class="flex justify-between text-xs mb-1">
<span>Progreso</span>
<span>0%</span>
</div>
<div class="progress-bar bg-gray-200 w-full">
<div class="progress-bar bg-green-500" style="width: 0%"></div>
</div>
</div>
<div class="flex flex-wrap gap-1">
<span class="tag-technical text-xs px-2 py-1 rounded-full">Técnico</span>
<span class="tag-audit text-xs px-2 py-1 rounded-full">Auditoría</span>
<span class="phase-1 text-xs px-2 py-1 rounded-full">Fase 1</span>
</div>
</div>
<!-- Task 2 -->
<div class="task-card bg-white p-4 rounded-lg shadow-sm cursor-move priority-high" draggable="true">
<div class="flex justify-between items-start mb-2">
<h4 class="font-medium">2. Optimización de Core Web Vitals (CWV) y Velocidad</h4>
<div class="dropdown relative">
<button class="text-gray-400 hover:text-gray-600">
<i class="fas fa-ellipsis-v"></i>
</button>
<div class="dropdown-content">
<div class="dropdown-item">Editar</div>
<div class="dropdown-item">Mover a In Progress</div>
<div class="dropdown-item">Eliminar</div>
</div>
</div>
</div>
<p class="text-sm text-gray-600 mb-3">Analizar y mejorar las métricas LCP, FID (o INP) y CLS según los informes de PageSpeed Insights y GSC.</p>
<div class="flex items-center text-xs text-gray-500 mb-2">
<i class="fas fa-user mr-1"></i>
<span>Responsable: Dev/SEO</span>
</div>
<div class="flex items-center text-xs text-gray-500 mb-2">
<i class="fas fa-calendar mr-1"></i>
<span>Fecha: Hoy (04/04/2025)</span>
</div>
<div class="flex items-center text-xs text-gray-500 mb-3">
<i class="fas fa-clock mr-1"></i>
<span>Estimación: 1-2h</span>
</div>
<div class="mb-3">
<div class="flex justify-between text-xs mb-1">
<span>Progreso</span>
<span>0%</span>
</div>
<div class="progress-bar bg-gray-200 w-full">
<div class="progress-bar bg-green-500" style="width: 0%"></div>
</div>
</div>
<div class="flex flex-wrap gap-1">
<span class="tag-technical text-xs px-2 py-1 rounded-full">Técnico</span>
<span class="tag-ux text-xs px-2 py-1 rounded-full">UX</span>
<span class="phase-1 text-xs px-2 py-1 rounded-full">Fase 1</span>
</div>
</div>
<!-- Task 3 -->
<div class="task-card bg-white p-4 rounded-lg shadow-sm cursor-move priority-high" draggable="true">
<div class="flex justify-between items-start mb-2">
<h4 class="font-medium">3. Comprobación de Indexación Móvil Primero</h4>
<div class="dropdown relative">
<button class="text-gray-400 hover:text-gray-600">
<i class="fas fa-ellipsis-v"></i>
</button>
<div class="dropdown-content">
<div class="dropdown-item">Editar</div>
<div class="dropdown-item">Mover a In Progress</div>
<div class="dropdown-item">Eliminar</div>
</div>
</div>
</极速赛车开奖直播
</html> |