diff --git a/lib/accounts.js b/lib/accounts.js
new file mode 100644
index 0000000..24a3c8f
--- /dev/null
+++ b/lib/accounts.js
@@ -0,0 +1,14 @@
+import * as BS from 'react-bootstrap';
+import React from 'react';
+
+import Navbar from 'vanth/navbar';
+module.exports = React.createClass({
+ render: function() {
+ return (
+
+
+
You don't have any accounts yet!
+
+ );
+ }
+});
diff --git a/lib/routes.js b/lib/routes.js
index 51892a4..8d5cb52 100644
--- a/lib/routes.js
+++ b/lib/routes.js
@@ -1,6 +1,7 @@
import React from 'react';
import PathToRegexp from 'path-to-regexp';
+import Accounts from 'vanth/accounts';
import Dashboard from 'vanth/dashboard';
import Login from 'vanth/login';
import Register from 'vanth/register';
@@ -8,6 +9,7 @@ import Register from 'vanth/register';
const Router = React.createClass({
routes: {
"/" : Dashboard,
+ "/accounts" : Accounts,
"/login" : Login,
"/register" : Register,
},