Skip to content

Commit d13f618

Browse files
moved Shipyard button to fourth position
1 parent b02ecb7 commit d13f618

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/components/Navbar.jsx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,14 @@ const Navbar = () => {
173173
>
174174
<Link to="/team">Team</Link>
175175
</li>
176+
<li
177+
className={`p-4 ${activeLink === "/shipyard" ? "text-[#0DFF1C]" : "hover:text-[#0DFF1C]"
178+
} border-b border-gray-600`}
179+
>
180+
<Link to="/shipyard" onClick={() => handleLinkClick("/shipyard")}>
181+
Shipyard
182+
</Link>
183+
</li>
176184
<li
177185
className={`p-4 ${activeLink === "/resource" ? "text-[#0DFF1C]" : "hover:text-[#0DFF1C]"
178186
} border-b border-gray-600`}
@@ -197,14 +205,6 @@ const Navbar = () => {
197205
<li className="p-4 border-b border-gray-600">
198206
<a href="https://github.com/FOSS-Community/">Contribute</a>
199207
</li>
200-
<li
201-
className={`p-4 ${activeLink === "/shipyard" ? "text-[#0DFF1C]" : "hover:text-[#0DFF1C]"
202-
}`}
203-
>
204-
<Link to="/shipyard" onClick={() => handleLinkClick("/shipyard")}>
205-
Shipyard
206-
</Link>
207-
</li>
208208
</ul>
209209
</div>
210210
</div>

0 commit comments

Comments
 (0)