'use client'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; import { HomeIcon, SubscriptionsIcon, LibraryIcon } from '../icons'; export default function MobileNav() { const pathname = usePathname(); const navItems = [ { icon: , label: 'Home', path: '/' }, { icon: , label: 'Sub', path: '/feed/subscriptions' }, { icon: , label: 'You', path: '/feed/library' }, ]; return ( ); }