MVP-0: Field Console + Health Dashboard

- Field Console: 4 tabs (Upload, Queue, Artifact Viewer, Timeline)
- Health Dashboard: system pulse for 6 engines
- No more ADR documents until MVP-0 proven with real mission

Stoppregel: Ingen ny arkitektur förrän första verkliga uppdraget.

Next: Pilot 001 — First real field upload
This commit is contained in:
Bernt
2026-07-02 16:22:21 +00:00
parent a2b3c922f7
commit e669155bc9
3 changed files with 375 additions and 0 deletions
+6
View File
@@ -2,6 +2,8 @@ import { Routes, Route, Link } from 'react-router-dom';
import DatasetExplorer from './pages/DatasetExplorer';
import ArtifactViewer from './pages/ArtifactViewer';
import MissionUpload from './pages/MissionUpload';
import FieldConsole from './pages/FieldConsole';
import HealthDashboard from './pages/HealthDashboard';
function App() {
return (
@@ -11,6 +13,8 @@ function App() {
<nav style={{ display: 'flex', gap: 20, marginTop: 10 }}>
<Link to="/">Dataset Explorer</Link>
<Link to="/upload">Mission Upload</Link>
<Link to="/console">Field Console</Link>
<Link to="/health">Health</Link>
</nav>
</header>
@@ -18,6 +22,8 @@ function App() {
<Route path="/" element={<DatasetExplorer />} />
<Route path="/upload" element={<MissionUpload />} />
<Route path="/artifact/:id" element={<ArtifactViewer />} />
<Route path="/console" element={<FieldConsole />} />
<Route path="/health" element={<HealthDashboard />} />
</Routes>
</div>
);