import { footerCustomerLinks, footerSocialLinks } from "../../utils/data"; interface FooterLinksProps { href: string; icon?: string; text?: string; } const BottomFooterOne = () => { const date: number = new Date().getFullYear(); return ( ); }; export default BottomFooterOne; const SocialIconButtons = () => { const icons = footerSocialLinks.map( ({ href, icon }: FooterLinksProps, idx: number) => (
  • {icon && icon}
  • ) ); return ; }; const CustomerLinks = () => { const links = footerCustomerLinks.map( ({ href, text }: FooterLinksProps, idx: number) => (
  • {text}
  • ) ); return (
    {links}
    ); };