'use client'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; import { useState } from 'react'; export default function Navbar() { const pathname = usePathname(); const [user] = useState({ username: 'demo' }); const navItems = [ { label: 'Dashboard', href: '/dashboard' }, { label: 'Markets', href: '/dashboard' }, { label: 'Alerts', href: '#' }, { label: 'Metrics', href: '#' }, { label: 'Paper Mode', href: '#' }, { label: 'API', href: '#' }, ]; return ( ); }