Atualiza sitemap, e logo rodapé
Deploy HML Avanzato / deploy-hml (push) Successful in 37s

This commit is contained in:
2026-05-27 16:12:41 -03:00
parent f66e745d87
commit 9e3082729c
5 changed files with 48 additions and 9 deletions
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

+30
View File
@@ -135,4 +135,34 @@
<changefreq>monthly</changefreq>
<priority>0.6</priority>
</url>
<url>
<loc>https://avanzato.com.br/ti-para-contabilidades</loc>
<changefreq>weekly</changefreq>
<priority>0.9</priority>
</url>
<url>
<loc>https://avanzato.com.br/ti-para-advocacias</loc>
<changefreq>weekly</changefreq>
<priority>0.9</priority>
</url>
<url>
<loc>https://avanzato.com.br/monitoramento-empresarial</loc>
<changefreq>weekly</changefreq>
<priority>0.9</priority>
</url>
<url>
<loc>https://avanzato.com.br/firewall-pfsense-empresarial</loc>
<changefreq>weekly</changefreq>
<priority>0.9</priority>
</url>
<url>
<loc>https://avanzato.com.br/backup-corporativo</loc>
<changefreq>weekly</changefreq>
<priority>0.9</priority>
</url>
<url>
<loc>https://avanzato.com.br/voip-empresarial</loc>
<changefreq>weekly</changefreq>
<priority>0.9</priority>
</url>
</urlset>
+16 -7
View File
@@ -28,14 +28,24 @@ const Footer = () => {
}));
// Renderiza o logo (SVG inline ou imagem)
const renderLogo = () => {
if (LOGO.imageUrl) {
return <img src={LOGO.imageUrl} alt={COMPANY.name} className="h-10 w-auto" />;
}
// const renderLogo = () => {
// if (LOGO.imageUrl) {
// return <img src={LOGO.imageUrl} alt={COMPANY.name} className="h-10 w-auto" />;
// }
// return (
const renderLogo = () => {
return (
<div dangerouslySetInnerHTML={{ __html: LOGO.svgInline }} className="flex-shrink-0" />
<img
src="/logo.png"
alt={COMPANY.name}
className="h-10 w-auto"
/>
);
};
};
// <div dangerouslySetInnerHTML={{ __html: LOGO.svgInline }} className="flex-shrink-0" />
// );
// };
return (
<footer className="bg-[#0e0e0e] text-white relative border-t border-white/5">
@@ -49,7 +59,6 @@ const Footer = () => {
{LOGO.text && (
<span className="text-2xl font-bold tracking-tight">
{LOGO.text}
<span className="text-[#cbf400]">{LOGO.textHighlight}</span>
</span>
)}
</Link>