{navTabs.map((tab) => {
- const isActive = tab.path === '/' ? currentPath === '/' : currentPath.startsWith(tab.path);
+ const isActive = tab.path === '/features'
+ ? (currentPath === '/' || currentPath.startsWith('/features'))
+ : currentPath.startsWith(tab.path);
return (