fix: Use 2 second redirect

This commit is contained in:
Nathan Woodburn 2024-02-25 14:31:29 +11:00
parent 8cdaec6749
commit c1f687b7b1
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

View File

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