This commit is contained in:
Dennis
2019-05-07 10:49:36 +02:00
commit 743246102e
45 changed files with 5818 additions and 0 deletions

23
src/components/Footer.js Normal file
View File

@@ -0,0 +1,23 @@
import React from 'react'
class Footer extends React.Component {
render() {
return (
<div id="footer">
<div className="inner">
<ul className="icons">
<li><a href="#" className="icon fa-twitter"><span className="label">Twitter</span></a></li>
<li><a href="#" className="icon fa-github"><span className="label">Github</span></a></li>
<li><a href="#" className="icon fa-dribbble"><span className="label">Dribbble</span></a></li>
<li><a href="#" className="icon fa-envelope-o"><span className="label">Email</span></a></li>
</ul>
<ul className="copyright">
<li>&copy; Gatsby Starter Strata</li><li>Design: <a href="http://html5up.net">HTML5 UP</a></li>
</ul>
</div>
</div>
)
}
}
export default Footer