Files
nextgo/app/admin/page.tsx
Beyhan Oğur 9eb7aea821 first commit
2026-04-26 22:15:25 +03:00

12 lines
345 B
TypeScript

export default function AdminPage() {
return (
<section>
<h1 className="text-2xl font-semibold text-[var(--foreground)]">
Admin Panel
</h1>
<p className="mt-2 text-sm text-[var(--foreground)]/75">
Sağdaki menüden Users, Posts ve Shop bölümlerine geçiş yapabilirsiniz.
</p>
</section>
)
}