import { NavLink } from "react-router-dom" import { Home, ListChecks, CheckSquare, BarChart3, Settings } from "lucide-react" import clsx from "clsx" export default function Navigation() { const navItems = [ { to: "/", icon: Home, label: "Сегодня" }, { to: "/habits", icon: ListChecks, label: "Привычки" }, { to: "/tasks", icon: CheckSquare, label: "Задачи" }, { to: "/stats", icon: BarChart3, label: "Статистика" }, { to: "/settings", icon: Settings, label: "Настройки" }, ] return ( ) }