v1.0.0: Add version display in footer

This commit is contained in:
Alexej Wolff
2026-05-04 18:56:56 +02:00
parent f73a218745
commit efd2332875
8 changed files with 39 additions and 9 deletions
+8
View File
@@ -26,6 +26,14 @@
color: #888;
}
.footer-version {
font-size: 0.75rem;
color: #555;
padding: 0.15rem 0.5rem;
background: rgba(255, 255, 255, 0.05);
border-radius: 4px;
}
.footer-copyright {
font-size: 0.8rem;
color: #555;
+1
View File
@@ -30,6 +30,7 @@ export function Footer() {
<div className="footer-content">
<div className="footer-left">
<span className="footer-brand"> ReSekai</span>
<span className="footer-version">v{__APP_VERSION__}</span>
<span className="footer-copyright">© 2026</span>
</div>