Skip to content

Commit

Permalink
moved Shipyard button to fourth position
Browse files Browse the repository at this point in the history
  • Loading branch information
YASH-YADAV-dynamo committed Sep 30, 2024
1 parent b02ecb7 commit d13f618
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/components/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,14 @@ const Navbar = () => {
>
<Link to="/team">Team</Link>
</li>
<li
className={`p-4 ${activeLink === "/shipyard" ? "text-[#0DFF1C]" : "hover:text-[#0DFF1C]"
} border-b border-gray-600`}
>
<Link to="/shipyard" onClick={() => handleLinkClick("/shipyard")}>
Shipyard
</Link>
</li>
<li
className={`p-4 ${activeLink === "/resource" ? "text-[#0DFF1C]" : "hover:text-[#0DFF1C]"
} border-b border-gray-600`}
Expand All @@ -197,14 +205,6 @@ const Navbar = () => {
<li className="p-4 border-b border-gray-600">
<a href="https://github.com/FOSS-Community/">Contribute</a>
</li>
<li
className={`p-4 ${activeLink === "/shipyard" ? "text-[#0DFF1C]" : "hover:text-[#0DFF1C]"
}`}
>
<Link to="/shipyard" onClick={() => handleLinkClick("/shipyard")}>
Shipyard
</Link>
</li>
</ul>
</div>
</div>
Expand Down

0 comments on commit d13f618

Please sign in to comment.