feat(fullstack): Add contact form

This commit is contained in:
2026-02-08 18:21:07 +01:00
parent 43aef3b5b1
commit 36132a3bef
12 changed files with 420 additions and 11 deletions

View File

@@ -55,20 +55,13 @@ const { t: $t } = useI18n()
const links = [
[
{
label: $t('common.general'),
icon: 'i-lucide-user',
to: '/settings',
label: $t('contact.title'),
icon: 'i-lucide-mail',
to: '/contact',
exact: true
}
],
[
{
label: $t('common.general'),
icon: 'i-lucide-user',
to: '/settings',
exact: true
}
]
[]
]
const open = ref(false)
const logger = useLogger().withTag('layout')