mirror of
https://github.com/System-End/daydream-phoenix.git
synced 2026-04-19 22:05:07 +00:00
Merge pull request #29 from suceavahacks/main
This commit is contained in:
commit
2f1c6a2363
3 changed files with 1576 additions and 22 deletions
19
package-lock.json
generated
19
package-lock.json
generated
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
1571
src/routes/suceava/+page.svelte
Normal file
1571
src/routes/suceava/+page.svelte
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue