From 6ec981dfa9786e3fd6749a2a6f059e481bd6c2b4 Mon Sep 17 00:00:00 2001 From: Arya Pratap Singh Date: Sat, 11 Jan 2025 00:13:04 +0530 Subject: [PATCH] fix: 404 redirection when clicked on how it works in navbar 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..b978485 100644 --- a/components/navbar.tsx +++ b/components/navbar.tsx @@ -10,7 +10,7 @@ import { Menu, X } from 'lucide-react' const navItems = [ { href: "/", label: "Home" }, { href: "/features", label: "Features" }, - { href: "/how-it-works", label: "How it Works" }, + { href: "/learn-more", label: "How it Works" }, { href: "/FAQ", label: "FAQs" }, { href: "/blog", label: "Blog" }, ]