problem: wording isn't good

This commit is contained in:
gsovereignty
2024-08-10 13:48:58 +08:00
parent 44bbce94f8
commit f81f175c1e

View File

@@ -84,18 +84,18 @@
variant="nostr"
class="flex h-8 shrink-0 items-center justify-center rounded-sm"
>
Tell me via DM when there are updates
Nostrocket is totally not ready yet but whatever
</Badge>
</Dialog.Trigger>
<Dialog.Content>
<Dialog.Header>
<Dialog.Title>Subscribe for Updates</Dialog.Title>
<Dialog.Description>
Receive notifications about Nostrocket updates via Nostr DM or email.
Subscribe via DM or email and we'll ping you when there are new releases/features
</Dialog.Description>
<div class="flex flex-col gap-4 py-4">
{#if $currentUser}
<Button on:click={Subscribe}>Reveive DM</Button>
<Button on:click={Subscribe}>I use nostr, please DM me with updates</Button>
{:else}
<Login />
{/if}
@@ -108,7 +108,9 @@
<div class="ml-4 p-0 text-sm text-red-500">{emailError}</div>
{/if}
</div>
<Button disabled={emailInValid} on:click={SubmitEmailAndSubscribe}>Reveive Email</Button>
<Button disabled={emailInValid} on:click={SubmitEmailAndSubscribe}
>I don't use nostr yet, please email me with updates</Button
>
</Dialog.Header>
</Dialog.Content>
</Dialog.Root>