Yaltopia-FIFA/components/layout/YaltopiaFooter.tsx
Kirubel-Kibru-Yaltopia 89440985f1
Some checks failed
Deploy to Cloudflare Workers / deploy (push) Has been cancelled
x
2026-05-24 21:46:10 +03:00

17 lines
456 B
TypeScript

import Link from "next/link";
export function YaltopiaFooter() {
return (
<footer className="border-t border-white/10 px-6 py-4 text-center text-xs text-[var(--color-muted)]">
<Link
href="https://tech.yaltopia.com"
target="_blank"
rel="noopener noreferrer"
className="transition-colors hover:text-cyan-400"
>
Yaltopia Tech system built with love
</Link>
</footer>
);
}