Initial commit

This commit is contained in:
2025-07-01 07:41:47 -07:00
commit 2761943d9d
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);
}