} />
} />
diff --git a/pages/src/components/Navbar.tsx b/pages/src/components/Navbar.tsx
index 2ea18aac..d8e99f75 100644
--- a/pages/src/components/Navbar.tsx
+++ b/pages/src/components/Navbar.tsx
@@ -14,7 +14,7 @@ const LANG_OPTIONS: { value: Language; label: string }[] = [
];
const navTabs = [
- { path: '/', labelKey: 'navbar.features' },
+ { path: '/features', labelKey: 'navbar.features' },
{ path: '/benchmark', labelKey: 'navbar.benchmark' },
{ path: '/quickstart', labelKey: 'navbar.quickstart' },
{ path: '/docs', labelKey: 'navbar.docs' },
@@ -80,7 +80,7 @@ const Navbar: React.FC = () => {
{!isMobile && (
{navTabs.map((tab) => {
- const isActive = tab.path === '/' ? currentPath === '/' : currentPath.startsWith(tab.path);
+ const isActive = currentPath.startsWith(tab.path);
return (