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} ) const CardLink = ({ bg = 'bg-base-200', textColor = 'text-base-content', href, title, text, icon, }) => (

{title} {icon}

{text}

) export { linkClasses, Link, AnchorLink, PageLink, WebLink, CardLink }