interface ButtonLinkProps { url: string; color: 'primary' | 'secondary'; text: string; } export default function Button({ url, color, text }: ButtonLinkProps) { return ( {text} ) }