Initial commit

This commit is contained in:
2025-07-19 11:10:28 -07:00
commit 544b5d2b1e
15 changed files with 2242 additions and 0 deletions

5
utils/helpers.js Normal file
View File

@@ -0,0 +1,5 @@
export function delayed_redirect(url) {
setTimeout(() => {
window.location.href = url;
}, 5000);
}