()
| 2 | import Link from 'next/link' |
| 3 | |
| 4 | const Navbar = () => { |
| 5 | return ( |
| 6 | <nav className='h-16 bg-purple-700 flex justify-between px-3 items-center text-white '> |
| 7 | <div className="logo font-bold text-2xl"> |
| 8 | <Link href="/">BitLinks</Link> |
| 9 | </div> |
| 10 | <ul className='flex justify-center gap-4 items-center'> |
| 11 | <Link href="/"><li>Home</li></Link> |
| 12 | <Link href="/about"><li>About</li></Link> |
| 13 | <Link href="/shorten"><li>Shorten</li></Link> |
| 14 | <Link href="/contact"><li>Contact Us</li></Link> |
| 15 | <li className='flex gap-3'> |
| 16 | <Link href="/shorten"><button className='bg-purple-500 rounded-lg shadow-lg p-3 py-1 font-bold'>Try Now</button></Link> |
| 17 | <Link href="/github"><button className='bg-purple-500 rounded-lg shadow-lg p-3 py-1 font-bold'>GitHub</button></Link> |
| 18 | </li> |
| 19 | </ul> |
| 20 | </nav> |
| 21 | ) |
| 22 | } |
| 23 | |
| 24 | export default Navbar |
nothing calls this directly
no outgoing calls
no test coverage detected