enh: install help message

This commit is contained in:
Timothy Jaeryang Baek 2025-01-12 12:24:12 -08:00
parent 4c267250a9
commit 58edd82696

View File

@ -1,5 +1,7 @@
<script lang="ts">
import { onMount } from 'svelte';
import { fly } from 'svelte/transition';
import { installStatus, serverStatus } from '../stores';
import Spinner from './common/Spinner.svelte';
@ -73,10 +75,18 @@
<div class="flex justify-center mt-8">
<div class="flex flex-col justify-center items-center">
{#if installing}
<div class="flex flex-col gap-3">
<div class="flex flex-col gap-3 text-center">
<Spinner className="size-5" />
<div class=" font-secondary">Installing...</div>
<div
class=" font-default text-xs"
in:fly={{ duration: 500, y: 10 }}
>
This might take a few minutes, Well notify you when its
ready.
</div>
</div>
{:else}
<button