Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0a0d2382d1 | |||
| 9e3082729c |
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>
|
||||
<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>
|
||||
|
||||
+18
-9
@@ -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" />;
|
||||
}
|
||||
return (
|
||||
<div dangerouslySetInnerHTML={{ __html: LOGO.svgInline }} className="flex-shrink-0" />
|
||||
);
|
||||
};
|
||||
// const renderLogo = () => {
|
||||
// if (LOGO.imageUrl) {
|
||||
// return <img src={LOGO.imageUrl} alt={COMPANY.name} className="h-10 w-auto" />;
|
||||
// }
|
||||
// return (
|
||||
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 (
|
||||
<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>
|
||||
|
||||
Reference in New Issue
Block a user