diff --git a/src/components/App.js b/src/components/App.js
new file mode 100644
index 0000000..70203c9
--- /dev/null
+++ b/src/components/App.js
@@ -0,0 +1,17 @@
+import React from "react";
+import { Route } from "react-router-dom";
+import HomePage from "./home/HomePage";
+import AboutPage from "./about/AboutPage";
+import Header from "./common/Header";
+
+function App() {
+ return (
+
+
+
+
+
+ );
+}
+
+export default App;
diff --git a/src/components/about/AboutPage.js b/src/components/about/AboutPage.js
new file mode 100644
index 0000000..70b312a
--- /dev/null
+++ b/src/components/about/AboutPage.js
@@ -0,0 +1,13 @@
+import React from "react";
+
+const AboutPage = () => (
+
+
About
+
+ This app uses React, Redux, React Router, and many other helpful
+ libraries.
+
+
+);
+
+export default AboutPage;
diff --git a/src/components/common/Header.js b/src/components/common/Header.js
new file mode 100644
index 0000000..cdff2ad
--- /dev/null
+++ b/src/components/common/Header.js
@@ -0,0 +1,20 @@
+import React from "react";
+import { NavLink } from "react-router-dom";
+
+const Header = () => {
+ const activeStyle = { color: "#F15B2A" };
+
+ return (
+
+ );
+};
+
+export default Header;
diff --git a/src/components/home/HomePage.js b/src/components/home/HomePage.js
new file mode 100644
index 0000000..76fc462
--- /dev/null
+++ b/src/components/home/HomePage.js
@@ -0,0 +1,14 @@
+import React from "react";
+import { Link } from "react-router-dom";
+
+const HomePage = () => (
+
+
Pluralsight Administration
+
React, Redux and React Router for ultra-responsive web apps.
+
+ Learn more
+
+
+);
+
+export default HomePage;
diff --git a/src/index.css b/src/index.css
new file mode 100644
index 0000000..af9c428
--- /dev/null
+++ b/src/index.css
@@ -0,0 +1,8 @@
+#app {
+ max-width: 850px;
+ margin: 0 auto;
+}
+
+nav {
+ padding: 20px 0 20px 0;
+}
diff --git a/src/index.js b/src/index.js
index c908e6e..67923c1 100644
--- a/src/index.js
+++ b/src/index.js
@@ -1,8 +1,13 @@
import React from "react";
import { render } from "react-dom";
+import { BrowserRouter as Router } from "react-router-dom";
+import "bootstrap/dist/css/bootstrap.min.css";
+import App from "./components/App";
+import "./index.css";
-function Hi() {
- return Hi.
;
-}
-
-render(, document.getElementById("app"));
+render(
+
+
+ ,
+ document.getElementById("app")
+);