import { NavLink } from 'react-router-dom'; import { Home, PlusSquare, User, CircleUser } from 'lucide-react'; import { useAuth } from '../context/AuthContext'; import { cn } from '../lib/utils'; const navItems = [ { path: '/', icon: Home, label: 'Feed' }, { path: '/create', icon: PlusSquare, label: 'Create' }, { path: '/profile', icon: User, label: 'Profile' }, ]; export default function NavigationBar() { const { user } = useAuth(); return ( ); }