Portfolio website written with Next.js
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wychdev-nextjs/components/nav.tsx

29 lines
499 B

2 years ago
import styled from 'styled-components'
import ActiveLink from './activelink'
2 years ago
const Nav = styled.nav`
display: flex;
gap: 1.5rem;
font-size: 1.2rem;
border: unset;
a {
color: var(--fg-button);
transition: var(--trans-time) opacity;
2 years ago
}
a:hover {
opacity: .4;
}
`
export default () => {
return (
<Nav>
<ActiveLink href="/">Home</ActiveLink>
<ActiveLink href="/projects">Projects</ActiveLink>
2 years ago
<a href="https://github.com/E-Almqvist" target="_blank">GitHub</a>
</Nav>
)
}