import { NavLink, Link } from 'react-router-dom' import { Radar, Clock, TrendingUp, ShieldCheck } from 'lucide-react' import { PAGE_STYLE } from '../App.jsx' const NAV_LINKS = [ { to: '/', icon: ShieldCheck, label: 'Verify' }, { to: '/history', icon: Clock, label: 'History' }, { to: '/trends', icon: TrendingUp, label: 'Trends' }, ] export default function Navbar() { return (
{/* Inner content aligned to same width as page content */}
{/* Logo — Link to home */}
) }