Files
flotilla/src/app/components/InfoNostr.svelte
T

34 lines
1.3 KiB
Svelte

<script lang="ts">
import Link from "@lib/components2/Link.svelte"
import Button from "@lib/components2/Button.svelte"
import Modal from "@lib/components2/Modal.svelte"
import ModalBody from "@lib/components2/ModalBody.svelte"
import ModalHeader from "@lib/components2/ModalHeader.svelte"
import ModalTitle from "@lib/components2/ModalTitle.svelte"
import Text from "@lib/components2/Text.svelte"
</script>
<Modal
><ModalBody>
<ModalHeader>
<ModalTitle>What is nostr?</ModalTitle>
</ModalHeader>
<Text>
<Link external styled href="https://nostr.com/">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.
</Text>
<Text>
If you'd like to learn more about what other apps exist in the nostr ecosystem, please visit <Link
external
styled
href="https://nostrapps.com/">nostrapps.com</Link
>.
</Text>
<Text>
To learn more about how to manage your keys, or to set up an account, try
<Link external styled href="https://nosta.me/">nosta.me</Link>.
</Text>
<Button variant="primary" onclick={() => history.back()}>Got it</Button>
</ModalBody></Modal>