Skip to content

Commit 8a381f1

Browse files
viki-shclaude
andcommitted
Update Compare page title and toggle labels based on active view
- Title shows "Compare Features" on matrix tab, "Compare Cases" on cases tab - Toggle labels renamed from Matrix/Compare to Features/Cases Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]>
1 parent 0bbe788 commit 8a381f1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/pages/Compare.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ const Compare = () => {
200200
{/* Header */}
201201
<header className="text-center mb-4">
202202
<h1 className="hero-title text-6xl sm:text-8xl font-bold tracking-tighter uppercase leading-none">
203-
Compare Case Features
203+
{view === "matrix" ? "Compare Features" : "Compare Cases"}
204204
</h1>
205205
<p className="text-sm font-mono text-muted-foreground mt-3">
206206
Explore relationships across jurisdictions, violations, sectors, and outcomes
@@ -218,7 +218,7 @@ const Compare = () => {
218218
view === v ? "bg-black text-[#FFD700]" : "bg-background text-foreground hover:bg-muted"
219219
}`}
220220
>
221-
{v === "matrix" ? "Matrix" : "Compare"}
221+
{v === "matrix" ? "Features" : "Cases"}
222222
</button>
223223
))}
224224
</div>

0 commit comments

Comments
 (0)