import Image from 'next/image'; import Link from 'next/link'; const ButtonLink = ({ link }: { link: { text: string; url: string } }) => { return ( button background
{link.text}
); }; export default ButtonLink;