feat(bench): add Resource Bench Board page

Shows resources with available capacity in a selected date window.
- Filter by date range (with DateRangePresets), min hours/day slider, and free-text search
- Cards show role, chapter, available h/day with color-coded capacity bar
- Links to individual resource profiles
- "Bench" nav entry added to Resources section in AppShell

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-09 13:30:44 +02:00
parent 1df208dbcc
commit 607af1a857
4 changed files with 297 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
import { BenchBoardClient } from "~/components/bench/BenchBoardClient.js";
export default function BenchPage() {
return <BenchBoardClient />;
}