"use client"; import Link from 'next/link'; import { usePathname } from 'next/navigation'; import { LayoutDashboard, List, Search, Globe, Settings, TerminalSquare, Rocket } from 'lucide-react'; import { motion } from 'framer-motion'; import { ThemeToggle } from './theme-toggle'; const navItems = [ { name: 'Dashboard', href: '/dashboard', icon: LayoutDashboard }, { name: 'Listings', href: '/listings', icon: List }, { name: 'Targets', href: '/keywords', icon: Search }, { name: 'Sites', href: '/sites', icon: Globe }, { name: 'AI Log', href: '/ai-log', icon: TerminalSquare }, { name: 'Settings', href: '/settings', icon: Settings }, ]; export default function Navbar() { const pathname = usePathname(); return (
BidWraith
SYSTEM_ACTIVE
); }