aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/App.css5
-rw-r--r--src/App.js14
2 files changed, 18 insertions, 1 deletions
diff --git a/src/App.css b/src/App.css
index 3b800da..97fa329 100644
--- a/src/App.css
+++ b/src/App.css
@@ -78,3 +78,8 @@
color: rgba(0, 0, 0, 0.4);
font-style: italic;
}
+
+.footer {
+ margin-top: 3em !important;
+ padding: 1em 0 !important;
+} \ No newline at end of file
diff --git a/src/App.js b/src/App.js
index 4c3df6c..107e380 100644
--- a/src/App.js
+++ b/src/App.js
@@ -4,7 +4,14 @@ import { Router, Link } from "@reach/router";
import "fomantic-ui-css/semantic.css";
import "./App.css";
-import { Dropdown, Menu, Icon, Loader, Container } from "semantic-ui-react";
+import {
+ Dropdown,
+ Menu,
+ Icon,
+ Loader,
+ Container,
+ Segment
+} from "semantic-ui-react";
import Home from "./Home";
import Thread from "./Thread";
import Board from "./Board";
@@ -93,6 +100,11 @@ class App extends Component {
<NotFound default />
</Router>
</Container>
+ <Segment vertical textAlign="center" className="footer">
+ Bievenido a Internet 2010-2019
+ <br />
+ bai-client + weabot
+ </Segment>
</React.Fragment>
);
}