diff --git a/frontend/src/js/component/wb-navbar-common.js b/frontend/src/js/component/wb-navbar-common.js
index 9bb3ef0..fa849fb 100644
--- a/frontend/src/js/component/wb-navbar-common.js
+++ b/frontend/src/js/component/wb-navbar-common.js
@@ -11,7 +11,8 @@ class WBNavbarCommon extends Component {
           { 'name': 'All Projects', 'id': 'all-projects' },
           { 'name': 'All Users', 'id': 'all-users' },
           { 'name': 'Shared with Me', 'id': 'shared-with-me' },
-          { 'name': 'Current User', 'dropdown': [ { 'id': 'sign-out', 'name': 'Sign Out' } ]}
+          { 'name': 'Current User', 'dropdown': [ { 'id': 'sign-out', 'name': 'Sign Out' } ]},
+          { name: (What's New Info), id: 'whatsnew' }
         ].concat(items) }
         rhs={ textSearchNavigate ? (
           
diff --git a/frontend/src/js/page/wb-app.js b/frontend/src/js/page/wb-app.js
index 14aeb76..3788033 100644
--- a/frontend/src/js/page/wb-app.js
+++ b/frontend/src/js/page/wb-app.js
@@ -38,6 +38,8 @@ class WBApp extends Component {
       return ('/users');
     } else if (item['id'] === 'shared-with-me') {
       return ('/shared-with-me');
+    } else if (item['id'] === 'whatsnew') {
+      return ('https://sites.google.com/roche.com/workbenchadvanced');
     }
   }