diff --git a/src/app/components/InfoBunker.svelte b/src/app/components/InfoBunker.svelte index 0af9041f..282da84b 100644 --- a/src/app/components/InfoBunker.svelte +++ b/src/app/components/InfoBunker.svelte @@ -16,8 +16,8 @@

A good way to manage your keys is to use a remote signing application. These apps can hold - your keys and log you in remotely to as many applications as you like, without increasing - the risk of your keys being stolen. + your keys and log you in remotely to as many applications as you like, without risking + loss or theft of your keys.

One way to log in with a remote signer is using a "bunker link" which is more secure and @@ -26,7 +26,7 @@

If you don't have a signer yet, nsec.app - is an easy way to get started. + is a great way to get started.

diff --git a/src/app/components/InfoNostr.svelte b/src/app/components/InfoNostr.svelte index 7f94c2e8..56fb56b2 100644 --- a/src/app/components/InfoNostr.svelte +++ b/src/app/components/InfoNostr.svelte @@ -10,14 +10,17 @@
What is nostr?

- Nostr is way to build social apps that talk to eachother. - Users own their social identity instead of renting it from a tech company, and can bring it with - them from app to app. + Nostr is way to build + social apps that talk to each other. Users own their social identity instead of + renting it from a tech company, and can take it with them.

- This can be a little confusing when you're just getting started, but as long as you're using - {PLATFORM_NAME}, it will work just like a normal app. When you're ready to start exploring - nostr, visit your settings page to learn more. + If you'd like to learn more about what other apps exist in the nostr ecosystem, please + visit nostrapps.com. +

+

+ To learn more about how to manage your keys, or to set up an account, try + nosta.me.

diff --git a/src/app/components/LogInBunker.svelte b/src/app/components/LogInBunker.svelte index fb500284..2b12893f 100644 --- a/src/app/components/LogInBunker.svelte +++ b/src/app/components/LogInBunker.svelte @@ -68,7 +68,7 @@ Go back - diff --git a/src/app/components/SignUp.svelte b/src/app/components/SignUp.svelte index d148dcfd..ce221d63 100644 --- a/src/app/components/SignUp.svelte +++ b/src/app/components/SignUp.svelte @@ -3,20 +3,18 @@ import {addSession, nip46Perms, loadHandle} from "@welshman/app" import Icon from "@lib/components/Icon.svelte" import Field from "@lib/components/Field.svelte" + import Link from "@lib/components/Link.svelte" import Button from "@lib/components/Button.svelte" import Divider from "@lib/components/Divider.svelte" import Spinner from "@lib/components/Spinner.svelte" import LogIn from "@app/components/LogIn.svelte" import InfoNostr from "@app/components/InfoNostr.svelte" - import SignUpKey from "@app/components/SignUpKey.svelte" import {pushModal, clearModals} from "@app/modal" import {PLATFORM_NAME} from "@app/state" import {pushToast} from "@app/toast" const login = () => pushModal(LogIn) - const signUpWithKey = () => pushModal(SignUpKey) - const trySignup = async () => { const secret = makeSecret() const handle = await loadHandle(`${username}@${handler.domain}`) @@ -94,10 +92,10 @@ Or - + + + Get started on Nosta.me +
Already have an account? diff --git a/src/app/components/SignUpKey.svelte b/src/app/components/SignUpKey.svelte deleted file mode 100644 index a0767359..00000000 --- a/src/app/components/SignUpKey.svelte +++ /dev/null @@ -1,61 +0,0 @@ - - -
- -
Sign Up
-
With a freshly generated private key
-
- -

Private Key

- -

- Make sure to save your private key somewhere safe, like in a password manager. - -

-
- - - - -
diff --git a/src/assets/icons/Question Square.svg b/src/assets/icons/Question Square.svg new file mode 100644 index 00000000..54aea2ca --- /dev/null +++ b/src/assets/icons/Question Square.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/assets/icons/Rocket 2.svg b/src/assets/icons/Rocket 2.svg new file mode 100644 index 00000000..1f71d485 --- /dev/null +++ b/src/assets/icons/Rocket 2.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/lib/components/Icon.svelte b/src/lib/components/Icon.svelte index cc7a59a5..9796a413 100644 --- a/src/lib/components/Icon.svelte +++ b/src/lib/components/Icon.svelte @@ -61,7 +61,9 @@ import Pallete2 from "@assets/icons/Pallete 2.svg?dataurl" import Paperclip from "@assets/icons/Paperclip.svg?dataurl" import Plain from "@assets/icons/Plain.svg?dataurl" + import QuestionSquare from "@assets/icons/Question Square.svg?dataurl" import RemoteControllerMinimalistic from "@assets/icons/Remote Controller Minimalistic.svg?dataurl" + import Rocket2 from "@assets/icons/Rocket 2.svg?dataurl" import Reply from "@assets/icons/Reply.svg?dataurl" import Server from "@assets/icons/Server.svg?dataurl" import Settings from "@assets/icons/Settings.svg?dataurl" @@ -139,8 +141,10 @@ "pallete-2": Pallete2, paperclip: Paperclip, plain: Plain, + "question-square": QuestionSquare, reply: Reply, "remote-controller-minimalistic": RemoteControllerMinimalistic, + "rocket-2": Rocket2, "share-circle": ShareCircle, "shop-minimalistic": ShopMinimalistic, "smile-circle": SmileCircle,