From 420332cae4ebf73c316e90fedeb7c41282fa69cb Mon Sep 17 00:00:00 2001 From: Ashwani Senapati Date: Mon, 19 Jan 2026 12:45:55 +0530 Subject: [PATCH] chore:added navlinks --- src/app/components/Navbar.jsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/app/components/Navbar.jsx b/src/app/components/Navbar.jsx index 8beb3ca..2bedd63 100644 --- a/src/app/components/Navbar.jsx +++ b/src/app/components/Navbar.jsx @@ -45,9 +45,11 @@ const DROPDOWN_CONFIG = { }, }; -// ✅ Direct link configurations +// ✅ Direct link configurations - UPDATED WITH NEW LINKS const DIRECT_LINKS = { Home: "/", + "About Us": "#about", + "What We Do": "#processhead", Projects: "/projects", Achievements: "/achievements", Events: "/events", @@ -89,8 +91,11 @@ export default function Navbar() { const toggleMenu = () => setIsOpen((v) => !v); + // ✅ Updated mainLinks array with new links in appropriate order const mainLinks = [ "Home", + "About Us", + "What We Do", "Projects", "Events", "Team",