19 lines
480 B
JavaScript
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; |