import { FacebookIcon, LoveIcon, TwitterXIcon, WordPressIcon, YoutubeIcon } from "../icons"; const Footer = () => { const socialMediaUrl = [ { name: "Facebook", url: "https://www.facebook.com/ShapedPlugin", Icon: FacebookIcon, }, { name: "X", url: "https://x.com/ShapedPlugin", Icon: TwitterXIcon, }, { name: "WordPress", url: "https://profiles.wordpress.org/shapedplugin", Icon: WordPressIcon, }, { name: "Youtube", url: "https://www.youtube.com/@ShapedPlugin", Icon: YoutubeIcon, }, ]; return (

Made with by the{" "} ShapedPlugin LLC {" "} Team

Get connected with

    {socialMediaUrl?.map(({ Icon, name, url }, i) => (
  • ))}
); }; export default Footer;