fix: apply seo agent improvements to src/app/admin/pages/[id]/page.tsx

This commit is contained in:
cupadev-admin 2026-03-09 19:01:06 +00:00
parent a423289bec
commit 3aa3609b26
1 changed files with 3 additions and 1 deletions

View File

@ -7,7 +7,9 @@ export default function EditPagePage() {
const params = useParams() const params = useParams()
return ( return (
<AdminWrapper> <AdminWrapper>
<PageEditor pageId={params.id as string} /> <main id="main-content" aria-label="Edit page">
<PageEditor pageId={params.id as string} />
</main>
</AdminWrapper> </AdminWrapper>
) )
} }