Add owner-only "Create your first publication" CTA on the empty author page
When a signed-in writer views their own public author page and has no
publications yet, surface a button linking to /dashboard instead of only the
"No SkyPress publications yet." line. The button is gated to the profile owner
(viewer DID === profile DID); logged-out visitors and other accounts see the
unchanged static text.
The author page is server-rendered and cannot import the auth stack, so owner
detection runs in a client:only React island (CreatePublicationCta) wrapping the
existing @wordpress-free AuthProvider. The DID-comparison decision lives in a
pure isProfileOwner helper, unit-tested per the repo's pure-logic test
convention; its CSS sits in a global block since the island's DOM is outside
Astro's scoped styles.