| import React from 'react'; | |
| import { Col, Row } from 'react-bootstrap'; | |
| import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' | |
| import { faFacebook, faInstagram, faLinkedinIn, faTwitter } from '@fortawesome/free-brands-svg-icons' | |
| import FooterCol from './FooterCol'; | |
| import './Footer.css'; | |
| import { usefulLink, ourServices, otherLinks, footerInfo } from '../../FooterData'; | |
| import FooterInfo from './FooterInfo'; | |
| import { Link } from 'react-router-dom'; | |
| import { scrollUP } from '../../Shared/ScrollTop/ScrollTop'; | |
| const Footer = () => { | |
| return ( | |
| <section className='row footer'> | |
| <Row className="col-md-11 mx-auto"> | |
| <Row className="align-items-center footerInfo"> | |
| { | |
| footerInfo.map(data => <FooterInfo data={data} key={data.id}/>) | |
| } | |
| </Row> | |
| <Col md={6} lg={3} className="fAboutUs"> | |
| <h5>ABOUT US</h5> | |
| <span className="animate-border"></span> | |
| <p className="aboutUsDes">Lorem ipsum dolor sit amet consectetur adipisicing elit. Dolor, voluptate quod facere quas rem quaerat.</p> | |
| <ul className="socialIcons"> | |
| <li> | |
| <Link onClick={scrollUP} to="/" > | |
| <FontAwesomeIcon icon={faFacebook}/> | |
| </Link> | |
| </li> | |
| <li> | |
| <Link onClick={scrollUP} to="/"> | |
| <FontAwesomeIcon icon={faTwitter}/> | |
| </Link> | |
| </li> | |
| <li> | |
| <Link onClick={scrollUP} to="/"> | |
| <FontAwesomeIcon icon={faInstagram}/> | |
| </Link> | |
| </li> | |
| <li> | |
| <Link onClick={scrollUP} to="/"> | |
| <FontAwesomeIcon icon={faLinkedinIn}/> | |
| </Link> | |
| </li> | |
| </ul> | |
| </Col> | |
| <FooterCol key="2" menuItems={usefulLink} title="USEFUL LINK"/> | |
| <FooterCol key="3" menuItems={ourServices} title="OUR SERVICES"/> | |
| <FooterCol key="4" menuItems={otherLinks} title="OTHER LINKS"/> | |
| </Row> | |
| <p className="copyRight">Copyright © 2021 <span className="fHighlight">Ujjal zaman</span>. All rights reserved.</p> | |
| </section> | |
| ); | |
| }; | |
| export default Footer; |