Work on add space modal

This commit is contained in:
Jon Staab
2024-08-08 14:02:46 -07:00
parent fb04a68168
commit 6c2e5d6e07
17 changed files with 232 additions and 107 deletions
+27
View File
@@ -0,0 +1,27 @@
<script lang="ts">
import Field from '@lib/components/Field.svelte'
import Icon from '@lib/components/Icon.svelte'
const back = () => history.back()
</script>
<div class="column gap-4">
<h1 class="heading">Customize your Space</h1>
<p class="text-center">
Give people a few details to go. You can always change this later.
</p>
<Field>
<p slot="label">Give your space a name:</p>
<input slot="input" type="text" class="input input-bordered w-full max-w-xs" />
</Field>
<div class="flex flex-row justify-between items-center gap-4">
<button class="btn btn-link" on:click={back}>
<Icon icon="alt-arrow-left" />
Go back
</button>
<button class="btn btn-primary" on:click={back}>
Next
<Icon icon="alt-arrow-right" class="!bg-base-300" />
</button>
</div>
</div>