-
Notifications
You must be signed in to change notification settings - Fork 0
/
Footer.jsx
33 lines (29 loc) · 914 Bytes
/
Footer.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import React from 'react';
import { BrowserRouter as Router, Route, Switch } from 'react-router-dom';
import Heart from 'react-icons/lib/fa/heart';
import Legal from './Legal';
import './Footer.less';
const OptionalLegal = () => (
<Router>
<Switch>
<Route path="/screen" render={() => ''} />
<Route component={Legal} />
</Switch>
</Router>
);
const Footer = () => (
<footer>
<p>Made with <span role="img" aria-label="love"><Heart className="love" /></span> by
{' '}
<a href="https://www.methodpark.de/mobileapps-webapps.html" target="_blank" rel="noopener noreferrer">
<img src="/logo/mp.png" className="footer-logo-mp" alt="method park" />
{' '}
team mobile
{' '}
</a>
for <a href="https://swe-camp.de/" target="_blank" rel="noopener noreferrer">SWEC</a>
</p>
<OptionalLegal />
</footer>
);
export default Footer;