'use client'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; import { MdHomeFilled, MdOutlineSubscriptions, MdOutlineVideoLibrary } from 'react-icons/md'; import { SiYoutubeshorts } from 'react-icons/si'; export default function MobileNav() { const pathname = usePathname(); const navItems = [ { icon: , label: 'Home', path: '/' }, // { icon: , label: 'Shorts', path: '/shorts' }, { icon: , label: 'Subscriptions', path: '/feed/subscriptions' }, { icon: , label: 'You', path: '/feed/library' }, ]; return ( ); }