18 lines
614 B
TypeScript
18 lines
614 B
TypeScript
export default function DocumentsPage() {
|
||
return (
|
||
<div className="space-y-6">
|
||
<div className="flex items-center justify-between">
|
||
<div>
|
||
<h1 className="text-3xl font-bold tracking-tight text-foreground">Dökümanlar</h1>
|
||
<p className="text-muted-foreground mt-2">
|
||
Notlarınızı, raporlarınızı ve belgelerinizi saklayın.
|
||
</p>
|
||
</div>
|
||
</div>
|
||
<div className="rounded-2xl border border-white/5 bg-white/5 p-8 text-center text-muted-foreground">
|
||
Döküman yönetim modülü yakında eklenecek.
|
||
</div>
|
||
</div>
|
||
);
|
||
}
|