"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; } export const Button: FC = ({ text, color, href }) => ( {text} );