2021-05-25 21:40:27 +00:00
|
|
|
import React from "react";
|
|
|
|
import { Link } from "react-router-dom";
|
|
|
|
import "./Footer.css";
|
2021-05-27 01:07:54 +00:00
|
|
|
import "@fortawesome/fontawesome-free/css/all.css";
|
2021-05-25 21:40:27 +00:00
|
|
|
|
|
|
|
function Footer() {
|
|
|
|
return (
|
|
|
|
<div className="footer-container">
|
|
|
|
<div className="footer-links">
|
|
|
|
<div className="footer-link-wrapper">
|
|
|
|
<div className="footer-link-items">
|
2021-05-27 02:19:22 +00:00
|
|
|
<h2>Informationen</h2>
|
2021-06-22 22:19:17 +00:00
|
|
|
<Link to="/ueber">Hintergrund</Link>
|
2021-06-21 03:48:01 +00:00
|
|
|
<Link to="/manual">Wie funktioniert das?</Link>
|
2021-05-25 21:40:27 +00:00
|
|
|
</div>
|
|
|
|
<div className="footer-link-items">
|
2021-05-27 02:19:22 +00:00
|
|
|
<h2>Kontakt</h2>
|
2021-06-07 02:14:00 +00:00
|
|
|
<a href="mailto:marco.camenzind@students.ffhs.ch">E-Mail</a>
|
2021-06-21 01:45:22 +00:00
|
|
|
<a href="https://keys.openpgp.org/vks/v1/by-fingerprint/F281A7A622AF5B9E7742C0FB635DE2A22BDC3C76">
|
|
|
|
GPG-Key
|
|
|
|
</a>
|
2021-05-25 21:40:27 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className="footer-link-wrapper">
|
|
|
|
<div className="footer-link-items">
|
2021-05-27 02:19:22 +00:00
|
|
|
<h2>Rechtliches</h2>
|
2021-06-07 03:03:18 +00:00
|
|
|
<Link to="/privacy">Datenschutz</Link>
|
2021-06-07 02:14:00 +00:00
|
|
|
<Link to="/lizenzen">Lizenzen und Bildnachweise</Link>
|
2021-05-25 21:40:27 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Footer;
|