'use client'; import { NavButton } from './nav-button'; import { BookOpen, Newspaper, PlusCircle, User, Users } from 'lucide-react'; import { usePathname } from 'next/navigation'; export function BottomNav() { const pathname = usePathname(); const isFirstLevel = pathname.split('/').length <= 2; if (!isFirstLevel) return null; return ( ); }