feat: implement Kanban board with drag-and-drop task management

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-26 22:19:51 -05:00
parent 50e8c819fd
commit f0bcc01993
6 changed files with 401 additions and 2 deletions

View File

@@ -1 +1,14 @@
@import "tailwindcss";
@keyframes pulse-glow {
0%, 100% {
box-shadow: 0 0 8px rgba(6, 182, 212, 0.2);
}
50% {
box-shadow: 0 0 16px rgba(6, 182, 212, 0.4);
}
}
.animate-pulse-glow {
animation: pulse-glow 2s ease-in-out infinite;
}