20 lines
724 B
JavaScript
20 lines
724 B
JavaScript
|
|
|
|
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">
|
|
© 2018 turnie.re ·
|
|
<a className="text-white" href="/privacy"> Datenschutzerklärung </a>
|
|
·
|
|
<a className="text-white" href="/imprint"> Impressum</a>
|
|
</div>
|
|
<div className="col-md-6 text-center"><a href="#" className="text-white">zurück nach oben</a></div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
);
|
|
}
|