Skip to content
This repository has been archived by the owner on Oct 2, 2024. It is now read-only.

Commit

Permalink
fix: refactored mobile nav
Browse files Browse the repository at this point in the history
  • Loading branch information
eddiejaoude committed May 28, 2024
1 parent bc8763d commit 3d54b7b
Showing 1 changed file with 9 additions and 30 deletions.
39 changes: 9 additions & 30 deletions src/components/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -239,36 +239,15 @@ export default function Header({ session }) {
</div>
</div>
<div className="mt-3 space-y-1 px-2">
<a
href="#"
className="block rounded-md px-3 py-2 text-base font-medium text-gray-900 hover:bg-gray-100 hover:text-gray-800"
>
Home
</a>
<a
href="#"
className="block rounded-md px-3 py-2 text-base font-medium text-gray-900 hover:bg-gray-100 hover:text-gray-800"
>
Profile
</a>
<a
href="#"
className="block rounded-md px-3 py-2 text-base font-medium text-gray-900 hover:bg-gray-100 hover:text-gray-800"
>
Resources
</a>
<a
href="#"
className="block rounded-md px-3 py-2 text-base font-medium text-gray-900 hover:bg-gray-100 hover:text-gray-800"
>
Company Directory
</a>
<a
href="#"
className="block rounded-md px-3 py-2 text-base font-medium text-gray-900 hover:bg-gray-100 hover:text-gray-800"
>
Openings
</a>
{navigation.map((item) => (
<a
key={item.name}
href={item.href}
className="block rounded-md px-3 py-2 text-base font-medium text-gray-900 hover:bg-gray-100 hover:text-gray-800"
>
{item.name}
</a>
))}
</div>
</div>
{!session && (
Expand Down

0 comments on commit 3d54b7b

Please # to comment.