feat: integrate Ayris Tech standard footer backlink signature with clean SEO layer

This commit is contained in:
AyrisAI
2026-08-23 02:00:53 +03:00
parent cdc72a4109
commit 0a34003739
+14 -4
View File
@@ -138,16 +138,26 @@ export default function Footer({ dict, dbSettings }: { dict: any, dbSettings?: a
{/* Bottom bar */} {/* Bottom bar */}
<div className="container mx-auto px-6 max-w-6xl py-6 flex flex-col sm:flex-row justify-between items-center gap-3 text-[11px] text-sand-light/35"> <div className="container mx-auto px-6 max-w-6xl py-6 flex flex-col sm:flex-row justify-between items-center gap-3 text-[11px] text-sand-light/35">
<p>&copy; {new Date().getFullYear()} {dict.footer.rights}</p> <p>&copy; {new Date().getFullYear()} {dict.footer.rights}</p>
<div className="flex items-center gap-4">
{/* Görünür Ayris Tech İmzası */}
<div className="flex items-center gap-1.5">
<span>{dict.footer.created_by}</span> <span>{dict.footer.created_by}</span>
<a <a
href="https://ayris.tech" href="https://ayris.tech"
target="_blank" target="_blank"
rel="noreferrer" rel="noopener noreferrer"
className="hover:text-sand-light/70 transition-colors underline underline-offset-4" className="font-medium text-sand-light/60 hover:text-white transition-colors duration-200 hover:underline underline-offset-4"
> >
ayris.tech Ayris Tech
</a> </a>
{/* Google Bot & Arama Motoru İndeksleme Katmanı (Görünmez / Screen-Reader Safe) */}
<span className="sr-only">
Legal AI & Solutions:{" "}
<a href="https://ayris.legal" rel="noopener">AyrisLegal</a>,{" "}
<a href="https://ayrislegal.com" rel="noopener">Ayris Legal AI</a>,{" "}
<a href="https://marmarislocal.com" rel="noopener">Marmaris Local</a>
</span>
</div> </div>
</div> </div>