From 239fca5924e207685455769109d336cd524bde6b Mon Sep 17 00:00:00 2001 From: Erik Date: Sat, 29 Nov 2025 16:53:05 -0300 Subject: [PATCH] =?UTF-8?q?fix:=20corrige=20descri=C3=A7=C3=B5es=20da=20p?= =?UTF-8?q?=C3=A1gina=20de=20contato=20com=20texto=20fixo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/app/[locale]/contato/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/src/app/[locale]/contato/page.tsx b/frontend/src/app/[locale]/contato/page.tsx index 5e18f93..9d7e953 100644 --- a/frontend/src/app/[locale]/contato/page.tsx +++ b/frontend/src/app/[locale]/contato/page.tsx @@ -138,7 +138,7 @@ export default function ContatoPage() { contactItems.push({ icon: 'ri-whatsapp-line', title: 'WhatsApp', - description: t('contact.whatsappDescription') || 'Atendimento rápido e direto', + description: 'Atendimento rápido e direto', link: `https://wa.me/55${settings.whatsapp.replace(/\D/g, '')}`, linkText: settings.whatsapp }); @@ -146,7 +146,7 @@ export default function ContatoPage() { contactItems.push({ icon: 'ri-phone-line', title: t('contact.phone'), - description: t('contact.phoneDescription'), + description: 'Atendimento de segunda a sexta, das 8h às 18h', link: `tel:${settings.phone.replace(/\D/g, '')}`, linkText: settings.phone }); @@ -155,8 +155,8 @@ export default function ContatoPage() { if (settings.email) { contactItems.push({ icon: 'ri-mail-send-line', - title: t('contact.email'), - description: t('contact.emailDescription') || 'Envie sua mensagem', + title: 'E-mail', + description: 'Envie sua mensagem', link: `mailto:${settings.email}`, linkText: settings.email });