Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,13 @@ <h3 class="font-semibold text-lg">JSON Output</h3>
</div>
</div>

<footer class="max-w-6xl mx-auto mt-12 py-6 text-center text-xs text-slate-400 dark:text-zinc-600 border-t border-slate-200 dark:border-zinc-800">
<p>PowerMatrix &copy; <span id="year"></span></p>
<p class="mt-1 font-mono">
Version: <span class="opacity-75 font-semibold">__BUILD_VERSION__</span>
</p>
</footer>

<datalist id="connectorList"></datalist>

<div id="toast" role="alert" aria-live="polite" class="fixed bottom-10 left-1/2 transform -translate-x-1/2 bg-zinc-800 dark:bg-zinc-100 text-white dark:text-zinc-900 px-6 py-3 rounded shadow-lg font-medium text-sm transition-all duration-300 opacity-0 translate-y-4 pointer-events-none z-50">Copied to clipboard!</div>
Expand Down Expand Up @@ -609,6 +616,9 @@ <h3 class="font-semibold text-lg">JSON Output</h3>
}

init();

// Set current year in footer
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</body>
</html>