Clean up footer

This commit is contained in:
Daniel Schädler 2025-03-16 16:24:28 +01:00
parent 030cc12544
commit 7cff7bdb0b
1 changed files with 3 additions and 14 deletions

View File

@ -1,20 +1,13 @@
export function Footer() {
return (
<footer className="footer mt-5 bg-dark text-light">
<div className="container py-3">
<div className="row">
<div className="col-md-6 text-center">
<Copyright/> &middot; <Privacy/> &middot; <Imprint/>
</div>
<div className="col-md-6 text-center"><MoveToTop/></div>
</div>
</div>
<footer className="footer mt-5 p-3 bg-dark text-light text-center">
<Copyright/> &middot; <Privacy/> &middot; <Imprint/>
</footer>
);
}
function Copyright() {
return <span>&copy; 2024 turnie.re</span>;
return <span>&copy; 2025 turnie.re</span>;
}
function Privacy() {
@ -24,7 +17,3 @@ function Privacy() {
function Imprint() {
return <a className="text-white" href="/imprint">Impressum</a>;
}
function MoveToTop() {
return <a href="#" className="text-white">zurück nach oben</a>;
}