From 271cae08057432f76040c3e90924d50442441621 Mon Sep 17 00:00:00 2001 From: Arya Pratap Singh Date: Sat, 11 Jan 2025 00:20:01 +0530 Subject: [PATCH] fix: features navbar option redirection 404 Signed-off-by: Arya Pratap Singh --- components/navbar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/navbar.tsx b/components/navbar.tsx index 9add224..79c3d7a 100644 --- a/components/navbar.tsx +++ b/components/navbar.tsx @@ -9,7 +9,7 @@ import { Menu, X } from 'lucide-react' const navItems = [ { href: "/", label: "Home" }, - { href: "/features", label: "Features" }, + { href: "#features", label: "Features" }, { href: "/how-it-works", label: "How it Works" }, { href: "/FAQ", label: "FAQs" }, { href: "/blog", label: "Blog" },