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

Function Navbar

Video 114/src/components/Navbar.jsx:3–15  ·  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-indigo-900 text-white py-2'>
6 <div className="logo">
7 <span className='font-bold text-xl mx-8'>iTask</span>
8 </div>
9 <ul className="flex gap-8 mx-9">
10 <li className='cursor-pointer hover:font-bold transition-all'>Home</li>
11 <li className='cursor-pointer hover:font-bold transition-all'>Your Tasks</li>
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