"use client"; import { FC } from "react"; import Link from "next/link"; import { Button as MUIButton } from "@mui/material"; interface ButtonProps { text: string; color: string; href: string; onClick: any; } export const Button: FC = ({ text, color, href, onClick }) => ( {text} );