forked from EddieHubCommunity/BioDrop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFooter.js
24 lines (23 loc) · 837 Bytes
/
Footer.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import Link from "next/link";
import { FaMoneyBillAlt } from "react-icons/fa";
import { FaPowerOff } from "react-icons/fa";
export default function Footer() {
return (
<footer className="pt-12 pb-14 px-4 sm:px-6 md:flex md:justify-between">
<Link
href="https://github.com/EddieHubCommunity/LinkFree"
className="text-gray-500 hover:text-gray-600 flex justify-center space-x-6 md:order-2 gap-2"
>
<FaPowerOff className="h-6 w-6" aria-hidden="true" />
Powered by EddieHub
</Link>
<Link
href="http://github.com/sponsors/eddiejaoude"
className="text-gray-500 hover:text-gray-600 flex justify-center space-x-6 md:order-2 gap-2"
>
<FaMoneyBillAlt className="h-6 w-6" aria-hidden="true" />
Donate to LinkFree
</Link>
</footer>
);
}