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 });