42 lines
1.7 KiB
Svelte
42 lines
1.7 KiB
Svelte
<script lang="ts">
|
|
import Link from "@lib/components/Link.svelte"
|
|
import Button from "@lib/components/Button.svelte"
|
|
import Modal from "@lib/components/Modal.svelte"
|
|
import ModalBody from "@lib/components/ModalBody.svelte"
|
|
import ModalHeader from "@lib/components/ModalHeader.svelte"
|
|
import ModalTitle from "@lib/components/ModalTitle.svelte"
|
|
import {PLATFORM_NAME} from "@app/core/state"
|
|
</script>
|
|
|
|
<Modal
|
|
><ModalBody>
|
|
<ModalHeader>
|
|
<ModalTitle>What is a bunker link?</ModalTitle>
|
|
</ModalHeader>
|
|
<p>
|
|
<Link external class="link" href="https://nostr.com/">Nostr</Link> uses "keys" instead of passwords
|
|
to identify users. This allows users to own their social identity instead of renting it from a tech
|
|
company, and can bring it with them from app to app.
|
|
</p>
|
|
<p>
|
|
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 risking loss or
|
|
theft of your keys.
|
|
</p>
|
|
<p>
|
|
One way to log in with a remote signer is using a "bunker link" which is more secure and
|
|
decentralized than other solutions. Check your signer for a link beginning with "bunker://",
|
|
copy it into {PLATFORM_NAME}, and you should be good to go!
|
|
</p>
|
|
<p>
|
|
If you don't have a signer yet, <Link external class="link" href="https://nsec.app/"
|
|
>nsec.app</Link>
|
|
is a great way to get started. You can find more signers on <Link
|
|
external
|
|
class="link"
|
|
href="https://nostrapps.com#signers">nostrapps.com</Link
|
|
>.
|
|
</p>
|
|
<Button class="btn btn-primary" onclick={() => history.back()}>Got it</Button>
|
|
</ModalBody></Modal>
|