diff --git a/embark-ui/src/components/Console.js b/embark-ui/src/components/Console.js
new file mode 100644
index 00000000..12460ac0
--- /dev/null
+++ b/embark-ui/src/components/Console.js
@@ -0,0 +1,27 @@
+import React from 'react';
+import {Grid, Card} from 'tabler-react';
+
+const Console = () => (
+
+
+
+
+ Console
+
+
+
+
+
+
+
+
+);
+
+export default Console;
diff --git a/embark-ui/src/components/Home.js b/embark-ui/src/components/Home.js
deleted file mode 100644
index 84c19966..00000000
--- a/embark-ui/src/components/Home.js
+++ /dev/null
@@ -1,7 +0,0 @@
-import React from 'react';
-
-const Home = () => (
-
Home
-);
-
-export default Home;
diff --git a/embark-ui/src/components/Status.js b/embark-ui/src/components/Status.js
new file mode 100644
index 00000000..144879ba
--- /dev/null
+++ b/embark-ui/src/components/Status.js
@@ -0,0 +1,61 @@
+import React from 'react';
+import {Grid, Card} from 'tabler-react';
+
+const Status = () => (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
http://localhost:8000
+
+
+
+
+
+);
+
+export default Status;
diff --git a/embark-ui/src/containers/HomeContainer.js b/embark-ui/src/containers/HomeContainer.js
new file mode 100644
index 00000000..9b8e8891
--- /dev/null
+++ b/embark-ui/src/containers/HomeContainer.js
@@ -0,0 +1,23 @@
+import React, {Component} from 'react';
+import {connect} from 'react-redux';
+import {Page} from "tabler-react";
+
+import Status from '../components/Status';
+import Console from '../components/Console';
+
+class HomeContainer extends Component {
+ render() {
+ return (
+
+ Dashboard
+
+
+
+ );
+ }
+}
+
+export default connect(
+ null,
+ null,
+)(HomeContainer);
diff --git a/embark-ui/src/routes.js b/embark-ui/src/routes.js
index c7cee5aa..62a0dd60 100644
--- a/embark-ui/src/routes.js
+++ b/embark-ui/src/routes.js
@@ -1,7 +1,7 @@
import React from 'react';
import {Route, Switch} from 'react-router-dom';
-import Home from './components/Home';
+import HomeContainer from './containers/HomeContainer';
import NoMatch from './components/NoMatch';
import ExplorerLayout from './components/ExplorerLayout';
import ProcessesLayout from './components/ProcessesLayout';
@@ -9,7 +9,7 @@ import ProcessesLayout from './components/ProcessesLayout';
const routes = (
-
+
diff --git a/lib/modules/webserver/server.js b/lib/modules/webserver/server.js
index 3285750a..7c0c1fd9 100644
--- a/lib/modules/webserver/server.js
+++ b/lib/modules/webserver/server.js
@@ -26,6 +26,7 @@ class Server {
var app = express();
app.use(cors());
app.use(express.static(path.join(fs.dappPath(this.dist)), {'index': ['index.html', 'index.htm']}));
+ app.use('/old_backend', express.static(path.join(__dirname, './backend')));
app.use('/embark', express.static(path.join(__dirname, '../../../embark-ui/build')));
app.use(bodyParser.json()); // support json encoded bodies