Merge pull request #29 from suceavahacks/main

This commit is contained in:
Gus Ruben 2025-08-12 18:56:27 -04:00 committed by GitHub
commit 2f1c6a2363
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 1576 additions and 22 deletions

19
package-lock.json generated
View file

@ -1425,17 +1425,6 @@
"@types/unist": "*"
}
},
"node_modules/@types/node": {
"version": "24.0.13",
"resolved": "https://registry.npmjs.org/@types/node/-/node-24.0.13.tgz",
"integrity": "sha512-Qm9OYVOFHFYg3wJoTSrz80hoec5Lia/dPp84do3X7dZvLikQvM1YpmvTBEdIr/e+U8HTkFjLHLnl78K/qjf+jQ==",
"license": "MIT",
"optional": true,
"peer": true,
"dependencies": {
"undici-types": "~7.8.0"
}
},
"node_modules/@types/resolve": {
"version": "1.20.2",
"resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.20.2.tgz",
@ -3204,14 +3193,6 @@
"node": ">=14.17"
}
},
"node_modules/undici-types": {
"version": "7.8.0",
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.8.0.tgz",
"integrity": "sha512-9UJ2xGDvQ43tYyVMpuHlsgApydB8ZKfVYTsLDhXkFL/6gfkp+U8xTGdh8pMJv1SpZna0zxG1DwsKZsreLbXBxw==",
"license": "MIT",
"optional": true,
"peer": true
},
"node_modules/unist-util-is": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz",

View file

@ -21,21 +21,23 @@
}).catch(error => {
console.warn('Failed to save email:', error);
});
submitted = true;
// Clear the input box while the green overlay is showing
emailInput.value = '';
setTimeout(() => {
fadeOut = true;
}, 1500);
// Reset to original position after fade out completes
setTimeout(() => {
submitted = false;
fadeOut = false;
}, 1500 + 500);
if (city === 'suceava') {
window.location.href = `https://forms.fillout.com/t/wABjdnkgLWus?email=${encodeURIComponent(email)}`;
}
}
</script>

File diff suppressed because it is too large Load diff