-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathFooter.js
40 lines (39 loc) · 1.15 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import React from "react";
import { FiCoffee } from "react-icons/fi";
import { IoLogoGithub, IoLogoTwitter } from "react-icons/io";
export const Footer = () => {
return (
<div className="flex flex-col border-t-1 border w-full p-4 mt-4 items-center text-xs justify-center">
<a
className="flex items-center mb-4 text-gray-600 hover:text-gray-900"
href="https://twitter.com/PaiNishant"
target="_blank"
>
<span className="text-lg mr-1">
<IoLogoTwitter />
</span>
Twitter
</a>
<a
className="flex items-center mb-4 text-gray-600 hover:text-gray-900"
href="https://github.com/nishantrpai/rarity-score"
target="_blank"
>
<span className="text-lg mr-1">
<IoLogoGithub />
</span>
Github
</a>
<a
className="flex items-center mb-4 text-gray-600 hover:text-gray-900"
href="https://etherscan.io/address/0x5a8064f8249d079f02bfb688f4aa86b6b2c65359"
target="_blank"
>
<span className="text-lg mr-1">
<FiCoffee />
</span>
Buy me coffee
</a>
</div>
);
};