Initial commit

This commit is contained in:
Jennie Robinson Faber 2025-11-11 19:12:21 +00:00
commit 92e96b9107
85 changed files with 24969 additions and 0 deletions

14
app/app.vue Normal file
View file

@ -0,0 +1,14 @@
<template>
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</template>
<script setup>
// Initialize auth on app mount
const { fetchUser } = useAuth()
onMounted(async () => {
await fetchUser()
})
</script>