import Link from 'next/link' export const GeneralButton = (props: {url: string; content: string}) => { const {url, content} = props return (
{content}
) }