From 8ff4046308cdde17e332ffb1cd3561a5ca49cfbc Mon Sep 17 00:00:00 2001 From: Chad Curtis Date: Mon, 1 Sep 2025 19:47:39 +0000 Subject: [PATCH] Further simplify signup --- src/components/auth/SignupDialog.tsx | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/src/components/auth/SignupDialog.tsx b/src/components/auth/SignupDialog.tsx index 4416f76..4587573 100644 --- a/src/components/auth/SignupDialog.tsx +++ b/src/components/auth/SignupDialog.tsx @@ -244,44 +244,31 @@ const SignupDialog: React.FC = ({ isOpen, onClose, onComplete const getTitle = () => { if (step === 'welcome') return ( - Create Your Account ); if (step === 'generate') return ( - Generating Your Key ); if (step === 'download') return ( - Secret Key ); if (step === 'profile') return ( - Create Your Profile ); return ( - Welcome! ); }; - const getDescription = () => { - if (step === 'welcome') return 'Ready to join the Nostr network?'; - if (step === 'generate') return 'Creating your secret key to access Nostr.'; - - if (step === 'profile') return 'Tell others about yourself.'; - return 'Your account is ready!'; - }; - // Reset state when dialog opens useEffect(() => { if (isOpen) { @@ -313,9 +300,6 @@ const SignupDialog: React.FC = ({ isOpen, onClose, onComplete {getTitle()} - - {getDescription()} -
{/* Welcome Step - New engaging introduction */} @@ -353,11 +337,6 @@ const SignupDialog: React.FC = ({ isOpen, onClose, onComplete
-

- Join the Nostr network and take control of your social media experience. - Your journey begins by generating a secret key. -

- - -

- Free forever • Decentralized • Your data, your control -

)}