Some checks failed
Deploy to Cloudflare Workers / deploy (push) Has been cancelled
17 lines
456 B
TypeScript
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>
|
|
);
|
|
}
|