import React from 'react'; import { Link } from 'react-router-dom'; const Navigation = ({ currentPath }) => { const navItems = [ { path: '/', label: 'Home' }, { path: '/publications', label: 'Publications' }, { path: '/projects', label: 'Projects' }, { path: '/blog', label: 'Blog' }, { path: '/resume', label: 'Resume' } ]; return ( ); }; export default Navigation;