Files
kitebeachakyaka/app/admin/page.tsx
T
2026-06-09 15:15:40 +03:00

17 lines
750 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 AdminDashboard() {
return (
<div className="max-w-5xl mx-auto w-full">
<h1 className="text-3xl font-bold font-serif mb-6 text-dark">Hoş Geldiniz</h1>
<div className="bg-white rounded-2xl shadow-sm border border-gray-100 p-8">
<h2 className="text-xl font-semibold mb-4 text-primary">Sistem Durumu</h2>
<p className="text-gray-600 mb-4">
Burası Kite Beach Akyaka yönetim panelidir.
</p>
<p className="text-gray-600">
İlerleyen aşamalarda içerik yönetimi, rezervasyon takibi veya etkinlik ekleme gibi modüller buraya eklenecektir. Şu an için altyapı ve güvenli giriş sistemi başarıyla kurulmuştur.
</p>
</div>
</div>
);
}