import { useHelpers } from '@/lib/client-helpers'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; import { NavItemType } from './Navigation'; export default function NavDisplay({ navItems, displayType }: { navItems: NavItemType[], displayType: 'main' | 'mobile' }) { const pathname = usePathname(); const { isIOS } = useHelpers() if (displayType === 'mobile') { return ( <>
); } else { return (
); } }