guitar-strings-123 / capstone-project

0 stars 1 forks source link

add profile and products links to menu #153

Closed bryceAM closed 1 year ago

bryceAM commented 1 year ago

components/navbar.js

<div id='products'>
    <Link style={{ textDecoration: 'none', color: 'black'}} to="Products">Products</Link>
</div>
<div id='profile'>
    <Link style={{ textDecoration: 'none', color: 'black'}} to="Profile">Profile</Link>
</div>

style/navbar.css

#nav_bar_inner > *:hover {
    filter: drop-shadow(2px 2px 2px gray);
}
bryceAM commented 1 year ago

The menu needs links to the Profile and Products components.