fix: corrige descrições da página de contato com texto fixo
This commit is contained in:
@@ -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
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user