This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 38 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 35 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 36 KiB |
@@ -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>
|
||||||
|
|||||||
+16
-7
@@ -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 (
|
||||||
|
const renderLogo = () => {
|
||||||
return (
|
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 (
|
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>
|
||||||
|
|||||||
Reference in New Issue
Block a user