diff --git a/CHANGELOG.md b/CHANGELOG.md index 648ac17..ed35226 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,9 @@ this project adheres to [Semantic Versioning](https://semver.org/). ### Changed +- Dashboard redesigned: minimal dark UI with sidebar navigation (Overview, + Matches, Game inspector, Live console, Requests, Roadmap). + - REST routes now return typed Pydantic models instead of raw dicts. ## [0.1.0] - 2026-06-08 diff --git a/tests/test_dashboard.py b/tests/test_dashboard.py index befc65b..584c7ae 100644 --- a/tests/test_dashboard.py +++ b/tests/test_dashboard.py @@ -9,7 +9,8 @@ def test_dashboard_is_served(): with TestClient(app) as client: r = client.get("/dashboard/") assert r.status_code == 200 - assert "control room" in r.text + assert "esport-api" in r.text + assert "Game inspector" in r.text def test_root_redirects_to_dashboard(): diff --git a/web/index.html b/web/index.html index c9917b0..a4e76ee 100644 --- a/web/index.html +++ b/web/index.html @@ -3,342 +3,367 @@
-