You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
999 B
33 lines
999 B
import { FaTwitter, FaYoutube, FaCoffee, FaGithub } from "react-icons/fa";
|
|
|
|
const Footer = () => {
|
|
const year = new Date().getFullYear();
|
|
return (
|
|
<footer className="footer">
|
|
<div className="container">
|
|
<img src="/img/profile.png" width="100%" height="100%" alt="" className="profile" />
|
|
<div className="branding">
|
|
Guus van Meerveld <br />
|
|
© {year}
|
|
</div>
|
|
<div className="socials">
|
|
<a href="https://twitter.com/GuusvanMeerveld">
|
|
<FaTwitter className="img" />
|
|
</a>
|
|
<a href="https://www.youtube.com/channel/UCYuqpoMay5SezCBrA_HKVWQ">
|
|
<FaYoutube className="img" />
|
|
</a>
|
|
<a href="https://ko-fi.com/guusvanmeerveld">
|
|
<FaCoffee className="img" />
|
|
</a>
|
|
<a href="https://github.com/guusvanmeerveld">
|
|
<FaGithub className="img" />
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
);
|
|
};
|
|
|
|
export default Footer;
|