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