import Link from 'next/link'; interface IProps { href: string; color: string; content: string; } const LinkBlock = ({ color, href, content }: IProps) => { return ( {content} ); }; export default LinkBlock;