backend-lehrer (10 files): - game/database.py (785 → 5), correction_api.py (683 → 4) - classroom_engine/antizipation.py (676 → 5) - llm_gateway schools/edu_search already done in prior batch klausur-service (12 files): - orientation_crop_api.py (694 → 5), pdf_export.py (677 → 4) - zeugnis_crawler.py (676 → 5), grid_editor_api.py (671 → 5) - eh_templates.py (658 → 5), mail/api.py (651 → 5) - qdrant_service.py (638 → 5), training_api.py (625 → 4) website (6 pages): - middleware (696 → 8), mail (733 → 6), consent (628 → 8) - compliance/risks (622 → 5), export (502 → 5), brandbook (629 → 7) studio-v2 (3 components): - B2BMigrationWizard (848 → 3), CleanupPanel (765 → 2) - dashboard-experimental (739 → 2) admin-lehrer (4 files): - uebersetzungen (769 → 4), manager (670 → 2) - ChunkBrowserQA (675 → 6), dsfa/page (674 → 5) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
32 lines
1.2 KiB
TypeScript
32 lines
1.2 KiB
TypeScript
'use client'
|
|
|
|
export default function StatsTab() {
|
|
return (
|
|
<div className="p-6">
|
|
<h2 className="text-lg font-semibold text-slate-900 mb-6">Statistiken</h2>
|
|
|
|
<div className="grid grid-cols-1 md:grid-cols-3 gap-6 mb-8">
|
|
<div className="bg-slate-50 rounded-xl p-6">
|
|
<div className="text-3xl font-bold text-slate-900">0</div>
|
|
<div className="text-sm text-slate-500 mt-1">Aktive Zustimmungen</div>
|
|
</div>
|
|
<div className="bg-slate-50 rounded-xl p-6">
|
|
<div className="text-3xl font-bold text-slate-900">0</div>
|
|
<div className="text-sm text-slate-500 mt-1">Dokumente</div>
|
|
</div>
|
|
<div className="bg-slate-50 rounded-xl p-6">
|
|
<div className="text-3xl font-bold text-slate-900">0</div>
|
|
<div className="text-sm text-slate-500 mt-1">Offene DSR-Anfragen</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="border border-slate-200 rounded-lg p-6">
|
|
<h3 className="font-semibold text-slate-900 mb-4">Zustimmungsrate nach Dokument</h3>
|
|
<div className="text-center py-8 text-slate-500">
|
|
Noch keine Daten verfügbar
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|