// Top-level brand row + Analyze All action (the pivot's primary global verb). "use client"; import Link from "next/link"; import type { FixtureData } from "../../lib/fixtures/aristotle"; import { useAnalysis } from "../../lib/workspace/analysisStore"; interface TopBarProps { data: FixtureData; } export function TopBar({ data }: TopBarProps) { const { analyze, inFlight } = useAnalysis(); const running = inFlight.size > 0; return (
Socrata
/ {data.project.name}
+ new idea
MC
); }