Roadmap to becoming a developer in 2022
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.

44 lines
1.6 KiB

import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
5 years ago
import { faGithub, faFacebookSquare, faTwitterSquare, faTwitter, faHackerNewsSquare, faRedditSquare } from '@fortawesome/free-brands-svg-icons'
import { AuthorBio, AuthorImg, AuthorInfoWrap, AuthorMeta, ContributeIcon, FooterWrap, ShareIcons, ShareWrap, WrittenBy } from './style';
const GuideFooter = (props) => (
<FooterWrap>
5 years ago
<ShareWrap>
<ContributeIcon>
<a href="#">
5 years ago
<span>Improve this Guide </span>
<FontAwesomeIcon icon={ faGithub } />
</a>
5 years ago
</ContributeIcon>
<ShareIcons>
<span>Help spread the word</span>
<a href="#"><FontAwesomeIcon icon={ faTwitterSquare } /></a>
<a href="#"><FontAwesomeIcon icon={ faFacebookSquare } /></a>
<a href="#"><FontAwesomeIcon icon={ faRedditSquare } /></a>
<a href="#"><FontAwesomeIcon icon={ faHackerNewsSquare } /></a>
</ShareIcons>
</ShareWrap>
<AuthorInfoWrap className="border-top">
<AuthorImg src="/static/authors/kamranahmedse.jpeg" alt="" />
<AuthorMeta>
<WrittenBy>Written By</WrittenBy>
<h4><a href="#">Kamran Ahmed</a></h4>
<AuthorBio>Lead engineer at Tajawal. Created roadmap.sh. Lover of web and opensource</AuthorBio>
<p className="social-links">
<a href="#">
<FontAwesomeIcon icon={ faTwitter } />
Follow on Twitter
</a>
<a href="#">
<FontAwesomeIcon icon={ faGithub } />
Follow on GitHub
</a>
</p>
</AuthorMeta>
</AuthorInfoWrap>
</FooterWrap>
);
export default GuideFooter;