import { Row, Col } from 'react-bootstrap'; import { Link } from 'react-router-dom'; import logo1 from 'assets/img/icons/logo-1.png'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { faBehance, faFacebookF, faLinkedinIn, faTwitter } from '@fortawesome/free-brands-svg-icons'; import bg41 from 'assets/img/bg/41.jpg'; import classNames from 'classnames'; interface footerItems { title: string; link: string; } const footerItems: footerItems[] = [ { title: 'Home', link: '#!' }, { title: 'About', link: '#!' }, { title: 'Contact', link: '#!' }, { title: 'FAQ', link: '#!' }, { title: 'Gallery', link: '#!' } ]; const Footer = () => { return (
    {footerItems.map((item, index) => (
  • {item.title}
  • ))}

Thank you for creating with Phoenix | 2023 ©{' '} Themewagon

); }; export default Footer;