Skip to content

Commit

Permalink
more TN branding
Browse files Browse the repository at this point in the history
  • Loading branch information
ProgrammerIn-wonderland committed Sep 8, 2024
1 parent ae2a794 commit 28db8ea
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/Boot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -371,6 +371,19 @@ window.addEventListener("load", async () => {
} else if (anura.config.tnbranding === true) {
bootsplash.remove();
document.body.appendChild(TNBootSplash);
const TNMark = document.createElement("span");
TNMark.setAttribute(
"style",
"position: absolute; bottom: 70px; right: 10px",
);
TNMark.innerHTML =
"Instance hosted by Titanium Network.<br>More mirrors at discord.gg/unblock";
TNMark.onclick = () => {
anura.apps["anura.browser"].open([
"https://discord.gg/unblock",
]);
};
document.body.appendChild(TNMark);
}
}

Expand Down

0 comments on commit 28db8ea

Please sign in to comment.