aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff <jeffkleinaitis@gmail.com>2024-03-29 14:30:39 -0400
committerJeff <jeffkleinaitis@gmail.com>2024-03-29 14:30:39 -0400
commit8ca7091f6055c8fb3e63c1ba9e4a788776e6ec07 (patch)
treec25cd68ccc0feb278e6ce6c69ff15968f0ab51ce
parent9b7507cbfcac771334006a5a0b30116d0159730b (diff)
fix: Update text within contact us widget
-rw-r--r--components/popupWidget.js20
1 files changed, 3 insertions, 17 deletions
diff --git a/components/popupWidget.js b/components/popupWidget.js
index 710dc9e..aeeb682 100644
--- a/components/popupWidget.js
+++ b/components/popupWidget.js
@@ -19,7 +19,7 @@ const PopupWidget = () => {
const onSubmit = async (data, e) => {
console.log(data);
- await fetch("https://api.web3forms.com/submit", {
+ await fetch("https://helpinghands.com/submit", {
method: "POST",
headers: {
"Content-Type": "application/json",
@@ -106,9 +106,9 @@ const PopupWidget = () => {
leaveTo="opacity-0 translate-y-5">
<Disclosure.Panel className=" flex flex-col overflow-hidden left-0 h-full w-full sm:w-[350px] min-h-[250px] sm:h-[600px] border border-gray-300 dark:border-gray-800 bg-white shadow-2xl rounded-md sm:max-h-[calc(100vh-120px)]">
<div className="flex flex-col items-center justify-center h-32 p-5 bg-indigo-600">
- <h3 className="text-lg text-white">How can we help?</h3>
+ <h3 className="text-lg text-white">Have a Question?</h3>
<p className="text-white opacity-50">
- We usually respond in a few hours
+ The Helping Hands team is here to help!
</p>
</div>
<div className="flex-grow h-full p-6 overflow-auto bg-gray-50 ">
@@ -246,20 +246,6 @@ const PopupWidget = () => {
)}
</button>
</div>
- <p
- className="text-xs text-center text-gray-400"
- id="result">
- <span>
- Powered by{" "}
- <a
- href="https://Web3Forms.com"
- className="text-gray-600"
- target="_blank"
- rel="noopener noreferrer">
- Web3Forms
- </a>
- </span>
- </p>
</form>
)}