about: Changed redirect location

This commit is contained in:
Nathan Woodburn 2023-02-23 22:47:27 +11:00
parent 41d0e10bad
commit 9665d4f9fb
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

View File

@ -2,7 +2,7 @@ function slideout() {
bodydiv = document.querySelector("body");
bodydiv.style.top = "-100%";
setTimeout(function() {
window.location.href = "/"
window.location.href = "/#about"
bodydiv.style.top = "0px";
}, 1000)
}