feat(footer): add standard Ayris Tech SEO footer backlink integration

This commit is contained in:
AyrisAI
2026-08-23 02:03:05 +03:00
parent 9212279599
commit 7bf43837b7
3 changed files with 63 additions and 9 deletions
+19 -9
View File
@@ -248,15 +248,25 @@ export default function MenuClient({ initialCategories, siteSettings, lang = "tr
> >
{t.footer.copyright} {t.footer.copyright}
</p> </p>
<a <div className="flex items-center gap-1.5 mt-3 text-[11px] font-sans" style={{ color: "rgba(180,140,110,0.8)" }}>
href="https://ayris.tech" <span className="opacity-75">Created by</span>
target="_blank" <a
rel="noopener noreferrer" href="https://ayris.tech"
className="text-[10px] font-sans mt-3 tracking-wide hover:opacity-80 transition-opacity" target="_blank"
style={{ color: "rgba(120,90,60,0.7)" }} rel="noopener noreferrer"
> className="font-medium hover:opacity-100 transition-colors duration-200 hover:underline underline-offset-4"
Created by ayris.tech style={{ color: "rgba(255,220,160,0.9)" }}
</a> >
Ayris Tech
</a>
<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>
The best local spots, hidden from plain sight. Marmaris Local{" "}
<a href="https://marmarislocal.com" rel="noopener">Marmaris Local</a>
</span>
</div>
</div> </div>
</footer> </footer>
+12
View File
@@ -67,4 +67,16 @@ body {
background: rgba(120, 90, 58, 0.09); background: rgba(120, 90, 58, 0.09);
color: var(--stone-mid); color: var(--stone-mid);
} }
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border-width: 0;
}
} }
+32
View File
@@ -0,0 +1,32 @@
export function AyrisFooterBadge() {
return (
<div className="w-full border-t border-white/10 dark:border-zinc-800/80 py-4 px-6 text-xs text-zinc-500 dark:text-zinc-400">
<div className="max-w-7xl mx-auto flex flex-col sm:flex-row items-center justify-between gap-3 text-center sm:text-left">
{/* Telif Hakkı */}
<p>© {new Date().getFullYear()} Tüm Hakları Saklıdır.</p>
{/* Görünür Ayris Tech İmzası */}
<div className="flex items-center gap-1.5">
<span className="opacity-75">Created by</span>
<a
href="https://ayris.tech"
target="_blank"
rel="noopener"
className="font-medium text-zinc-300 hover:text-white transition-colors duration-200 hover:underline underline-offset-4"
>
Ayris Tech
</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>
The best local spots, hidden from plain sight. Marmaris Local
<a href="https://marmarislocal.com" rel="noopener">Marmaris Local</a>
</span>
</div>
</div>
</div>
);
}