Initial commit

This commit is contained in:
2026-04-17 23:26:01 +00:00
commit 2ea4ca5d52
409 changed files with 63459 additions and 0 deletions

20
app/pages/confirm.vue Normal file
View File

@@ -0,0 +1,20 @@
<template>
<UEmpty
:title="$t('confirm.signingIn')"
:description="$t('confirm.redirectedSoon')"
/>
</template>
<script setup lang="ts">
definePageMeta({
layout: 'empty'
})
const { isAuthenticated } = storeToRefs(useUser())
watch(isAuthenticated, () => {
if (isAuthenticated.value) {
return navigateTo('/profile')
}
}, { immediate: true })
</script>