/** * Footer Component * Shared footer for all Tractatus pages */ (function() { 'use strict'; // Create footer HTML const footerHTML = ` `; // Insert footer at end of body if (document.body) { document.body.insertAdjacentHTML('beforeend', footerHTML); } else { // If body not ready, wait for DOM document.addEventListener('DOMContentLoaded', function() { document.body.insertAdjacentHTML('beforeend', footerHTML); }); } })();