diff --git a/components/Shared/Navbar/Navbar.jsx b/components/Shared/Navbar/Navbar.jsx index 9b36d8b..5439131 100644 --- a/components/Shared/Navbar/Navbar.jsx +++ b/components/Shared/Navbar/Navbar.jsx @@ -31,7 +31,8 @@ const Navbar = () => { { id: 3, text: "Our Story", path: "/about" }, { id: 4, text: "Events", path: "/events" }, { id: 5, text: "Contact Us", path: "/contact" }, - + { id: 6, text: "OSSome OD", path: "/ODPage" }, + // { id: 6, text: "Submission", path: "/submission" } ]; @@ -48,9 +49,8 @@ const Navbar = () => { {navItems.map((item) => (
  • handleNavigation(item.path)} > {item.text} @@ -65,20 +65,18 @@ const Navbar = () => { )}