Parameterize app name

This commit is contained in:
Jon Staab
2024-10-22 11:04:40 -07:00
parent f2570c3766
commit 249f660d40
18 changed files with 51 additions and 32 deletions
+3 -2
View File
@@ -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"
</script>
<div class="column gap-4">
@@ -15,8 +16,8 @@
</p>
<p>
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.
</p>
<Button class="btn btn-primary" on:click={() => history.back()}>Got it</Button>
</div>