parent
62f8e0961f
commit
4fa6747d6e
5 changed files with 117 additions and 71 deletions
@ -0,0 +1,23 @@ |
|||||||
|
# EditorConfig for the node-soap library - head over to editorconfig.org to see if you editor supports this file. |
||||||
|
|
||||||
|
# this is the topmost .editorconfig file |
||||||
|
root = true |
||||||
|
|
||||||
|
[*] |
||||||
|
end_of_line = lf |
||||||
|
insert_final_newline = true |
||||||
|
|
||||||
|
[*.xml] |
||||||
|
insert_final_newline = false |
||||||
|
|
||||||
|
[*.js] |
||||||
|
indent_style = space |
||||||
|
indent_size = 2 |
||||||
|
|
||||||
|
[*.json] |
||||||
|
indent_style = space |
||||||
|
indent_size = 2 |
||||||
|
|
||||||
|
[{package.json,.travis.yml}] |
||||||
|
indent_style = space |
||||||
|
indent_size = 2 |
@ -1,44 +1,51 @@ |
|||||||
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; |
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; |
||||||
import { faGithub, faFacebookSquare, faTwitterSquare, faTwitter, faHackerNewsSquare, faRedditSquare } from '@fortawesome/free-brands-svg-icons' |
import { faFacebookSquare, faGithub, faHackerNewsSquare, faRedditSquare, faTwitter, faTwitterSquare } from '@fortawesome/free-brands-svg-icons' |
||||||
import { AuthorBio, AuthorImg, AuthorInfoWrap, AuthorMeta, ContributeIcon, FooterWrap, ShareIcons, ShareWrap, WrittenBy } from './style'; |
import { AuthorBio, AuthorImg, AuthorInfoWrap, AuthorMeta, ContributeIcon, FooterBg, FooterContainer, FooterWrap, ShareIcons, ShareWrap } from './style'; |
||||||
|
|
||||||
|
|
||||||
const GuideFooter = (props) => ( |
const GuideFooter = (props) => ( |
||||||
<FooterWrap> |
<FooterWrap> |
||||||
<ShareWrap> |
<FooterBg className="border-top"> |
||||||
<ContributeIcon> |
<FooterContainer> |
||||||
<a href="#"> |
<ShareWrap> |
||||||
<span>Improve this Guide </span> |
<ContributeIcon> |
||||||
<FontAwesomeIcon icon={ faGithub } /> |
<a href="#"> |
||||||
</a> |
<span className="d-none d-sm-none d-md-inline d-lg-inline d-xl-inline">Improve this Guide </span> |
||||||
</ContributeIcon> |
<span className="d-inline d-sm-inline d-md-none d-lg-none d-xl-none">Contribute </span> |
||||||
<ShareIcons> |
<FontAwesomeIcon icon={faGithub}/> |
||||||
<span>Help spread the word</span> |
</a> |
||||||
<a href="#"><FontAwesomeIcon icon={ faTwitterSquare } /></a> |
</ContributeIcon> |
||||||
<a href="#"><FontAwesomeIcon icon={ faFacebookSquare } /></a> |
<ContributeIcon hasMargins> |
||||||
<a href="#"><FontAwesomeIcon icon={ faRedditSquare } /></a> |
<a href="#"> |
||||||
<a href="#"><FontAwesomeIcon icon={ faHackerNewsSquare } /></a> |
<span className="d-none d-sm-none d-md-inline d-lg-inline d-xl-inline">Follow the author </span> |
||||||
</ShareIcons> |
<span className="d-inline d-sm-inline d-md-none d-lg-none d-xl-none">Author </span> |
||||||
</ShareWrap> |
<FontAwesomeIcon icon={faTwitter}/> |
||||||
<AuthorInfoWrap className="border-top"> |
</a> |
||||||
<AuthorImg src="/static/authors/kamranahmedse.jpeg" alt="" /> |
</ContributeIcon> |
||||||
<AuthorMeta> |
<ShareIcons> |
||||||
<WrittenBy>Written By</WrittenBy> |
<span className="d-none d-sm-none d-md-none d-lg-inline d-xl-inline">Help spread the word</span> |
||||||
<h4><a href="#">Kamran Ahmed</a></h4> |
<span className="d-inline d-sm-inline d-md-inline d-lg-none d-xl-none">Share</span> |
||||||
<AuthorBio>Lead engineer at Tajawal. Created roadmap.sh. Lover of web and opensource</AuthorBio> |
<a href="#"><FontAwesomeIcon icon={faTwitterSquare}/></a> |
||||||
<p className="social-links"> |
<a href="#"><FontAwesomeIcon icon={faFacebookSquare}/></a> |
||||||
<a href="#"> |
<a href="#"><FontAwesomeIcon icon={faRedditSquare}/></a> |
||||||
<FontAwesomeIcon icon={ faTwitter } /> |
<a href="#"><FontAwesomeIcon icon={faHackerNewsSquare}/></a> |
||||||
Follow on Twitter |
</ShareIcons> |
||||||
</a> |
</ShareWrap> |
||||||
<a href="#"> |
</FooterContainer> |
||||||
<FontAwesomeIcon icon={ faGithub } /> |
</FooterBg> |
||||||
Follow on GitHub |
|
||||||
</a> |
<FooterBg className="border-top"> |
||||||
</p> |
<FooterContainer> |
||||||
</AuthorMeta> |
<AuthorInfoWrap> |
||||||
</AuthorInfoWrap> |
<AuthorImg src="/static/authors/kamranahmedse.jpeg" alt=""/> |
||||||
|
<AuthorMeta> |
||||||
|
<h4><a href="#">Kamran Ahmed</a></h4> |
||||||
|
<AuthorBio>Lead engineer at Tajawal. Lover of all things web and opensource. Created roadmap.sh to help the confused ones.</AuthorBio> |
||||||
|
</AuthorMeta> |
||||||
|
</AuthorInfoWrap> |
||||||
|
</FooterContainer> |
||||||
|
</FooterBg> |
||||||
</FooterWrap> |
</FooterWrap> |
||||||
); |
); |
||||||
|
|
||||||
export default GuideFooter; |
export default GuideFooter; |
||||||
|
Loading…
Reference in new issue