Horje
chakra ui menu open on hover Code Example
chakra ui menu open on hover
import { useDisclosure, Menu, MenuButton, MenuList, MenuItem } from '@chakra-ui/react'
export default function Navbar(){
  return (
             <Menu isOpen={isOpen}>
                <MenuButton onMouseEnter={onOpen} onMouseLeave={onClose}>
                  <span className="mr-1">
                    CAREER
                  </span>
                </MenuButton>

                <MenuList className="drop" onMouseEnter={onOpen} onMouseLeave={onClose}>
                  <MenuItem className="menu_item hover:opacity-60 hover:text-black ">
                    <Link href="/join-our-team">
                      <a rel="nofollow" className={` ${pathname == '/join-our-team' ? 'opacity-60 text-white scale-110 ml-1' : ''}`}>JOIN OUR TEAM</a>
                    </Link>
                  </MenuItem>
                  <MenuItem className="menu_item hover:opacity-60 hover:text-black ">
                    <Link href="/life-at-sirocco">
                      <a rel="nofollow" className={`z-[1000]  ${pathname == '/life-at-sirocco' ? 'opacity-60 text-white scale-110 ml-1' : ''}`}>LIFE AT SIROCCO</a>
                    </Link>
                  </MenuItem>
                </MenuList>
              </Menu>
  )
  
}  




Typescript

Related
createasyncthunk with typescript Code Example createasyncthunk with typescript Code Example
tinker exit RuntimeException with message 'Too many arguments, expected arguments "command".' Code Example tinker exit RuntimeException with message 'Too many arguments, expected arguments "command".' Code Example
when new item added in array its not refreshing the list in ember Code Example when new item added in array its not refreshing the list in ember Code Example
how to select a column with brackets in jupyter notebook Code Example how to select a column with brackets in jupyter notebook Code Example
how to install typescript@3.9.3 npm Code Example how to install [email protected] npm Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7