diff --git a/src/App.js b/src/App.js
index 5df84ce..9cd1f8e 100644
--- a/src/App.js
+++ b/src/App.js
@@ -17,6 +17,7 @@ import Radio from './Pages/Radio/Radio';
import Components from './Pages/Radio/Components';
import Linux from './Pages/Linux/Linux';
+import Footer from './UI/Footer';
function App() {
@@ -24,8 +25,8 @@ function App() {
-
-
+
+
}>
}>
}>
@@ -35,6 +36,9 @@ function App() {
}>
}>
+
+
+
);
}
diff --git a/src/Pages/Home.js b/src/Pages/Home.js
index c5c7086..9fa824a 100644
--- a/src/Pages/Home.js
+++ b/src/Pages/Home.js
@@ -26,8 +26,6 @@ const Home = () => {
-
- This site was made with: React, Bootstrap, Nginx and Docker
on DigitalOcean cloud droplets.
diff --git a/src/UI/Footer.css b/src/UI/Footer.css
new file mode 100644
index 0000000..29957fa
--- /dev/null
+++ b/src/UI/Footer.css
@@ -0,0 +1,3 @@
+.link-light:hover {
+ color: #9999FF !important;
+}
\ No newline at end of file
diff --git a/src/UI/Footer.js b/src/UI/Footer.js
new file mode 100644
index 0000000..807cae9
--- /dev/null
+++ b/src/UI/Footer.js
@@ -0,0 +1,14 @@
+import React from 'react';
+
+import './Footer.css';
+
+
+const Footer = (props) => {
+ return (
+
+ )
+}
+
+export default Footer;