- Initial dashboard draft
- Login page 
- supabase magic link auth
- env parsing
This commit is contained in:
Alex Selimov 2026-05-30 06:59:24 -04:00
parent 5b05cb4ff8
commit fcc59f0afb
10 changed files with 329 additions and 16 deletions

View file

@ -0,0 +1,14 @@
<script lang="ts">
let { markdown = '' } = $props();
let text = $state(markdown);
</script>
<label for="text-input">Text</label>
<textarea
id="text-input"
name="Onboarding agreement:"
bind:value={text}
placeholder="Enter text..."
rows="20"
></textarea>
<button type="submit">Submit</button>