37 lines
1.0 KiB
TypeScript
37 lines
1.0 KiB
TypeScript
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>
|
||
);
|
||
}
|