contact section

This commit is contained in:
2025-08-03 16:05:32 -07:00
parent 817381c698
commit b867b82b83

View File

@@ -4,6 +4,6 @@ $("contact-info-container").addEventListener("click", () => {
fetch("contact-info.obfuscated")
.then((response) => response.text())
.then((text) => {
id("contact-info-container").innerHTML = atob(text);
$("contact-info-container").innerHTML = atob(text);
});
});