'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'; import { useSidebar } from '../context/SidebarContext'; export default function Sidebar() { const pathname = usePathname(); const { isSidebarOpen } = useSidebar(); const navItems = [ { icon: , label: 'Home', path: '/' }, // { icon: , label: 'Shorts', path: '/shorts' }, { icon: , label: 'Sub', path: '/feed/subscriptions' }, { icon: , label: 'You', path: '/feed/library' }, ]; return ( ); }