diff --git a/js/components/App.js b/js/components/App.js
index ee37e1b..26d6537 100644
--- a/js/components/App.js
+++ b/js/components/App.js
@@ -3,11 +3,12 @@ import { connect } from 'react-redux';
import actions from '../actions';
import Header from './Header';
+import Footer from './Footer';
import Router from './Router';
function App(props) {
return (
-
+
@@ -16,14 +17,7 @@ function App(props) {
-
-
-
AOE is a leading provider of Enterprise Open Source web solutions.
- Using current agile development methods, more than 250+ developers
- and consultants in 8 global locations develop customized Open Source
- solutions for global companies and corporations.
-
-
+
diff --git a/js/components/Branding.js b/js/components/Branding.js
new file mode 100644
index 0000000..25c41c1
--- /dev/null
+++ b/js/components/Branding.js
@@ -0,0 +1,14 @@
+import React from 'react';
+
+export default function Branding({ logoContent, children }) {
+ return (
+
+
+ {logoContent}
+
+
+ {children}
+
+
+ );
+}
diff --git a/js/components/Footer.js b/js/components/Footer.js
new file mode 100644
index 0000000..24dc358
--- /dev/null
+++ b/js/components/Footer.js
@@ -0,0 +1,17 @@
+import React from 'react';
+import Branding from './Branding';
+
+export default function Footer() {
+ return (
+ }
+ >
+
+ AOE is a leading provider of Enterprise Open Source web solutions.
+ Using current agile development methods, more than 250+ developers
+ and consultants in 8 global locations develop customized Open Source
+ solutions for global companies and corporations.
+
+
+ );
+}
diff --git a/js/components/Header.js b/js/components/Header.js
index 7ac7654..0626ca3 100644
--- a/js/components/Header.js
+++ b/js/components/Header.js
@@ -1,29 +1,29 @@
import React from 'react';
+import Branding from './Branding';
import Link from './Link';
export default function Header() {
return (
-