File size: 807 Bytes
dfe72e0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
import Link from "next/link";
import Image from "next/image";
export default function Footer() {
return (
<footer className=" flex w-full justify-center py-4 items-center
bg-indigo-900 text-white/60 backdrop-blur-2xl font-mono text-sm px-4 lg:px-0
">
<p className="px-6 py-3 rounded-full flex justify-center items-center gap-2
hover:text-white duration-200
">
</p>
<p className="px-6 py-3 rounded-full flex justify-center items-center gap-2
hover:text-white duration-200
">
<span>© 2024</span>
<Link href="https://github.com/gcui-art/suno-api/">
gcui-art/suno-api
</Link>
</p>
</footer>
);
}
|