Files
flotilla/src/app/components/InfoNostr.svelte
T
2024-10-30 10:07:59 -07:00

27 lines
1.0 KiB
Svelte

<script lang="ts">
import Link from "@lib/components/Link.svelte"
import Button from "@lib/components/Button.svelte"
import ModalHeader from "@lib/components/ModalHeader.svelte"
import {PLATFORM_NAME} from "@app/state"
</script>
<div class="column gap-4">
<ModalHeader>
<div slot="title">What is nostr?</div>
</ModalHeader>
<p>
<Link external href="https://nostr.com/" class="link">Nostr</Link> 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.
</p>
<p>
If you'd like to learn more about what other apps exist in the nostr ecosystem, please
visit <Link external class="link" href="https://nostrapps.com/">nostrapps.com</Link>.
</p>
<p>
To learn more about how to manage your keys, or to set up an account, try
<Link external class="link" href="https://nosta.me/">nosta.me</Link>.
</p>
<Button class="btn btn-primary" on:click={() => history.back()}>Got it</Button>
</div>