From c948bd329c4238b916562d50f89a860d9f51c877 Mon Sep 17 00:00:00 2001 From: frab1t <33671357+frab1t@users.noreply.github.com> Date: Sat, 18 May 2019 14:50:49 +0200 Subject: [PATCH] feat: add footer --- src/App.js | 6 ++++++ src/components/Footer.js | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 src/components/Footer.js 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