diff --git a/.env b/.env index 879775a..35912de 100644 --- a/.env +++ b/.env @@ -1,3 +1,4 @@ VITE_DEFAULT_PUBKEYS=fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3,391819e2f2f13b90cac7209419eb574ef7c0d1f4e81867fc24c47a3ce5e8a248,84dee6e676e5bb67b4ad4e042cf70cbd8681155db535942fcc6a0533858a7240,dace63b00c42e6e017d00dd190a9328386002ff597b841eb5ef91de4f1ce8491,82341f882b6eabcd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2,58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196,eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e,b676ded7c768d66a757aa3967b1243d90bf57afb09d1044d3219d8d424e4aea0,61066504617ee79387021e18c89fb79d1ddbc3e7bff19cf2298f40466f8715e9 +VITE_PLATFORM_NAME=Flotilla VITE_PLATFORM_LOGO=/flotilla.png VITE_PLATFORM_RELAY= diff --git a/src/app/components/InfoHandle.svelte b/src/app/components/InfoHandle.svelte index 2b3d154..598f11e 100644 --- a/src/app/components/InfoHandle.svelte +++ b/src/app/components/InfoHandle.svelte @@ -2,6 +2,7 @@ import Button from "@lib/components/Button.svelte" import Link from "@lib/components/Link.svelte" import ModalHeader from "@lib/components/ModalHeader.svelte" + import {PLATFORM_NAME} from "@app/state"
- Flotilla hosts spaces on the Nostr protocol. Nostr uses "nostr addresses" to make it easier for people to find you, without having to memorize your public key (your user id). diff --git a/src/app/components/InfoKeys.svelte b/src/app/components/InfoKeys.svelte index 0bbc772..9be2333 100644 --- a/src/app/components/InfoKeys.svelte +++ b/src/app/components/InfoKeys.svelte @@ -2,6 +2,7 @@ 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"
It's very important to keep private keys safe, but this can sometimes be confusing for - newcomers. This is why flotilla supports remote signer login. These services can - store your keys securely for you, giving you access using a username and password. + newcomers. This is why {PLATFORM_NAME} supports remote signer login. These services + can store your keys securely for you, giving you access using a username and password.
This can be a little confusing when you're just getting started, but as long as you're using - Flotilla, it will work just like a normal app. When you're ready to start exploring nostr, visit - your settings page to learn more. + {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.
- Flotilla hosts spaces on the Nostr protocol. Nostr uses "relays" to host data, which are special-purpose servers that speak nostr's language. This means that anyone can host their own data, making the web more decentralized and diff --git a/src/app/components/Landing.svelte b/src/app/components/Landing.svelte index abed902..384ed02 100644 --- a/src/app/components/Landing.svelte +++ b/src/app/components/Landing.svelte @@ -5,6 +5,7 @@ import CardButton from "@lib/components/CardButton.svelte" import LogIn from "@app/components/LogIn.svelte" import SignUp from "@app/components/SignUp.svelte" + import {PLATFORM_NAME} from "@app/state" import {pushModal} from "@app/modal" const logIn = () => pushModal(LogIn) @@ -15,7 +16,7 @@