diff --git a/src/App.js b/src/App.js index 747a972..68c2754 100644 --- a/src/App.js +++ b/src/App.js @@ -7,12 +7,18 @@ import 'bootstrap/dist/css/bootstrap.min.css'; import Routes from './Routes'; import NavBar from './components/NavBar'; +import Footer from './components/Footer'; function App() { return (
+ + +
); diff --git a/src/components/Footer.js b/src/components/Footer.js new file mode 100644 index 0000000..c17f003 --- /dev/null +++ b/src/components/Footer.js @@ -0,0 +1,32 @@ +import React, { Component } from 'react'; +import { + Row, + Col +} from 'reactstrap'; + +const style = { + textAlign: 'center' +} + +class Footer extends Component { + constructor(props) { + super(props); + + this.state = {}; + } + + render() { + return ( + + +

+ tick3t{` `} + by @frab1t (Francesco Esposito) +

+ +
+ ); + } +} + +export default Footer; \ No newline at end of file