import styled from 'styled-components' import ActiveLink from './activelink' const NavCont = styled.nav` display: flex; gap: 1.5rem; font-size: 1.2rem; border: unset; a { color: var(--fg-button); transition: var(--trans-time) opacity; } a:hover { opacity: .4; } ` const Nav = () => { return ( About Contact Projects GitHub WychGit ) } export default Nav