Refactor project structure and update dependencies

This commit is contained in:
2025-05-11 16:17:40 +02:00
parent 81d692a19b
commit 813f7b18d8
73 changed files with 10156 additions and 7756 deletions

View File

@@ -0,0 +1,5 @@
<template>
<UCard>
<AccountDeviceTable />
</UCard>
</template>

View File

@@ -0,0 +1,29 @@
<script lang="ts" setup></script>
<template>
<UCard :ui="{ body: 'grid grid-cols-12 gap-6 md:gap-8' }">
<div class="col-span-12 lg:col-span-4">
<div class="text-lg font-semibold mb-2">
Profile information
</div>
<div class="text-sm opacity-80">
Update your account's profile information and email address.
</div>
</div>
<div class="col-span-12 lg:col-span-8">
<AccountUpdateProfile />
</div>
<USeparator class="col-span-12" />
<div class="col-span-12 lg:col-span-4">
<div class="text-lg font-semibold mb-2">
Update Password
</div>
<div class="text-sm opacity-80">
Ensure your account is using a long, random password to stay secure.
</div>
</div>
<div class="col-span-12 lg:col-span-8">
<AccountUpdatePassword />
</div>
</UCard>
</template>

View File

@@ -0,0 +1,9 @@
<script lang="ts" setup>
definePageMeta({
redirect: '/account/general',
})
</script>
<template>
<div />
</template>