fix: Redirect too fast

This commit is contained in:
Nathan Woodburn 2024-02-25 14:33:24 +11:00
parent 4ccd401a94
commit 986f14f8e8
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

View File

@ -21,7 +21,7 @@
function redirect() {
setTimeout(function() {
window.location.href = '/site';
}, 2000);
}, 4000);
}
redirect();
</script>