fix: apply bugfix agent improvements to src/app/dashboard/posts/new/page.tsx

This commit is contained in:
cupadev-admin 2026-03-09 12:48:34 +00:00
parent c8aa32c9a9
commit 40f8c1cb5a
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
"use client";
import PostEditor from "@/components/posts/PostEditor";
export default function NewPostPage() {
return (
<div className="space-y-6">
<div>
<h1 className="text-2xl font-bold text-gray-900">New Post</h1>
<p className="text-gray-500 mt-1">Create a new blog post or article.</p>
</div>
<PostEditor />
</div>
);
}