-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFooter.tsx
37 lines (35 loc) · 1.31 KB
/
Footer.tsx
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
import { type FC } from 'react';
import Link from 'next/link';
import generatedGitInfo from 'lib/generatedGitInfo.json';
/**
* Static footer component rendered at the bottom of every page
*/
const Footer: FC = () => (
<footer className="footer mt-auto py-3 bg-light">
<div className="text-center">
<ul className="list-unstyled list-inline my-0">
<li className="list-inline-item mx-5">
<Link href="/terms-of-service" className="text-muted">
Terms of service
</Link>
</li>
<li className="list-inline-item mx-5">
<Link href="/privacy-policy" className="text-muted">
Privacy policy
</Link>
</li>
<li className="list-inline-item mx-5">
<a href="mailto:[email protected]" className="text-muted">
Email Support
</a>
</li>
</ul>
<ul className="list-unstyled list-inline my-0">
<li className="list-inline-item mx-5 text-muted">
<small>{generatedGitInfo.gitTag}</small>
</li>
</ul>
</div>
</footer>
);
export default Footer;