import { NavLink } from 'react-router-dom' import { motion } from 'framer-motion' import { LayoutDashboard, Tv2, Activity, Settings, Globe } from 'lucide-react' const navItems = [ { path: '/', icon: LayoutDashboard, label: 'Dashboard' }, { path: '/channels', icon: Tv2, label: 'Kanallar' }, { path: '/monitoring', icon: Activity, label: 'İzleme' }, { path: '/settings', icon: Settings, label: 'Ayarlar' }, ] export default function Sidebar() { return ( ) }