fix(landing): No hydration issues and fix i18n SSR warning

This commit is contained in:
2026-01-16 17:09:42 +01:00
parent 9cfa5ec434
commit 75f12ce775
22 changed files with 40 additions and 39 deletions

View File

@@ -5,12 +5,12 @@ export interface ContactFormData {
}
export function useContactForm() {
const { t } = useI18n()
const isLoading = ref(false)
const isSuccess = ref(false)
const error = ref<string | null>(null)
const submitForm = async (data: ContactFormData) => {
const { t } = useI18n({ useScope: 'global' })
isLoading.value = true
error.value = null