import React from 'react'; import Link from 'next/link'; import * as Icon from 'react-feather'; const Footer = ({company,social,icon,desc}) => { company = company||{}; const currentYear = new Date().getFullYear(); const Socials = (social)?social.map((data,idx)=>{ return(
  • { (data.attributes.Type =='Facebook') ?() :(data.attributes.Type =='Instagram') ?() :(data.attributes.Type =='Twitter') ?() :(data.attributes.Type =='Youtube') ?():"" }
  • ); }):""; return ( ) } export default Footer;