diff --git a/components/ContactForm.tsx b/components/ContactForm.tsx index eb9d3487..71ebfded 100644 --- a/components/ContactForm.tsx +++ b/components/ContactForm.tsx @@ -17,7 +17,7 @@ export default function ContactForm() { const formData = new FormData(e.currentTarget); const email = formData.get('email') as string; - + try { const result = await sendContactFormAction(formData); if (result.success) { @@ -41,7 +41,12 @@ export default function ContactForm() { return (
- +
@@ -49,7 +54,8 @@ export default function ContactForm() { {t('form.successTitle') || 'Message Sent!'}

- {t('form.successDesc') || 'Thank you for your message. We will get back to you as soon as possible.'} + {t('form.successDesc') || + 'Thank you for your message. We will get back to you as soon as possible.'}

@@ -89,9 +101,9 @@ export default function ContactForm() {
-
-
-