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

Resolve "new footer froggit icon and social icons"

Merged Julie Thezenas requested to merge 25-footer-froggit-icon-and-social-icons-2 into master
4 files
+ 40
33
Compare changes
  • Side-by-side
  • Inline
Files
4
import React from "react";
import { FaYoutube, FaLinkedin, FaGitlab, FaTwitter } from "react-icons/fa";
import froggitlogo from "../footer/ourIcons/logo_typo_froggit.png";
// import React from "react";
// import { FaYoutube, FaLinkedin, FaGitlab, FaTwitter } from "react-icons/fa";
// import froggitlogo from "../footer/ourIcons/logo_typo_froggit.png";
export default function Footer() {
return (
<>
<div className="footer footer--dark footer_icons">
<FaYoutube />
<FaLinkedin />
<FaGitlab />
<FaTwitter />
</div>
// export default function Footer() {
// return (
// <>
// <div className="footer footer--dark footer_icons">
// <FaYoutube />
// <FaLinkedin />
// <FaGitlab />
// <FaTwitter />
// </div>
<div className="footer footer--dark footer_logo">
<img src={froggitlogo} alt="Logo"/>
</div>
</>
);
}
// <div className="footer footer--dark footer_logo">
// <img src={froggitlogo} alt="Logo"/>
// </div>
// </>
// );
// }
Loading