-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Homepage , footer done, contact mail in progress
- Loading branch information
1 parent
921a023
commit 875083e
Showing
13 changed files
with
397 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,45 @@ | ||
import React, { Fragment } from 'react'; | ||
import PropTypes from 'prop-types'; | ||
|
||
const Footer = () => { | ||
const Footer = ({ icon4, icon5, icon6 }) => { | ||
return ( | ||
<Fragment> | ||
<p>linkedin fb instagram github-/repos</p> | ||
<div className='footer-wrap'> | ||
<div className='footer'> | ||
<h4> Site by Johan Smeij version 1.0.0</h4> | ||
<ul> | ||
<li> | ||
<a href='https://www.linkedin.com/in/johan-smeij-b80867195'> | ||
<i className={icon4} /> | ||
</a> | ||
</li> | ||
|
||
<li> | ||
<a href='https://github.com/GreenGurka/MySiteProject'> | ||
<i className={icon5} /> | ||
</a> | ||
</li> | ||
|
||
<li> | ||
<a href='https://www.instagram.com/smeijen/'> | ||
<i className={icon6} /> | ||
</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</Fragment> | ||
); | ||
}; | ||
|
||
Footer.propTypes = { | ||
icon: PropTypes.string | ||
}; | ||
|
||
Footer.defaultProps = { | ||
icon4: 'fab fa-linkedin fa-2x', | ||
icon5: ' fab fa-github-square fa-2x', | ||
icon6: ' fab fa-instagram fa-2x' | ||
}; | ||
|
||
export default Footer; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.