feat(#4): Add versioning of application form

This commit is contained in:
2025-11-08 10:15:04 +01:00
parent a8eca965dc
commit 59da40d6c0
17 changed files with 1095 additions and 124 deletions

View File

@@ -36,7 +36,24 @@
</template>
<script setup lang="ts">
const links = [[], []]
const links = [
[
{
label: 'General',
icon: 'i-lucide-user',
to: '/settings',
exact: true
}
],
[
{
label: 'General2',
icon: 'i-lucide-user',
to: '/settings',
exact: true
}
]
]
const open = ref(false)
const isNotificationsSlideoverOpen = ref(false)