import Link from 'next/link'; const Card = ({ title, text, url }) => { return (
{title}

{text}

Go to {title}
); }; export default Card;