import Link from 'next/link'
const linkClasses =
'underline decoration-2 hover:decoration-4 text-secondary hover:text-secondary-focus'
const AnchorLink = ({ id, txt = false, children }) => (
{txt ? txt : children}
)
const PageLink = ({ href, txt = false, children }) => (
{children ? children : txt}
)
const WebLink = ({ href, txt = false, children }) => (
{children ? children : txt}
)
export { linkClasses, Link, AnchorLink, PageLink, WebLink }