Skip to content

Commit

Permalink
Update Navbar.jsx
Browse files Browse the repository at this point in the history
  • Loading branch information
ASquare04 authored Jul 11, 2024
1 parent ee24f26 commit 1f6defb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@ function Navbar() {
</li>
<li>
<Link
to="/project"
to="/projects"
className={`px-3 py-2 transition-all duration-300 ease-in-out ${
isActive("/project")
? "text-orange-500"
: "hover:text-orange-600"
}`}
>
Project
Projects
</Link>
</li>
<li>
Expand Down Expand Up @@ -147,15 +147,15 @@ function Navbar() {
</li>
<li>
<Link
to="/project"
to="/projects"
className={`block py-2 px-4 rounded ${
isActive("/project")
? "text-orange-500"
: "hover:text-orange-600"
}`}
onClick={toggleMenu}
>
Project
Projects
</Link>
</li>
<li>
Expand Down

0 comments on commit 1f6defb

Please sign in to comment.