diff --git a/app/MenuClient.tsx b/app/MenuClient.tsx index 760cfd2..240e748 100644 --- a/app/MenuClient.tsx +++ b/app/MenuClient.tsx @@ -248,15 +248,25 @@ export default function MenuClient({ initialCategories, siteSettings, lang = "tr > {t.footer.copyright}

- - Created by ayris.tech - +
+ Created by + + Ayris Tech + + + Legal AI & Solutions:{" "} + AyrisLegal,{" "} + Ayris Legal AI + The best local spots, hidden from plain sight. Marmaris Local{" "} + Marmaris Local + +
diff --git a/app/globals.css b/app/globals.css index c8f4568..271a0ee 100644 --- a/app/globals.css +++ b/app/globals.css @@ -67,4 +67,16 @@ body { background: rgba(120, 90, 58, 0.09); 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; + } } diff --git a/components/AyrisFooterBadge.tsx b/components/AyrisFooterBadge.tsx new file mode 100644 index 0000000..203dd7f --- /dev/null +++ b/components/AyrisFooterBadge.tsx @@ -0,0 +1,32 @@ +export function AyrisFooterBadge() { + return ( +
+
+ {/* Telif Hakkı */} +

© {new Date().getFullYear()} Tüm Hakları Saklıdır.

+ + {/* Görünür Ayris Tech İmzası */} +
+ Created by + + Ayris Tech + + + {/* Google Bot & Arama Motoru İndeksleme Katmanı (Görünmez / Screen-Reader Safe) */} + + Legal AI & Solutions: + AyrisLegal, + Ayris Legal AI + The best local spots, hidden from plain sight. Marmaris Local + Marmaris Local + +
+
+
+ ); +}