swapped in some sneaky image stuff

images and names now change depending on the users location as my online friends know me by a different set of names due to personal reasons
This commit is contained in:
Nye Evans 2021-02-18 21:37:53 +00:00
parent a44da70852
commit 6dd4f7968e
4 changed files with 48 additions and 14 deletions

29
pages/siteTitle.js Normal file
View file

@ -0,0 +1,29 @@
//taken and reworked from here https://www.labnol.org/visitor-country-ip-address-200822
//original code by Amit Agarwal
const checkCountry = () => {
return new Promise((resolve, reject) => {
window
.fetch("https://ip2c.org/self")
.then((data) => data.text())
.then((data) => {
const [status, country] = String(data).split(";");
if (status !== "1") {
console.log("Unable to fetch country, defaulting to normal title");
}
if (country != "UK"){
document.title = "Rosia E Evans Portfolio"
document.getElementById("siteTitle").innerHTML = "Rosia E Evans"
document.getElementById("profileImage").src = "images/Profile3.png"
}else{
document.title = "Nye Evans Portfolio"
document.getElementById("siteTitle").innerHTML = "Nye Evans"
document.getElementById("profileImage").src = "images/Profile2.png"
}
})
})
};
checkCountry();