Merge branch 'develop'
Deploy PROD Avanzato / deploy-prod (push) Successful in 54s

This commit is contained in:
2026-05-27 16:17:46 -03:00
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> <changefreq>monthly</changefreq>
<priority>0.6</priority> <priority>0.6</priority>
</url> </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> </urlset>
+18 -9
View File
@@ -28,14 +28,24 @@ const Footer = () => {
})); }));
// Renderiza o logo (SVG inline ou imagem) // Renderiza o logo (SVG inline ou imagem)
const renderLogo = () => { // const renderLogo = () => {
if (LOGO.imageUrl) { // if (LOGO.imageUrl) {
return <img src={LOGO.imageUrl} alt={COMPANY.name} className="h-10 w-auto" />; // return <img src={LOGO.imageUrl} alt={COMPANY.name} className="h-10 w-auto" />;
} // }
return ( // return (
<div dangerouslySetInnerHTML={{ __html: LOGO.svgInline }} className="flex-shrink-0" /> const renderLogo = () => {
); return (
}; <img
src="/logo.png"
alt={COMPANY.name}
className="h-10 w-auto"
/>
);
};
// <div dangerouslySetInnerHTML={{ __html: LOGO.svgInline }} className="flex-shrink-0" />
// );
// };
return ( return (
<footer className="bg-[#0e0e0e] text-white relative border-t border-white/5"> <footer className="bg-[#0e0e0e] text-white relative border-t border-white/5">
@@ -49,7 +59,6 @@ const Footer = () => {
{LOGO.text && ( {LOGO.text && (
<span className="text-2xl font-bold tracking-tight"> <span className="text-2xl font-bold tracking-tight">
{LOGO.text} {LOGO.text}
<span className="text-[#cbf400]">{LOGO.textHighlight}</span>
</span> </span>
)} )}
</Link> </Link>