Skip to content

Commit

Permalink
fix: change tag a to link
Browse files Browse the repository at this point in the history
  • Loading branch information
muritadb committed Aug 30, 2024
1 parent 26060d6 commit fecca25
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions components/petdex/Navbar/assets/Menu.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
import Link from "next/link"

function Menu() {
return (
<ul className=" lg:space-x-10 space-y-6 ml-10 lg:space-y-0 lg:ml-3 lg:flex">
<li className='text-petdex-secondaryGreen'>
<a className='hover:underline hover:font-semibold' href="#">Home</a>
<Link className='hover:underline hover:font-semibold' href="#">Home</Link>
</li>
<li className='text-petdex-secondaryGreen'>
<a className='hover:underline hover:font-semibold' href="#">Petdex</a>
<Link className='hover:underline hover:font-semibold' href="#">Petdex</Link>
</li>
<li className='text-petdex-secondaryGreen'>
<a className='hover:underline hover:font-semibold' href="#">Contato</a>
<Link className='hover:underline hover:font-semibold' href="#">Contato</Link>
</li>
</ul>
)
Expand Down

0 comments on commit fecca25

Please sign in to comment.