diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 4ab0d4c0..277fda0a 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -852,5 +852,17 @@ - + + + + +
+ Divyaranjan Sahoo +
+ + + diff --git a/public/img/avatar/Divyaranjan.jpg b/public/img/avatar/Divyaranjan.jpg new file mode 100644 index 00000000..50e602d3 Binary files /dev/null and b/public/img/avatar/Divyaranjan.jpg differ diff --git a/public/img/bid_image/Divyaranjan.jpg b/public/img/bid_image/Divyaranjan.jpg new file mode 100644 index 00000000..9d0079c5 Binary files /dev/null and b/public/img/bid_image/Divyaranjan.jpg differ diff --git a/src/Components/Nav/Nav.jsx b/src/Components/Nav/Nav.jsx index 560f22d4..11a521cf 100644 --- a/src/Components/Nav/Nav.jsx +++ b/src/Components/Nav/Nav.jsx @@ -2,17 +2,41 @@ import styles from './Nav.module.css'; import Button from '../Elements/Button/Button'; +import { Link, useLocation } from 'react-router-dom'; const Nav = () => { + const location = useLocation(); + + const navItems = [ + { path: '/', label: 'Home' }, + { path: '/Contributors', label: 'Contributors' }, + { path: '/contributors-map', label: 'Map' } + ]; return (