This repository has been archived on 2024-12-31. You can view files and clone it, but cannot push or open issues or pull requests.

19 lines
480 B
JavaScript

import "../styles/Footer.sass";
import {Link} from "react-router-dom";
function Footer() {
return (
<div className="footer">
<div className="footer-left">
<p>© Sheepstar {new Date().getFullYear()}</p>
</div>
<div className="footer-right">
<Link to="/privacy">Privacy Policy</Link>
<Link to="/imprint">Imprint</Link>
</div>
</div>
)
}
export default Footer;