forked from Reed-CompBio/protein-weaver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFooter.jsx
More file actions
48 lines (45 loc) · 1.58 KB
/
Copy pathFooter.jsx
File metadata and controls
48 lines (45 loc) · 1.58 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
import React from "react";
import { FaGithub } from "react-icons/fa";
import { BiSolidMessageAltError } from "react-icons/bi";
import { IconContext } from "react-icons";
import { Link } from "react-router-dom";
import { MdOutlineMenuBook } from "react-icons/md";
export default function Footer() {
const githubLink = "https://github.com/Reed-CompBio/protein-weaver/";
const githubIssuesLink = "https://github.com/Reed-CompBio/protein-weaver/issues/";
const githuPagesDoc = "https://reed-compbio.github.io/protein-weaver/"
return (
<div className="footer-container">
<footer className="footer">
<p className="footer-title">ProteinWeaver © 2025</p>
{/* Terms of Service */}
<Link to={"/tos"}>TOS</Link>
<p> | </p>
{/* FAQs */}
<Link to={"/faq"}>FAQ</Link>
<p> | </p>
<IconContext.Provider
value={{
size: "1.2em",
align: "middle",
}}
>
{/* GitHub */}
<a href={githubLink} target="_blank" rel="noopener noreferrer">
<FaGithub className="footer-icon" />
</a>
<p> | </p>
{/* GitHub Issues */}
<a href={githubIssuesLink} target="_blank" rel="noopener noreferrer">
<BiSolidMessageAltError className="footer-icon" />
</a>
<p> | </p>
{/* GitHub Issues */}
<a href={githuPagesDoc} target="_blank" rel="noopener noreferrer">
<MdOutlineMenuBook className="footer-icon" />
</a>
</IconContext.Provider>
</footer>
</div>
);
}