diff --git a/cmd/mist/assets/html/home.html b/cmd/mist/assets/html/home.html
new file mode 100644
index 0000000000..7116f5dde7
--- /dev/null
+++ b/cmd/mist/assets/html/home.html
@@ -0,0 +1,75 @@
+
+
+
+Ethereum
+
+
+
+
+
+
+ Info
+
+
+
+ Block number |
+ |
+
+
+
+ Peer count |
+ |
+
+
+
+ Accounts |
+ |
+
+
+
+ Gas price |
+ |
+
+
+
+ Mining |
+ |
+
+
+
+ Listening |
+ |
+
+
+
+ Coinbase |
+ |
+
+
+
+
+
+
+
+
diff --git a/cmd/mist/assets/html/logo.png b/cmd/mist/assets/html/logo.png
new file mode 100644
index 0000000000..28dc9f509e
Binary files /dev/null and b/cmd/mist/assets/html/logo.png differ
diff --git a/cmd/mist/assets/qml/main.qml b/cmd/mist/assets/qml/main.qml
index 439f7888cc..878d958253 100644
--- a/cmd/mist/assets/qml/main.qml
+++ b/cmd/mist/assets/qml/main.qml
@@ -45,7 +45,7 @@ ApplicationWindow {
mainSplit.setView(wallet.view, wallet.menuItem);
- newBrowserTab("http://etherian.io");
+ newBrowserTab(eth.assetPath("html/home.html"));
// Command setup
gui.sendCommand(0)
@@ -138,7 +138,7 @@ ApplicationWindow {
text: "New tab"
shortcut: "Ctrl+t"
onTriggered: {
- newBrowserTab("http://etherian.io");
+ newBrowserTab("about:blank");
}
}