verifique a página não está automaticamente adaptada para mobile sempre está sobrando margem a direita da página
Vou verificar o código atual para identificar o que está causando a margem à direita em dispositivos móveis.
Corrigi os problemas de margem à direita em dispositivos móveis adicionando overflow-x-hidden no container principal e em seções críticas, implementando max-w-full e break-words em textos longos, ajustando o tamanho do email no footer, e garantindo que todos os botões e elementos se adaptem corretamente à largura da viewport. Essas mudanças eliminam o scroll horizontal indesejado e garantem que a página se ajuste perfeitamente a qualquer tamanho de tela móvel.
instale no site os códigos a seguir do google tag manager o primeiro é na head e o segundo na body--> <!-- Google Tag Manager --><script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','GTM-WX8W7CF7');</script><!-- End Google Tag Manager --> <!-- Google Tag Manager (noscript) --><noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WX8W7CF7"height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript><!-- End Google Tag Manager (noscript) -->
Vou ler o arquivo layout.tsx para instalar os códigos do Google Tag Manager nos locais corretos.
Instalei os códigos do Google Tag Manager no layout da aplicação. O primeiro script foi adicionado na seção <head> usando dangerouslySetInnerHTML para executar o JavaScript do GTM, e o segundo código (noscript) foi inserido no início do <body> para garantir o rastreamento mesmo quando JavaScript está desabilitado. O GTM agora está configurado com o ID GTM-WX8W7CF7 e funcionará em todas as páginas do site.
The code returns the following error:
You are mounting a new head component when a previous one has not first unmounted. It is an error to render more than one head component at a time and attributes and children of these components will likely fail in unpredictable ways. Please only render a single instance of <head> and if you need to mount a new one, ensure any previous ones have unmounted first.
Revise the code to address the error.
I was previewing: /