From 854df6ad1c6ddda572417acbe91d1214944bf578 Mon Sep 17 00:00:00 2001 From: Henry Date: Thu, 16 Oct 2025 20:58:55 +0100 Subject: [PATCH] fix: update features link in header --- apps/web/src/views/home/components/Header.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/src/views/home/components/Header.tsx b/apps/web/src/views/home/components/Header.tsx index 4a427d60..16b57758 100644 --- a/apps/web/src/views/home/components/Header.tsx +++ b/apps/web/src/views/home/components/Header.tsx @@ -11,7 +11,7 @@ const Header = ({ isLoggedIn }: { isLoggedIn: boolean }) => { const menuItems = [ { label: t`Roadmap`, href: "/kan/roadmap", openInNewTab: true }, - { label: t`Features`, href: "#features" }, + { label: t`Features`, href: "/#features" }, { label: t`Pricing`, href: "/pricing" }, { label: t`Docs`, href: "https://docs.kan.bn", openInNewTab: true }, ];