Initial commit... a site is born (again? finally?)

This commit is contained in:
2026-01-30 19:58:22 +00:00
commit 1519dfa460
62 changed files with 5674 additions and 0 deletions

15
site/script.js Normal file
View File

@@ -0,0 +1,15 @@
/**
* Minimal JavaScript for mifi Ventures website
* Primary purpose: Dynamic copyright year
*/
(function() {
'use strict';
// Update copyright year to current year
// Script runs with defer, so DOM is always ready
const yearElement = document.getElementById('copyright-year');
if (yearElement) {
yearElement.textContent = new Date().getFullYear();
}
})();