nav bar refinements

This commit is contained in:
2025-01-30 22:12:10 -05:00
parent 80aca7d424
commit 46202f3337
6 changed files with 1168 additions and 5 deletions
+5 -2
View File
@@ -21,8 +21,11 @@ const navLinks: NavLink[] = [
<nav>
{
navLinks.map((link) => (
<li class={pathname === link.path ? 'selected' : null}>
<a href={link.path}>
<li>
<a
href={link.path}
class={pathname === link.path ? 'selected' : null}
>
<span>{link.label}</span>
</a>
</li>