UI: Footer mit Version und Build-Kanal hinzugefügt (Header bleibt clean)
This commit is contained in:
parent
e1d5c9eaa6
commit
b11e7dd666
2 changed files with 15 additions and 1 deletions
|
|
@ -470,6 +470,15 @@ export default function App() {
|
|||
);
|
||||
})}
|
||||
</main>
|
||||
{/* Footer: Version/Channel */}
|
||||
<footer className="footer-info">
|
||||
<span>
|
||||
v{import.meta.env.VITE_APP_VERSION || ''}
|
||||
{import.meta.env.VITE_BUILD_CHANNEL === 'nightly' && (
|
||||
<span className="ml-2">• Nightly</span>
|
||||
)}
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
{showTop && (
|
||||
<button type="button" className="back-to-top" aria-label="Nach oben" onClick={()=>window.scrollTo({top:0, behavior:'smooth'})}>↑ Top</button>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue