'use client'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; import { Button } from '@/components/ui/button'; import { Sparkles, Upload, FileText, BarChart3 } from 'lucide-react'; import { cn } from '@/lib/utils'; export function Navigation() { const pathname = usePathname(); const navItems = [ { href: '/', label: 'Home', icon: Sparkles }, { href: '/upload', label: 'Upload', icon: Upload }, ]; return ( ); }