feat: add Ayris Tech standard footer backlink badge

This commit is contained in:
AyrisAI
2026-08-23 02:02:35 +03:00
parent 725f8b5612
commit b7d34234fe
2 changed files with 38 additions and 9 deletions
+36
View File
@@ -0,0 +1,36 @@
import React from "react";
export function AyrisFooterBadge() {
return (
<div
className="mt-6 flex items-center justify-center gap-1.5 text-[10px] font-sans tracking-[0.2em] uppercase"
style={{ color: "rgba(160,100,50,0.4)" }}
>
<span>Created by</span>
<a
href="https://ayris.tech"
target="_blank"
rel="noopener noreferrer"
className="font-semibold transition-colors hover:text-white/80"
>
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>
);
}