Index: src/views/partials/bottom-tab.ejs
===================================================================
--- src/views/partials/bottom-tab.ejs	(revision 99989f9fba023a32bcfaa01464bb0a172952ab1f)
+++ src/views/partials/bottom-tab.ejs	(revision 72ec6a4c535a846688e8da900f308a46345d1578)
@@ -13,8 +13,5 @@
                         && permissions && permissions.canCreatePost && permissions.canCreatePost(user, site));
 const _ownProfile  = user ? ('/users/' + user.username) : null;
-const _isHub       = (typeof tenancy !== 'undefined' && tenancy === 'hub');
-// Home in hub mode ALWAYS goes to the hub root (/), not to an artist's sub-home.
-// In solo/circle _siteUrlBase is empty, so it stays '/'.
-const _homeHref    = (_isHub ? '' : _siteUrlBase) + '/';
+const _homeHref    = _siteUrlBase + '/';
 
 // Strip site prefix for cleaner matching
@@ -26,6 +23,5 @@
 
 let _active = null;
-// In hub, Home is only active on the real hub root, not on an artist sub-home.
-if (_isHub ? (_path === '/') : (_p === '/' || _p === '')) _active = 'home';
+if (_p === '/' || _p === '') _active = 'home';
 else if (_p.indexOf('/search') === 0 || _p.indexOf('/tag/') === 0 || _p.indexOf('/type/') === 0) _active = 'search';
 else if (_p === '/posts/new' || /^\/posts\/[^/]+\/edit$/.test(_p)) _active = 'create';
