MCPcopy Create free account
hub / github.com/CodeWithHarry/Sigma-Web-Dev-Course / Navbar

Function Navbar

Video 123/website/components/Navbar.js:4–15  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2import Link from 'next/link'
3
4const 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
17export default Navbar

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected