-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathFooter.js
More file actions
55 lines (52 loc) · 2.86 KB
/
Footer.js
File metadata and controls
55 lines (52 loc) · 2.86 KB
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
import React, { Component } from "react";
/**
* React component class for the footer includes link to about page, privacy policy, TOS, etc.
*/
class Footer extends Component {
render() {
return (
<footer>
<div className="row m-3 text-center" >
<div className="col-lg-4 d-flex">
<span><strong>MYR:</strong></span>
<ul className="ps-2">
<li className="d-inline p-2">
<a href="https://learnmyr.org/about/" target="_blank" rel="noopener noreferrer">About</a>
</li>
<li className="d-inline p-2">
<a href="mailto:support@learnmyr.org" target="_blank" rel="noopener noreferrer">Support</a>
</li>
<li className="d-inline p-2">
<a href="https://learnmyr.org/about/team/" target="_blank" rel="noopener noreferrer">Team </a>
</li>
<li className="d-inline p-2">
<a href="https://github.com/engaging-computing/MYR" target="_blank" rel="noopener noreferrer">GitHub</a>
</li>
</ul>
</div>
<div className="col-lg-4 d-none d-md-block text-center">
<div>© 2018 - {new Date().getFullYear()}<span> </span>
<a href="https://sites.uml.edu/engaging-computing/" target="_blank" rel="noopener noreferrer">University of Massachusetts Lowell, Engaging Computing Group</a>
</div>
</div>
<div className="col-sm-12 d-block d-md-none text-center">
<div>© 2018 - {new Date().getFullYear()}<br />
<a href="https://sites.uml.edu/engaging-computing/" target="_blank" rel="noopener noreferrer">University of Massachusetts Lowell,<br />Engaging Computing Group</a>
</div>
</div>
<div className="col-lg-4">
<ul className=" list-inline text-lg-end">
<li className="pl-2 list-inline-item">
<a href="https://learnmyr.org/about/privacy/" target="_blank" rel="noopener noreferrer">Privacy Policy</a>
</li>
<li className="pl-2 list-inline-item">
<a href="https://learnmyr.org/about/tos/" target="_blank" rel="noopener noreferrer">Terms of Service</a>
</li>
</ul>
</div>
</div>
</footer >
);
}
}
export default Footer;