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
10
+ 0
32
import React from "react";
function Footer() {
return (
<div>
<footer className="footer footer--dark">
<div className="container container--fluid">
<div className="footer__links">
<a className="footer__link-item" href="#url">
Documentation
</a>
<span className="footer__link-separator">·</span>
<a className="footer__link-item" href="#url">
GitHub
</a>
<span className="footer__link-separator">·</span>
<a className="footer__link-item" href="#url">
Blog
</a>
<span className="footer__link-separator">·</span>
<a className="footer__link-item" href="#url">
Contribute
</a>
</div>
<div>Copyright © 2019 Facebook, Inc.</div>
</div>
</footer>
</div>
);
}
export default Footer;
Loading