Skip to content

Commit

Permalink
[UPDATE] footer and a link to have target attr
Browse files Browse the repository at this point in the history
  • Loading branch information
heyfirst committed Jan 24, 2019
1 parent 5e4cacc commit d4c9ef3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion src/components/Core/Footer.js
Expand Up @@ -4,7 +4,10 @@ import styled from 'styled-components'
const Footer = () => (
<div className="container text-center py-4">
<span className="d-block text-muted">
Built with <a href="#">React Static</a> 🌹 View website <a href="#">source on Github</a>.
Built with <a href="#">React Static</a> 🌹 View website{' '}
<a href="https://github.com/firstziiz/KS-portfolio" target="_blank">
source on Github
</a>.
</span>
</div>
)
Expand Down
4 changes: 2 additions & 2 deletions src/components/Home/Project.js
Expand Up @@ -59,13 +59,13 @@ const Project = ({ projects }) => (
</div>
))}
{project.githubUrl !== '' && (
<a href="#" className="no-border-bottom tag mr-2 m-1 small github">
<a href="#" className="no-border-bottom tag mr-2 m-1 small github" target="_blank">
{`GitHub `}
<FontAwesomeIcon icon={faGithub} />
</a>
)}
{project.projectUrl !== '' && (
<a href="#" className="no-border-bottom tag mr-2 m-1 small link">
<a href="#" className="no-border-bottom tag mr-2 m-1 small link" target="_blank">
{`Go to Project `}
<FontAwesomeIcon icon={faLink} />
</a>
Expand Down

0 comments on commit d4c9ef3

Please sign in to comment.