From 8144f5f8a517bdd920ae5e85c075824d5282b878 Mon Sep 17 00:00:00 2001 From: AyrisAI Date: Sun, 23 Aug 2026 01:55:13 +0300 Subject: [PATCH] feat: add standard Ayris Tech footer backlink badge --- app/page.tsx | 8 +++++--- components/AyrisFooterBadge.tsx | 34 +++++++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+), 3 deletions(-) create mode 100644 components/AyrisFooterBadge.tsx diff --git a/app/page.tsx b/app/page.tsx index 84d8252..e301f1b 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -6,6 +6,7 @@ import { MoodTracker } from "@/components/MoodTracker"; import { JournalCard } from "@/components/JournalCard"; import { NewPostModal } from "@/components/NewPostModal"; import { PostDetailModal } from "@/components/PostDetailModal"; +import { AyrisFooterBadge } from "@/components/AyrisFooterBadge"; import { INITIAL_POSTS, MOODS } from "@/components/mockData"; import { JournalPost, MoodType } from "@/components/types"; import { Dices, Feather, Sparkles, Filter, Bookmark, Coffee, RefreshCw } from "lucide-react"; @@ -229,9 +230,9 @@ export default function Home() { )} - {/* Footer Scrapbook Note */} - diff --git a/components/AyrisFooterBadge.tsx b/components/AyrisFooterBadge.tsx new file mode 100644 index 0000000..d68aa54 --- /dev/null +++ b/components/AyrisFooterBadge.tsx @@ -0,0 +1,34 @@ +import React from "react"; + +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 + +
+
+
+ ); +}