initial commit - setup dialog and magic link login

This commit is contained in:
2024-03-30 00:30:13 -06:00
commit 56e660f49d
41 changed files with 7681 additions and 0 deletions

15
src/views/WizardView.vue Normal file
View File

@ -0,0 +1,15 @@
<script setup lang="ts">
import EnterDetailsModal from "@/components/enter-details-modal.vue";
</script>
<template>
<div>
<h1>Wizard</h1>
<enter-details-modal />
</div>
</template>
<style scoped>
</style>