Upgrade portfolio site UI

This commit is contained in:
2026-04-18 23:27:03 -05:00
parent 5ec7de4a26
commit b4837b24ca
5 changed files with 569 additions and 43 deletions
+6
View File
@@ -0,0 +1,6 @@
document.addEventListener("DOMContentLoaded", () => {
const yearSpan = document.querySelector("[data-year]");
if (yearSpan) {
yearSpan.textContent = new Date().getFullYear();
}
});