fix: active page mark for home and bookmarks subcategories

This commit is contained in:
Kentai Radiquum 2024-11-21 17:54:49 +05:00
parent 447fadd19f
commit 487ae9a1e4
Signed by: Radiquum
GPG key ID: 858E8EE696525EED

View file

@ -19,6 +19,7 @@ export const Navbar = () => {
iconActive: "material-symbols--home", iconActive: "material-symbols--home",
title: "Домашняя", title: "Домашняя",
href: "/", href: "/",
categoryHref: "/home",
withAuthOnly: false, withAuthOnly: false,
mobileMenu: false, mobileMenu: false,
}, },
@ -89,12 +90,20 @@ export const Navbar = () => {
> >
<span <span
className={`iconify ${ className={`iconify ${
pathname == link.href ? link.iconActive : link.icon [link.href, link.categoryHref].includes(
"/" + pathname.split("/")[1]
)
? link.iconActive
: link.icon
} w-6 h-6`} } w-6 h-6`}
></span> ></span>
<span <span
className={`${ className={`${
pathname == link.href ? "font-bold" : "" [link.href, link.categoryHref].includes(
"/" + pathname.split("/")[1]
)
? "font-bold"
: ""
} text-sm sm:text-base`} } text-sm sm:text-base`}
> >
{link.title} {link.title}
@ -154,14 +163,20 @@ export const Navbar = () => {
> >
<span <span
className={`iconify ${ className={`iconify ${
pathname == link.href [link.href, link.categoryHref].includes(
"/" + pathname.split("/")[1]
)
? link.iconActive ? link.iconActive
: link.icon : link.icon
} w-6 h-6`} } w-6 h-6`}
></span> ></span>
<span <span
className={`${ className={`${
pathname == link.href ? "font-bold" : "" [link.href, link.categoryHref].includes(
"/" + pathname.split("/")[1]
)
? "font-bold"
: ""
}`} }`}
> >
{link.title} {link.title}