import React from 'react'; import { useNavigate, useLocation } from 'react-router-dom'; import { Home, BarChart2, Calendar, Settings } from 'lucide-react'; import { cn } from '@/lib/utils'; const NavBar = () => { const navigate = useNavigate(); const location = useLocation(); const navItems = [ { icon: Home, label: '홈', path: '/' }, { icon: Calendar, label: '거래', path: '/transactions' }, { icon: BarChart2, label: '분석', path: '/analytics' }, { icon: Settings, label: '설정', path: '/settings' }, ]; return (