feat: initial release of NASG

This commit is contained in:
UltraLionFr
2025-08-20 22:56:16 +02:00
parent 34af26c8ea
commit 586c1a9720
21 changed files with 540 additions and 0 deletions
+21
View File
@@ -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>
);
}