()
| 1 | import Link from 'next/link' |
| 2 | |
| 3 | const Navbar = () => { |
| 4 | return ( |
| 5 | <nav className="flex items-center justify-between p-6 bg-blue-500"> |
| 6 | <div> |
| 7 | <Link className="text-white text-lg mx-2" href="/"> Home |
| 8 | </Link> |
| 9 | <Link className="text-white text-lg mx-2" href="/about"> |
| 10 | About |
| 11 | </Link> |
| 12 | <Link className="text-white text-lg mx-2" href="/contact"> Contact |
| 13 | </Link> |
| 14 | </div> |
| 15 | </nav> |
| 16 | ) |
| 17 | } |
| 18 | |
| 19 | export default Navbar |
nothing calls this directly
no outgoing calls
no test coverage detected