Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects

Draft: Resolve "(footer) froggit icon and social icons"

Closed Hugues requested to merge 25-footer-froggit-icon-and-social-icons into master
Files
3
+ 43
0
import React from "react";
import { FaGitlab } from "react-icons/fc";
/* import {
} from "@fortawesome/free-brands-svg-icons";
const IconList = [
{
faYoutube,
faFacebook,
faTwitter,
faInstagram
}
];
*/
export default function SocialFollow() {
return (
<div className="social-container">
<h3>Social Follow</h3>
<a href="https://www.youtube.com/c/jamesqquick"
className="youtube social">
<FaGitlab />
<FaGitlab size="2x" />
</a>
<a href="https://www.facebook.com/learnbuildteach/"
className="facebook social">
<FaGitlab size="2x" />
</a>
<a href="https://www.twitter.com/jamesqquick" className="twitter social">
<FaGitlab size="2x" />
</a>
<a href="https://www.instagram.com/learnbuildteach"
className="instagram social">
<FaGitlab size="2x" />
</a>
</div>
);
}
Loading