feat(batch-diff): side-by-side claim diff between two batches

This commit is contained in:
Tyler
2026-06-20 17:17:09 -06:00
parent 4cd52c3084
commit 7b394fff1a
12 changed files with 2556 additions and 0 deletions
+17
View File
@@ -2,6 +2,7 @@ import { NavLink } from "react-router-dom";
import {
Activity,
CheckCircle2,
GitCompareArrows,
GitMerge,
Layers,
LayoutDashboard,
@@ -133,6 +134,22 @@ export function Sidebar() {
<span>Batches</span>
</NavLink>
</li>
<li>
<NavLink
to="/batch-diff"
className={({ isActive }) =>
cn(
"group relative flex items-center gap-3 rounded-md px-3 py-2 text-sm font-medium transition-colors",
isActive
? "nav-active"
: "text-muted-foreground hover:text-foreground hover:bg-muted/40"
)
}
>
<GitCompareArrows className="h-4 w-4" strokeWidth={1.5} />
<span>Batch diff</span>
</NavLink>
</li>
</ul>
</nav>