diff --git a/app/components/landing/HeroText.js b/app/components/landing/HeroText.js index 6fe8a3d..dc5a489 100644 --- a/app/components/landing/HeroText.js +++ b/app/components/landing/HeroText.js @@ -1,21 +1,8 @@ -import { useState } from "react"; import { motion } from "framer-motion"; -import { CheckIcon } from "@heroicons/react/20/solid"; -const buttonCopy = { - idle: "Stay Updated", - loading: "Loading...", - success: ( -
{ - navigator.clipboard.writeText("team@gradsteps.com"); - setIsCopied(true); - }} - initial={{ opacity: 0 }} - whileInView={{ opacity: 1 }} - viewport={{ once: true }} - transition={{ - delay: 1.4, - duration: 0.2, - }} +
+ Made by {" "} + - {isCopied - ? "Email copied to clipboard!" - : "Interested in contributing? Email us"} -
-