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