import Link from 'next/link' import { NavDisplayProps, NavItemType } from './Navigation'; import { usePathname } from 'next/navigation'; import { useHelpers } from '@/lib/client-helpers'; export default function MobileNavDisplay({ navItems }: NavDisplayProps) { const pathname = usePathname(); const { isIOS } = useHelpers() return ( <>
); }