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.
28 lines
452 B
28 lines
452 B
import Link from "next/link"
|
|
import styled from 'styled-components'
|
|
|
|
const Nav = styled.nav`
|
|
display: flex;
|
|
gap: 1.5rem;
|
|
font-size: 1.2rem;
|
|
border: unset;
|
|
|
|
a {
|
|
color: var(--fg-button);
|
|
transition: .2s opacity;
|
|
}
|
|
|
|
a:hover {
|
|
opacity: .4;
|
|
}
|
|
`
|
|
|
|
export default () => {
|
|
return (
|
|
<Nav>
|
|
<Link href="/">Home</Link>
|
|
<Link href="/projects">Projects</Link>
|
|
<a href="https://github.com/E-Almqvist" target="_blank">GitHub</a>
|
|
</Nav>
|
|
)
|
|
}
|
|
|