()
| 2 | import Link from 'next/link' |
| 3 | |
| 4 | const Navbar = () => { |
| 5 | return ( |
| 6 | <nav className='flex justify-between px-4 bg-slate-800 text-white py-4'> |
| 7 | <div className="logo font-bold">Facebook</div> |
| 8 | <ul className='flex gap-6'> |
| 9 | <Link href='/'><li>Home</li></Link> |
| 10 | <Link href='/about'><li>About</li></Link> |
| 11 | <Link href='/contact'><li>Contact</li></Link> |
| 12 | </ul> |
| 13 | </nav> |
| 14 | ) |
| 15 | } |
| 16 | |
| 17 | export default Navbar |
nothing calls this directly
no outgoing calls
no test coverage detected