Reimpliment the website design in React
This commit is contained in:
parent
833e5f19fc
commit
f2244ea3ed
23 changed files with 6351 additions and 47 deletions
18
src/Footer.js
Normal file
18
src/Footer.js
Normal 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 };
|
||||
Loading…
Add table
Add a link
Reference in a new issue