fix: apply seo agent improvements to src/app/admin/posts/new/page.tsx

This commit is contained in:
cupadev-admin 2026-03-09 19:00:57 +00:00
parent fa5bf8df06
commit a755ed776d
1 changed files with 3 additions and 1 deletions

View File

@ -5,7 +5,9 @@ import PostEditor from '@/components/admin/PostEditor'
export default function NewPostPage() { export default function NewPostPage() {
return ( return (
<AdminWrapper> <AdminWrapper>
<PostEditor /> <main id="main-content" aria-label="New post editor">
<PostEditor />
</main>
</AdminWrapper> </AdminWrapper>
) )
} }