import Link from 'next/link'; import styled from 'styled-components'; const StyledUl = styled.ul` margin: 0; padding: 0; display: flex; li { display: flex; flex: 1; } a { padding: 10px; flex: 1; text-decoration: none; text-align: center; background: rgba(0, 0, 0, 0.2); color: white; margin-right: 20px; &:hover { background: rgba(0, 0, 0, 0.3); } } `; const Nav = () => ( Home Sign Up Add an Item Orders My Cart ); export default Nav;