'use client'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; import { siGithub } from 'simple-icons/icons'; export default function Navigation() { const pathname = usePathname(); const navItems = [ { href: '/', label: 'Rankings' }, { href: '/challenges', label: 'Challenges' }, { href: '/add-model', label: 'Add Model' }, { href: '/backtesting-archive', label: 'Backtesting Archive' }, { href: '/about', label: 'About' }, ]; return ( ); }