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/navlinks.tsx

20 lines
488 B

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;