1
0
Fork 0

chore: more in upstream changes

This commit is contained in:
joostdecock 2022-12-04 13:19:42 +01:00
parent e28ca4ea86
commit 85bd7f142f
15 changed files with 107 additions and 198 deletions

View file

@ -1,11 +1,9 @@
import Link from 'next/link'
const PageLink = ({ href, txt, className="" }) => (
<Link href={href}>
<a className={`font-bold text-secondary
<Link href={href} className={`font-bold text-secondary
hover:text-secondary-focus hover:underline ${className}`}
title={txt}>{txt}</a>
</Link>
title={txt}>{txt}</Link>
)
export default PageLink