Clean up footer
This commit is contained in:
parent
030cc12544
commit
7cff7bdb0b
|
|
@ -1,20 +1,13 @@
|
||||||
export function Footer() {
|
export function Footer() {
|
||||||
return (
|
return (
|
||||||
<footer className="footer mt-5 bg-dark text-light">
|
<footer className="footer mt-5 p-3 bg-dark text-light text-center">
|
||||||
<div className="container py-3">
|
<Copyright/> · <Privacy/> · <Imprint/>
|
||||||
<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>
|
</footer>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
function Copyright() {
|
function Copyright() {
|
||||||
return <span>© 2024 turnie.re</span>;
|
return <span>© 2025 turnie.re</span>;
|
||||||
}
|
}
|
||||||
|
|
||||||
function Privacy() {
|
function Privacy() {
|
||||||
|
|
@ -24,7 +17,3 @@ function Privacy() {
|
||||||
function Imprint() {
|
function Imprint() {
|
||||||
return <a className="text-white" href="/imprint">Impressum</a>;
|
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