Files
neta/app/(dashboard)/habits/page.tsx
T

18 lines
640 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
export default function HabitsPage() {
return (
<div className="space-y-6">
<div className="flex items-center justify-between">
<div>
<h1 className="text-3xl font-bold tracking-tight text-foreground">Alışkanlıklar</h1>
<p className="text-muted-foreground mt-2">
Günlük alışkanlıklarınızı takip edin ve zinciri kırmayın.
</p>
</div>
</div>
<div className="rounded-2xl border border-white/5 bg-white/5 p-8 text-center text-muted-foreground backdrop-blur-sm">
Alışkanlık takip modülü yakında eklenecek.
</div>
</div>
);
}