diff options
| author | jameygleason <james.p.gleason@gmail.com> | 2018-09-20 08:21:22 -0400 |
|---|---|---|
| committer | jameygleason <james.p.gleason@gmail.com> | 2018-09-20 08:21:22 -0400 |
| commit | 8858b3dede6359d105be6c3baf65eef259d18f11 (patch) | |
| tree | 99b9c23b9ca1b2146f4c649a37ddcba835077998 /stepped-solutions/08/frontend/components/Nav.js | |
| parent | 09b5fe3b69c5082afe0129d451bd1afdd3577227 (diff) | |
Stepped Solutions
Diffstat (limited to 'stepped-solutions/08/frontend/components/Nav.js')
| -rwxr-xr-x | stepped-solutions/08/frontend/components/Nav.js | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/stepped-solutions/08/frontend/components/Nav.js b/stepped-solutions/08/frontend/components/Nav.js index 0bd20b7..a821bc1 100755 --- a/stepped-solutions/08/frontend/components/Nav.js +++ b/stepped-solutions/08/frontend/components/Nav.js @@ -1,14 +1,24 @@ import Link from 'next/link'; +import NavStyles from './styles/NavStyles'; const Nav = () => ( - <div> + <NavStyles> + <Link href="/items"> + <a>Items</a> + </Link> <Link href="/sell"> - <a>Sell!</a> + <a>Sell</a> + </Link> + <Link href="/signup"> + <a>Signup</a> + </Link> + <Link href="/orders"> + <a>Orders</a> </Link> - <Link href="/"> - <a>Home!</a> + <Link href="/me"> + <a>Account</a> </Link> - </div> + </NavStyles> ); export default Nav; |
