@@ -4,7 +4,7 @@ import { IoSearchCircleOutline, IoSearchCircleSharp } from "react-icons/io5";
44import { FaUserCircle } from "react-icons/fa" ;
55import { MdOutlineShoppingCart , MdLogout } from "react-icons/md" ;
66import { IoMdHome } from "react-icons/io" ;
7- import { HiOutlineCollection , HiOutlineUserGroup } from "react-icons/hi" ;
7+ import { HiOutlineCollection } from "react-icons/hi" ;
88import { RiContactsLine } from "react-icons/ri" ;
99import { BsMoon , BsSun , BsSearch , BsBoxSeam } from "react-icons/bs" ;
1010import { FiInfo , FiUser , FiLogIn } from "react-icons/fi" ;
@@ -105,7 +105,7 @@ function Nav() {
105105
106106 { /* Desktop Navigation */ }
107107 < nav ref = { navRef } className = "hidden md:flex gap-12 text-sm font-medium cursor-pointer" >
108- { [ 'Home' , 'Collection' , 'Contributors' , ' About', 'Contact' ] . map ( ( item ) => {
108+ { [ 'Home' , 'Collection' , 'About' , 'Contact' ] . map ( ( item ) => {
109109 const path = item . toLowerCase ( ) === 'home' ? '/' : `/${ item . toLowerCase ( ) } ` ;
110110 const isActive = location . pathname === path ;
111111 return (
@@ -300,11 +300,10 @@ function Nav() {
300300 ) }
301301
302302 { /* Mobile Bottom Navigation */ }
303- < div className = "fixed bottom-0 left-0 w-full md:hidden h-16 bg-white dark:bg-[#121826] border-t border-gray-200 dark:border-gray-800 flex items-center justify-around z-40 shadow-lg" >
303+ < div className = "fixed bottom-0 left-0 w-full md:hidden h-16 bg-white dark:bg-[#121826] border-t border-gray-200 dark:border-gray-800 flex items-center justify-around z-40 shadow-lg" >
304304 { [
305305 { icon : IoMdHome , label : "Home" , path : "/" } ,
306306 { icon : HiOutlineCollection , label : "Collection" , path : "/collection" } ,
307- { icon : HiOutlineUserGroup , label : "Contributors" , path : "/contributors" } ,
308307 { icon : RiContactsLine , label : "Contact" , path : "/contact" } ,
309308 ] . map ( ( item , index ) => {
310309 const isActive = location . pathname === item . path ;
0 commit comments