aboutsummaryrefslogtreecommitdiffstats
path: root/components/popupWidget.js
diff options
context:
space:
mode:
authorJeff Kleinaitis <jeffkleinaitis@gmail.com>2024-03-29 14:51:17 -0400
committerGitHub <noreply@github.com>2024-03-29 14:51:17 -0400
commit9df0e1b528cc369ad99e2c46c6eba5e12a3f524f (patch)
treec25cd68ccc0feb278e6ce6c69ff15968f0ab51ce /components/popupWidget.js
parentadf26e588e5917d6ac4f522aeca8d7e6523ada7e (diff)
parent8ca7091f6055c8fb3e63c1ba9e4a788776e6ec07 (diff)
Merge pull request #6 from digadoo/develop
Updates to Helping Hands landing page completed - all sections should now have current text, data, styling. The only outstanding item on the landing page is the three larger SVGs illustrations. Need to update these at some point to create a more cohesive landing page, but for now they'll work.
Diffstat (limited to 'components/popupWidget.js')
-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>
)}