From 146b29c47fbd8c10deea565bfae29bd8fabbf149 Mon Sep 17 00:00:00 2001 From: deepsikha-dash Date: Sat, 20 Jun 2026 21:48:42 +0530 Subject: [PATCH] feat: add FAQ item to desktop navbar --- apps/web-dashboard/src/pages/LandingPage/index.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web-dashboard/src/pages/LandingPage/index.jsx b/apps/web-dashboard/src/pages/LandingPage/index.jsx index f35e59a03..42c5926f8 100644 --- a/apps/web-dashboard/src/pages/LandingPage/index.jsx +++ b/apps/web-dashboard/src/pages/LandingPage/index.jsx @@ -601,13 +601,13 @@ const NAV_ITEMS = [ { label: 'Features', href: '/#client-services', icon: Zap }, { label: 'Use Cases', href: '/#use-cases', icon: Box }, { label: 'Pricing', href: '/pricing', icon: Check }, + { label: 'FAQ', href: '/#faq', icon: CircleHelp }, { label: 'Docs', href: 'https://docs.ub.bitbros.in', icon: Terminal, external: true } ]; const MOBILE_MENU_ITEMS = [ { label: 'How it Works', href: '#how-it-works', icon: Layers }, - ...NAV_ITEMS, - { label: 'FAQ', href: '#faq', icon: CircleHelp } + ...NAV_ITEMS ]; function renderNavItem(item, index, { className, iconSize, onNavigate, location }) {