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
import './FooterStyles.css';
const Footer = () => {
return(
<div className='footer'>
<div className='top'>
<div>
<h1>InsightCure®</h1>
<p></p>
</div>
</div>
<div className='bottom'>
<div>
<h4>Project</h4>
<a href='/'>Changelog</a>
<a href='/'>Status</a>
<a href='/'>License</a>
<a href='/'>All Versions</a>
</div>
<div>
<h4>Community</h4>
<a href='/'>GitHub</a>
<a href='/'>Issues</a>
<a href='/'>Project</a>
<a href='/'>Twitter</a>
</div>
<div>
<h4>Help</h4>
<a href='/'>Support</a>
<a href='/'>Troubleshooting</a>
<a href='/'>Contact Us</a>
</div>
<div>
<h4>Others</h4>
<a href='/'>Terms and Service</a>
<a href='/'>Privacy Policy</a>
<a href='/'>License</a>
</div>
</div>
<h5>Copyright © 2023 NEXUS DEV, All Rights Reserved</h5>
</div>
)
}
export default Footer;