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.
16 lines
431 B
16 lines
431 B
2 years ago
|
import ActiveLink from "./activelink"
|
||
|
|
||
|
const NavLinks = () => {
|
||
|
return (
|
||
|
<>
|
||
|
<ActiveLink href="/">About</ActiveLink>
|
||
|
<ActiveLink href="/#contact">Contact</ActiveLink>
|
||
|
<ActiveLink href="/projects">Projects</ActiveLink>
|
||
|
<a href="https://github.com/E-Almqvist" target="_blank" rel="noreferrer">GitHub</a>
|
||
|
<a href="https://git.wych.dev" target="_blank" rel="noreferrer">WychGit</a>
|
||
|
</>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default NavLinks
|