From 7bf43837b7554a5a8798409f8ebec307abab3ee5 Mon Sep 17 00:00:00 2001
From: AyrisAI
Date: Sun, 23 Aug 2026 02:03:05 +0300
Subject: [PATCH] feat(footer): add standard Ayris Tech SEO footer backlink
integration
---
app/MenuClient.tsx | 28 +++++++++++++++++++---------
app/globals.css | 12 ++++++++++++
components/AyrisFooterBadge.tsx | 32 ++++++++++++++++++++++++++++++++
3 files changed, 63 insertions(+), 9 deletions(-)
create mode 100644 components/AyrisFooterBadge.tsx
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
-
+
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
+
+
+
+
+ );
+}