Update startup.sh, +page.server.ts, FeaturedAdventureCard.svelte, and Navbar.svelte

This commit is contained in:
Sean Morley
2024-04-02 18:04:27 +00:00
parent f86151ee5e
commit 4b2306f812
7 changed files with 143 additions and 7 deletions

View File

@@ -94,6 +94,12 @@
</script>
<div class="flex justify-center items-center w-full mt-4 mb-4">
<article class="prose">
<h2 class="text-center">Add new Location</h2>
</article>
</div>
<div class="flex flex-row items-center justify-center gap-4">
<form on:submit={createNewAdventure} class="flex gap-2">
<input type="text" bind:value={newName} placeholder="Adventure Name" class="input input-bordered w-full max-w-xs" />
@@ -102,6 +108,13 @@
</form>
</div>
<div class="flex justify-center items-center w-full mt-4 mb-4">
<article class="prose">
<h1 class="text-center">My Visited Adventure Locations</h1>
</article>
</div>
{#if isShowingToast}
<SucessToast action={toastAction} />
{/if}
@@ -124,7 +137,7 @@
{/if}
{#if adventures.length != 0}
<div class="flex flex-row items-center justify-center mt-16 gap-4">
<div class="flex flex-row items-center justify-center mt-16 gap-4 mb-4">
<button class="btn btn-neutral" on:click={async () => { window.location.href = exportData(); }}>
<img src={exportFile} class="inline-block -mt-1" alt="Logo" /> Save as File
</button>