big update

This commit is contained in:
2026-01-01 21:27:58 -05:00
parent a1b7382288
commit 933d47c150
27 changed files with 184 additions and 73 deletions

9
res/script.js Normal file
View File

@@ -0,0 +1,9 @@
// deno-lint-ignore no-unused-vars
function scrollToHighlights() {
const element = document.getElementById("highlights");
element.scrollIntoView({
behavior: 'smooth',
block: 'start'
});
console.log("scroll")
}