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

Function Navbar

Video 123/comps/components/Navbar.js:3–14  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1import React from 'react'
2
3const Navbar = () => {
4 return (
5 <nav className='flex justify-around bg-slate-800 text-white py-4'>
6 <div className="logo font-bold">Facebook</div>
7 <ul className='flex gap-6'>
8 <a href='/'><li>Home</li></a>
9 <a href='/about'><li>About</li></a>
10 <a href='/contact'><li>Contact</li></a>
11 </ul>
12 </nav>
13 )
14}
15
16export default Navbar

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected