diff --git a/embark-ui/src/components/Layout.js b/embark-ui/src/components/Layout.js
index cdca42eae..38534335f 100644
--- a/embark-ui/src/components/Layout.js
+++ b/embark-ui/src/components/Layout.js
@@ -10,7 +10,6 @@ import FontAwesome from 'react-fontawesome';
import "./Layout.css";
import {
- AppFooter,
AppHeader,
AppSidebar,
AppSidebarFooter,
@@ -150,6 +149,7 @@ class Layout extends React.Component {
this.searchTheExplorer(searchValue)}/>
+ {this.renderTool()}
{this.renderSettings()}
);
@@ -174,16 +174,21 @@ class Layout extends React.Component {
);
}
- renderFooter() {
+ renderTool() {
return (
-
-
- Embark
- Documentation
- |
- Github
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
);
}
@@ -194,40 +199,39 @@ class Layout extends React.Component {
removeCssClasses();
}
- return (
-
-
- {this.renderNav()}
+ return (
+
+
+
+ {this.renderNav()}
+ {this.renderRightNav()}
+
- {this.renderRightNav()}
-
+
+ {sidebar &&
+
+
+
+
+
+
+
+ }
-
- {sidebar &&
-
-
-
-
-
-
-
- }
+
+ this.dismissSearchError()}>
+ {searchResult.error}
+
-
- this.dismissSearchError()}>
- {searchResult.error}
-
-
-
- {children}
-
-
+
+ {children}
+
+
+
-
- {this.renderFooter()}
-
);
+ );
}
}