import Link from "next/link"; const Resource = ({icon, title, text, link}) => { return (
{icon}

{title}

{text}

VIEW
); }; export default Resource