import Link from 'next/link'; export default function ButtonLink({ style = 'primary', className = '', href = '', children, }) { let styleClassName = ''; if (style == 'primary') { styleClassName = 'text-primary bg-blue-400 hover:bg-blue-300'; } else if (style == 'secondary') { styleClassName = 'text-secondary border !border-secondary hover:text-primary hover:bg-blue-300'; } return ( {children} ); }