-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.js
75 lines (73 loc) · 1.69 KB
/
footer.js
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import React from "react";
import "antd/dist/antd.css";
import "./footer.css";
import { Divider, Row, Col } from "antd";
class Footer extends React.PureComponent {
render() {
return (
<footer className="pageFooter">
<Divider style={{ marginBottom: "0.75rem" }} />
<Row align="bottom">
<Col flex={1}>
<div className="footerContent">
<div>
© 2020 The Intelligent Robot Learning Lab.
<br />
We are proudly affiliated with the{" "}
<a
className="Link"
href="https://ualberta.ca"
target="_blank"
rel="noopener noreferrer"
>
University of Alberta
</a>
,
<a
className="Link"
href="http://rlai.ualberta.ca/"
target="_blank"
rel="noopener noreferrer"
>
{" "}
RLAI
</a>
, and{" "}
<a
className="Link"
href="https://amii.ca"
target="_blank"
rel="noopener noreferrer"
>
Amii
</a>
.
</div>
</div>
</Col>
<Col>
<div className="footerImages">
<a href="https://ualberta.ca" target="_blank" rel="noopener noreferrer">
<img
className="UAlogo"
src={process.env.PUBLIC_URL + "/ualberta.png"}
alt="ualberta-logo"
height="40"
/>
</a>
<a href="https://amii.ca" target="_blank" rel="noopener noreferrer">
<img
className="AmiiLogo"
src={process.env.PUBLIC_URL + "/amii.png"}
alt="amii-logo"
height="60"
/>
</a>
</div>
</Col>
</Row>
</footer>
);
}
}
export default Footer;