12 lines
345 B
TypeScript
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>
|
|
)
|
|
} |