This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
tony f4d67450f0 Added contact button that calls the VideoAsk
widget and opens the chat window.
2023-04-20 10:31:32 -07:00

14 lines
414 B
JavaScript

import Link from "next/link";
const Button = ({ buttonText, buttonLink ="/",}) => {
return (
<Link href = {buttonLink} target="_blank" rel="noopener noreferrer">
<button className="px-20 mt-8 mx-5 py-2 text-white border border-blue-500 rounded hover:border-white transition duration-300 ease-in-out focus:outline-none">
{buttonText}
</button>
</Link>
);
};
export default Button;