import Link from 'next/link' import { useRouter } from 'next/router' export const MenuItemNormal = props => { const router = useRouter() const { link } = props const selected = router.pathname === link.href || router.asPath === link.href return (