import { type FC, type ReactNode } from "react"; type SocialLink = { label: string; href: string; bg: string; icon: ReactNode; }; const socialLinks: SocialLink[] = [ { label: "Facebook", href: "#", bg: "bg-[#1877F2]", icon: ( ), }, { label: "Instagram", href: "#", bg: "bg-linear-to-br from-[#F58529] via-[#DD2A7B] to-[#8134AF]", icon: ( ), }, { label: "LinkedIn", href: "#", bg: "bg-[#0A66C2]", icon: ( ), }, { label: "Telegram", href: "#", bg: "bg-[#2AABEE]", icon: ( ), }, { label: "WhatsApp", href: "#", bg: "bg-[#25D366]", icon: ( ), }, ]; const FooterSocial: FC = () => { return (

ما را در شبکه‌های اجتماعی دنبال کنید

{socialLinks.map((item) => ( {item.icon} ))}
); }; export default FooterSocial;