import { createPortal } from 'react-dom'; import classNames from 'classnames'; import { usePathname } from 'next/navigation'; import Link from 'next/link'; import styles from './MobileMenu.module.css'; export function MobileMenu({ items = [], onClose }) { const pathname = usePathname(); const Items = ({ items, className }) => (