diff --git a/src/components/About.js b/src/components/About.js
new file mode 100644
index 0000000..9c2c3b4
--- /dev/null
+++ b/src/components/About.js
@@ -0,0 +1,24 @@
+import React from 'react';
+import { connect } from 'react-redux';
+import './css/Github.css';
+import {getRepos} from '../actions';
+import Theater from './Theater';
+import space from '../img/space.webp';
+
+class Github extends React.Component {
+
+ render() {
+ return (
+
+ );
+ }
+}
+
+const mapStateToProps = (state) => {
+ return { repos: state.github.repos};
+}
+
+export default connect(mapStateToProps, { getRepos })(Github);
\ No newline at end of file
diff --git a/src/components/App.js b/src/components/App.js
index 79a6f7a..4be5ae3 100644
--- a/src/components/App.js
+++ b/src/components/App.js
@@ -5,19 +5,17 @@ import Home from './Home';
import Github from './Github';
const App = (props) => {
- return (
+ return (
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
- );
+
+ );
}
export default App;
diff --git a/src/components/Navigation.js b/src/components/Navigation.js
index bfa2177..8b806f8 100644
--- a/src/components/Navigation.js
+++ b/src/components/Navigation.js
@@ -10,10 +10,6 @@ const Navigation = (props) => {
Home
-
- About Me
-
-
Github Repos
@@ -22,6 +18,10 @@ const Navigation = (props) => {
Youtube Videos
+
+ About
+
+
);
}