'use client'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; interface NavItem { href: string; label: string; icon: string; } const NAV_ITEMS: NavItem[] = [ { href: '/', label: 'Dashboard', icon: '⚡' }, { href: '/create', label: 'Create', icon: '✨' }, { href: '/schedule', label: 'Schedule', icon: '📅' }, { href: '/analytics', label: 'Analytics', icon: '📊' }, { href: '/settings', label: 'Settings', icon: '⚙️' }, ]; export default function Sidebar(): React.ReactElement { const pathname = usePathname(); return ( ); }