feat: add Ayris Tech standard footer backlink badge
This commit is contained in:
@@ -6,6 +6,7 @@ import Image from "next/image";
|
|||||||
import { MenuCategory, MenuItem as MenuItemType } from "@/data/menu";
|
import { MenuCategory, MenuItem as MenuItemType } from "@/data/menu";
|
||||||
import { CategoryNav } from "@/components/CategoryNav";
|
import { CategoryNav } from "@/components/CategoryNav";
|
||||||
import { MenuItem } from "@/components/MenuItem";
|
import { MenuItem } from "@/components/MenuItem";
|
||||||
|
import { AyrisFooterBadge } from "@/components/AyrisFooterBadge";
|
||||||
import { useTranslations, useLocale } from "next-intl";
|
import { useTranslations, useLocale } from "next-intl";
|
||||||
import { useRouter, usePathname } from "@/i18n/routing";
|
import { useRouter, usePathname } from "@/i18n/routing";
|
||||||
|
|
||||||
@@ -263,15 +264,7 @@ export default function MenuClient({ initialCategories, siteSettings }: { initia
|
|||||||
>
|
>
|
||||||
© 2026 {siteSettings.restaurantName}. {t('allRightsReserved')}
|
© 2026 {siteSettings.restaurantName}. {t('allRightsReserved')}
|
||||||
</p>
|
</p>
|
||||||
<a
|
<AyrisFooterBadge />
|
||||||
href="https://ayris.tech"
|
|
||||||
target="_blank"
|
|
||||||
rel="noopener noreferrer"
|
|
||||||
className="mt-6 text-[10px] font-sans tracking-[0.2em] uppercase transition-colors hover:text-white/80"
|
|
||||||
style={{ color: "rgba(160,100,50,0.4)" }}
|
|
||||||
>
|
|
||||||
Created by <span className="font-semibold">ayris.tech</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|||||||
@@ -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>
|
||||||
|
);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user