swarm-ui: rename OverviewPage/'overview' to HivesPage/'hives'

Closes #3460.

Renamed for accuracy — the page/nav item is the hive roster, not a
general dashboard overview. Nav label, page title, component name,
and file all renamed together so the internal name doesn't drift from
what's displayed (a component still called OverviewPage under a
'hives' nav label would be exactly the kind of stale prior-art that
makes the next contributor search harder, not less).
This commit is contained in:
iris 2026-08-18 21:26:01 +02:00 committed by mara
commit 537d6f9dac
4 changed files with 7 additions and 7 deletions

View file

@ -5,7 +5,7 @@ import { Shell } from './shell/Shell.js';
import { ComponentsPage } from './pages/ComponentsPage.js';
import { CreateAgentPage } from './pages/CreateAgentPage.js';
import { JobsPage } from './pages/JobsPage.js';
import { OverviewPage } from './pages/OverviewPage.js';
import { HivesPage } from './pages/HivesPage.js';
import { Panel } from './ui/panel/Panel.js';
function NotFound() {
@ -20,7 +20,7 @@ export function App() {
return (
<Shell>
<Switch>
<Route path="/" component={OverviewPage} />
<Route path="/" component={HivesPage} />
<Route path="/create-agent" component={CreateAgentPage} />
<Route path="/jobs" component={JobsPage} />
<Route path="/components" component={ComponentsPage} />