- {NavItems.slice(0, expand ? NavItems.length : 2).map((link) => {
+
+ {NavItems.slice(0, expand ? NavItems.length : 3).map((link) => {
const isActive = (pathname.includes(link.route) && link.route.length > 1) || pathname === link.route;
const shouldRender = !(link.name === "History" || link.name === "Bookmark") || token;
if (!shouldRender) return null;
return (
-
setExpand(false)} key={link.name} className={`flex flex-col items-center gap-3 text-sm ${isActive && ` border-white/50 border-2 backdrop-blur-md `} w-24 p-2 rounded-lg duration-200 transition-all`}>
-
-
{link.name}
+
setExpand(false)} key={link.name} className={`flex flex-col items-center gap-3 text-sm ${isActive && ` border-white/25 border-2`} w-24 p-2 rounded-lg duration-200 transition-all`}>
+
+
{link.name}
);
})}
setExpand(!expand)}>
-
-
{expand ? "Show Less" : "Show More"}
+
+ {expand ? "Show Less" : "Show More"}