Clean up footer
This commit is contained in:
parent
030cc12544
commit
7cff7bdb0b
|
|
@ -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/> · <Privacy/> · <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/> · <Privacy/> · <Imprint/>
|
||||
</footer>
|
||||
);
|
||||
}
|
||||
|
||||
function Copyright() {
|
||||
return <span>© 2024 turnie.re</span>;
|
||||
return <span>© 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>;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue