Reimpliment the website design in React

This commit is contained in:
Nick Pegg 2017-09-24 21:23:59 -07:00
parent 833e5f19fc
commit f2244ea3ed
23 changed files with 6351 additions and 47 deletions

18
src/Footer.js Normal file
View file

@ -0,0 +1,18 @@
import React, { Component } from 'react';
import Icon from 'react-fontawesome';
import { Container } from './skeleton';
class Footer extends Component {
render() {
return (
<div className="page-footer">
<Container>
<Icon name="copyright" /> 2017 Nick Pegg
</Container>
</div>
);
}
}
export { Footer };