Footer.js 1.13 KB
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;