fix: restore layout and add dynamic version to footer

This commit is contained in:
2026-02-16 03:24:54 +01:00
parent 14ba647f42
commit ae3d650011
5 changed files with 11 additions and 3 deletions

View File

@@ -1,11 +1,12 @@
<script setup>
const currentYear = new Date().getFullYear();
const version = __APP_VERSION__;
</script>
<template>
<footer class="app-footer glass-panel">
<div class="footer-content">
<p>&copy; {{ currentYear }} Rubic Cube. Wersja 0.0.1</p>
<p>&copy; {{ currentYear }} Rubic Cube. Wersja {{ version }}</p>
<div class="social-links">
<!-- Placeholder for social links if needed -->
</div>