FEAT-7: Statistik page - Wuerfe/Jahr + avg Wurfstaerke bars, Farbschlag h-bars (FEAT-4 chip colors), Bestandsentwicklung line, Verluste/Jahr + /statistik route & nav entry (Mehr overflow follows via Kevin)

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-06 00:41:21 +02:00
parent 1b776cd994
commit 34911fdee1
7 changed files with 419 additions and 0 deletions

View File

@@ -16,6 +16,7 @@ import WurfDetailPage from './pages/WurfDetailPage'
import WurfFormPage from './pages/WurfFormPage'
import NotFoundPage from './pages/NotFoundPage'
import StammbaumPage from './pages/StammbaumPage'
import StatistikPage from './pages/StatistikPage'
export default function App() {
return (
@@ -50,6 +51,7 @@ export default function App() {
<Route path=":id/bearbeiten" element={<KontaktFormPage />} />
</Route>
<Route path="genetik" element={<GenetikPage />} />
<Route path="statistik" element={<StatistikPage />} />
<Route path="*" element={<NotFoundPage />} />
</Route>
</Routes>