fix(contact): update metadata of contact page

This commit is contained in:
2026-02-05 11:11:01 +01:00
parent 89afe59a00
commit e202376998
3 changed files with 8 additions and 0 deletions

View File

@@ -96,6 +96,12 @@
<script setup lang="ts">
import type { FormSubmitEvent } from '@nuxt/ui';
import { z } from 'zod';
useMeta({
title: $t('pages.contact.name'),
description: $t('pages.contact.description'),
});
const toast = useToast();
const { postContact } = useBackend();