'use client'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; const NAV_ITEMS = [ { label: 'AutoTrader', href: '/', icon: ( ), }, { label: 'AutoBuyer', href: '/autobuyer', icon: ( ), }, { label: 'AutoRequester', href: '/autorequester', icon: ( ), }, ]; export default function Sidebar() { const pathname = usePathname(); return ( <> {/* Desktop sidebar */} {/* Mobile bottom bar */} ); }