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

Function Navbar

Video 129/layouts/components/Navbar.js:3–17  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected