From b052900e5deb89f5aad15420b34113fcbd93555b Mon Sep 17 00:00:00 2001 From: Nicolas Cantu Date: Sat, 27 Dec 2025 23:14:34 +0100 Subject: [PATCH] Show 'Create author page' button even when not connected - Display button for creating author page even when user is not connected - Button redirects to /presentation page - Improves discoverability of author page creation feature --- components/ConditionalPublishButton.tsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/components/ConditionalPublishButton.tsx b/components/ConditionalPublishButton.tsx index 776a0f0..c453187 100644 --- a/components/ConditionalPublishButton.tsx +++ b/components/ConditionalPublishButton.tsx @@ -22,7 +22,14 @@ export function ConditionalPublishButton() { }, [connected, pubkey, checkPresentationExists]) if (!connected || !pubkey) { - return null + return ( + + {t('nav.createAuthorPage')} + + ) } if (hasPresentation === null) {