feat: initial release of NASG
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
"use client";
|
||||
|
||||
import { FaHeart } from "react-icons/fa";
|
||||
|
||||
export default function Footer() {
|
||||
return (
|
||||
<footer className="fixed bottom-4 left-1/2 -translate-x-1/2 text-xs text-neutral-400 flex items-center gap-1">
|
||||
<span>Made with</span>
|
||||
<FaHeart className="text-red-500 animate-pulse" />
|
||||
<span>by</span>
|
||||
<a
|
||||
href="https://ultralion.xyz"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="font-medium text-white hover:text-sky-400 transition"
|
||||
>
|
||||
UltraLion
|
||||
</a>
|
||||
</footer>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user