fix: apply bugfix agent improvements to src/app/dashboard/posts/new/page.tsx
This commit is contained in:
parent
c8aa32c9a9
commit
40f8c1cb5a
|
|
@ -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>
|
||||
);
|
||||
}
|
||||
Loading…
Reference in New Issue