fix: Use 2 second redirect

This commit is contained in:
2024-02-25 14:31:29 +11:00
parent 8cdaec6749
commit c1f687b7b1

View File

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