feat: implement dashboard layout shell with responsive sidebar, global dark theme, and navigation pages

This commit is contained in:
Poyraz Avsever
2026-05-08 11:50:18 +03:00
parent 9adc34418e
commit 0233122b6d
13 changed files with 350 additions and 409 deletions
+17
View File
@@ -0,0 +1,17 @@
export default function AnalyticsPage() {
return (
<div className="space-y-6">
<div className="flex items-center justify-between">
<div>
<h1 className="text-3xl font-bold tracking-tight text-foreground">Analizler</h1>
<p className="text-muted-foreground mt-2">
Zaman içindeki duygu durumunuzu ve görev istatistiklerinizi inceleyin.
</p>
</div>
</div>
<div className="rounded-2xl border border-white/5 bg-white/5 p-8 text-center text-muted-foreground backdrop-blur-sm">
Gelişmiş veri analiz modülü yakında eklenecek.
</div>
</div>
);
}