import {Props} from '@/types'; import {Popover} from '@headlessui/react' import Link from 'next/link' export function MobileNavItem({href, children}: { href: string } & Props) { return (
  • {children}
  • ) }